.asc-committees-history {
    margin: 0;
    color: #2f2f2f;
}

.asc-committees-history-heading {
    margin: 0 0 1.25rem;
    color: #1f1f1f;
    font-size: clamp(1.6rem, 2.2vw, 2.1rem);
    line-height: 1.15;
}

.asc-current-committees-placeholder {
    margin: 0 0 1.25rem;
    padding: 0.9rem 1rem;
    border: 1px dashed #d6c8c1;
    border-radius: 12px;
    background: #fcfaf8;
}

.asc-current-committees-heading {
    margin: 0 0 0.35rem;
    color: #1f1f1f;
}

.asc-current-committees-text {
    margin: 0;
    color: #4a4a4a;
}

.asc-committee-descriptions {
    margin: 0 0 1.5rem;
}

.asc-committee-descriptions-heading {
    margin: 0 0 0.75rem;
    color: #1f1f1f;
}

.asc-committee-descriptions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 0.9rem;
}

.asc-committee-description-card {
    background: #ffffff;
    border: 1px solid #eadfda;
    border-radius: 12px;
    padding: 0.85rem;
}

.asc-committee-description-card h4 {
    margin: 0 0 0.45rem;
    color: #b3345e;
    font-size: 1rem;
}

.asc-committee-description-card p {
    margin: 0;
    line-height: 1.45;
    color: #3b3b3b;
    font-size: 0.95rem;
}

.asc-committees-year-block {
    margin-bottom: 1.5rem;
    padding: 1rem 1rem 1.1rem;
    border: 1px solid #eadfda;
    border-radius: 16px;
    background: linear-gradient(180deg, #fcfaf8 0%, #ffffff 100%);
}

.asc-committees-year-heading {
    margin: 0 0 0.9rem;
    color: #b3345e;
    font-size: 1.15rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.22rem 0.6rem;
    border-radius: 999px;
    background: #f7e7ec;
}

.asc-committees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}

.asc-committee-card {
    background: #ffffff;
    border: 1px solid #eadfda;
    border-radius: 14px;
    padding: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.asc-committee-card:hover {
    border-color: #5ebfaf;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.asc-committee-name {
    margin: 0 0 0.65rem;
    padding-bottom: 0.45rem;
    border-bottom: 1px solid #f0e8e4;
    color: #1f1f1f;
    font-size: 1rem;
    line-height: 1.3;
}

.asc-committee-members {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.asc-committee-members li {
    margin: 0 0 0.4rem;
    line-height: 1.45;
    padding-left: 1rem;
    position: relative;
}

.asc-committee-members li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #5ebfaf;
    position: absolute;
    left: 0;
    top: 0.55em;
}

@media (max-width: 720px) {
    .asc-committees-year-block {
        padding: 0.85rem;
    }

    .asc-committees-grid {
        grid-template-columns: 1fr;
    }

    .asc-committee-descriptions-grid {
        grid-template-columns: 1fr;
    }
}
