.sbl-committee-details {
    display: none;
    margin-top: 15px;
}

.sbl-committee-card.open .sbl-committee-details {
    display: block;
}

.sbl-committee-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sbl-collapse-toggle {
    margin-left: auto;
    width: 30px;
    height: 30px;
    border: none;
    background: #000;
    color: #fff;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
}

.sbl-committees-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    background: none;   /* IMPORTANT */
    padding: 0;         /* IMPORTANT */
}

.sbl-committee-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
}

.sbl-committee-section {
    margin-bottom: 40px;
}

.sbl-section-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}

.sbl-committees-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* DESKTOP */
    gap: 24px;
}

/* Tablets */
@media (max-width: 1024px) {
    .sbl-committees-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 640px) {
    .sbl-committees-grid {
        grid-template-columns: 1fr;
    }
}

/* COLLAPSIBLE DETAILS */
.sbl-committee-details {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease;
}

/* Expanded state */
.sbl-committee-card.is-open .sbl-committee-details {
    max-height: 1000px; /* safe large value */
    opacity: 1;
}

/* Toggle button rotation */
.sbl-collapse-toggle {
    transition: transform 0.25s ease;
}

.sbl-committee-card.is-open .sbl-collapse-toggle {
    transform: rotate(45deg);
}

