/* ---------------------------------------------------------
   PREMIUM EVENTS LAYOUT (Horizontal Cards)
   --------------------------------------------------------- */

/* Wrapper for the event list */
#bbb-events-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Each event card */
.bbb-event-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
    cursor: pointer;
    transition: all 0.25s ease;
}

.bbb-event-card:hover {
    background: #f8f9fa;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

/* Event image (small square) */
.bbb-event-image {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
    background: #e9ecef;
}

/* Icons row (icon + emoji) */
.bbb-event-icons {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1.2rem;
}

/* Event text container */
.bbb-event-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

/* Event title */
.bbb-event-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #212529;
    line-height: 1.3;
    word-break: break-word;
}

/* Event date */
.bbb-event-date {
    font-size: 0.85rem;
    color: #6c757d;
}

/* Status badge */
.bbb-event-status {
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Status colors */
.bbb-status-active {
    background: #d1e7dd;
    color: #0f5132;
    border: 1px solid #badbcc;
}

.bbb-status-upcoming {
    background: #cff4fc;
    color: #055160;
    border: 1px solid #b6effb;
}

.bbb-status-completed {
    background: #f8d7da;
    color: #842029;
    border: 1px solid #f5c2c7;
}

/* Responsive behavior */
@media (max-width: 480px) {
    .bbb-event-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .bbb-event-image {
        width: 100%;
        height: 140px;
        border-radius: 10px;
    }

    .bbb-event-icons {
        margin-top: 4px;
    }
}
