
/* CARD */
.featured-event-card {
    display: flex;
    background: linear-gradient(180deg, #1b1f34, #171a2b);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0,0,0,.4);
    /*max-height: 380px;*/
}

/* IMAGE */
.featured-event-image {
    position: relative;
    width: 42%;
    height: 100%;
    display: block;
    max-height: 280px;
}

.featured-event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* BADGES */

/* BADGES ROW */
.event-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 2rem;
}

.badge-featured {
    background: linear-gradient(135deg, #ff6b00, #ff9f1c);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 999px;
}

.badge-free {
    background: #1db954;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 999px;
}

/* CONTENT */
.featured-event-content {
    width: 58%;
    /*padding: 26px 30px;*/
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* HEADER */
.event-header {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 12px;
}

.club-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
}

.event-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

.event-meta {
    font-size: 14px;
    opacity: .85;
}

/* GENRES */
.genre-pills {
    display: flex;
    gap: 8px;
    margin: 12px 0;
}

.genre {
    background: rgba(255,255,255,.12);
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 999px;
}

/* TEXT */
.event-description {
    font-size: 15px;
    line-height: 1.6;
    opacity: .9;
    margin-bottom: 16px;
}

/* BUTTON */
.event-actions .btn {
    align-self: flex-start;
}

/* MOBILE */
@media (max-width: 768px) {

    .featured-event-card {
        flex-direction: column;
        height: auto;
        max-height: none; /* 🔥 IMPORTANT */
    }

    .featured-event-image {
        width: 100%;
        height: 220px;
    }

    .featured-event-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .featured-event-content {
        width: 100%;
        padding: 16px;
        justify-content: flex-start;
    }

    .event-title {
        font-size: 18px;
    }

    .event-description {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .event-badges {
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .carousel-item{
        height: auto;
    }
    .featured-event-content{
        margin-top: 2rem;
        min-height: 22rem;
    }
}

.featured-event-mb{
    margin-bottom: 0.3rem;
}

.event-actions{
    margin-top: 24px;
}

.fs-feat-event{
    font-size: 12px;
}

.carousel-item{
    height: auto;
}

.featured-event-image {
    position: relative;
    z-index: 1;
}

.featured-event-content {
    position: relative;
    z-index: 3; /* ABOVE image */
}

.event-actions .btn {
    position: relative;
    z-index: 4;
    pointer-events: auto;
}

.carousel-item {
    pointer-events: auto;
}

