/* =========================
   SECTION
========================= */
.committee-section {
    padding: 90px 6%;
    background: #f5f5f5;
}

/* =========================
   TITLE
========================= */
.committee-header .section-title {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #111827;
    font-family: 'Jost', sans-serif;
    position: relative;
}

.committee-header .section-title::after {
    content: "";
    width: 70px;
    height: 4px;
    background: var(--orange);
    display: block;
    margin: 12px auto 0;
    border-radius: 50px;
}

/* =========================
   GRID
========================= */
.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 320px));
    justify-content: center;
    gap: 25px;
    padding-top: 50px;
}

/* =========================
   CARD
========================= */
.member-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 18px;
    text-align: center;
    transition: all 0.35s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0,0,0,0.03);
    overflow: hidden;
}

/* Hover */
.member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.10);
}

/* =========================
   IMAGE
========================= */
.member-img {
    width: 100%;
    height: 260px;
    overflow: hidden;
    border-radius: 8px;
    background: #eee;
}

/* Image */
.member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Zoom Effect */
.member-card:hover .member-img img {
    transform: scale(1.05);
}

/* =========================
   CONTENT
========================= */
.member-content {
    padding: 22px 10px 8px;
}

.member-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
    line-height: 1.4;
    font-family: 'Jost', sans-serif;
}

.member-content span {
    display: block;
    font-size: 14px;
    color: #8b8b8b;
    margin-bottom: 14px;
    font-weight: 500;
}

.member-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* =========================
   RESPONSIVE
========================= */

/* Tablet */
@media (max-width: 768px) {
    .committee-section {
        padding: 70px 5%;
    }

    .members-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 300px));
        gap: 28px;
    }

    .member-img {
        height: 230px;
    }

    .member-content h3 {
        font-size: 20px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .members-grid {
        grid-template-columns: 1fr;
    }

    .member-card {
        max-width: 340px;
        margin: 0 auto;
    }

    .member-img {
        height: 260px;
    }

    .committee-header .section-title {
        font-size: 30px;
    }
}