.committee_page {
    width: 100%;
    padding: 24px 0 40px;
    background: #f5f5f5;
    box-sizing: border-box;
}

.committee_panel {
    width: 1200px;
    margin: 0 auto;
    padding: 42px 24px 48px;
    background: #fff;
    box-sizing: border-box;
}

.committee_title {
    width: 360px;
    margin: 0 auto 34px;
    padding-bottom: 14px;
    border-bottom: #00923f solid 2px;
    text-align: center;
}

.committee_title h1 {
    color: #333;
    font-size: 28px;
    font-weight: bold;
    line-height: 40px;
}

.committee_grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}

.committee_card {
    display: flex;
    min-height: 92px;
    padding: 14px;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    border: transparent solid 1px;
    border-radius: 8px;
    background: #f5f5f5;
    color: #333;
    font-size: 16px;
    font-weight: bold;
    line-height: 24px;
    text-align: center;
    transition: background-color .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}

a.committee_card:hover {
    background: #006a28;
    color: #fff;
    box-shadow: 0 6px 14px rgba(0, 106, 40, .16);
    transform: translateY(-2px);
}

a.committee_card:focus-visible {
    border-color: #006a28;
    outline: #006a28 solid 2px;
    outline-offset: 2px;
}

.committee_card_disabled {
    cursor: default;
}

.committee_empty {
    padding: 60px 20px;
    color: #666;
    font-size: 16px;
    text-align: center;
}

@media screen and (max-width: 1220px) {
    .committee_panel {
        width: calc(100% - 30px);
    }

    .committee_grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media screen and (max-width: 768px) {
    .committee_panel {
        padding: 32px 15px 36px;
    }

    .committee_title {
        width: 280px;
        margin-bottom: 24px;
    }

    .committee_title h1 {
        font-size: 24px;
        line-height: 36px;
    }

    .committee_grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .committee_card {
        min-height: 82px;
        padding: 10px;
        font-size: 14px;
        line-height: 21px;
    }
}
