/* ==================================================
   Výbor
================================================== */

.committee-header {
    margin-bottom: 24px;
}

.committee-header h3 {
    font-size: 1.8rem;
    color: var(--text-color);
    position: relative;
}

.committee-header h3::after {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    margin-top: 10px;
    border-radius: 999px;
    background-color: var(--primary-color);
}

.committee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.committee-card {
    padding: 22px 20px;
    background: var(--white);
    border: 1px solid #dbe4f0;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 36, 82, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.committee-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 36, 82, 0.1);
}

.committee-role {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary-color);
}

.committee-card h4 {
    font-size: 1.2rem;
    line-height: 1.4;
    color: var(--text-color);
}

/* ==================================================
   Responsive
================================================== */

@media (max-width: 850px) {
    .committee-header h3 {
        font-size: 1.5rem;
    }

    .committee-grid {
        gap: 16px;
    }

    .committee-card {
        padding: 18px 16px;
        border-radius: 14px;
    }

    .committee-card h4 {
        font-size: 1.08rem;
    }
}