/* =========================
   GLOBAL
========================= */

body{
    margin:0;
    font-family:'Inter',sans-serif;
    background:#ffffff;
    color:#1e293b;
}

.committee-container{
    width:min(92%,1200px);
    margin:auto;
}

.gold-line{
    width:100px;
    height:5px;
    background:#d4a22b;
    border-radius:999px;
    margin:20px auto 40px;
}

/* =========================
   HERO
========================= */

.committee-hero{

    background:
    linear-gradient(
        135deg,
        #0b4fd8,
        #052b70
    );

    color:white;

    text-align:center;

    padding:140px 20px;
}

.page-tag{

    display:inline-block;

    padding:10px 22px;

    border-radius:999px;

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.2);

    color:#fbbf24;

    font-size:13px;

    font-weight:800;

    letter-spacing:2px;

    margin-bottom:24px;
}

.committee-hero h1{

    font-size:56px;

    font-weight:900;

    margin-bottom:20px;

    line-height:1.2;
}

.committee-hero p{

    font-size:18px;

    color:#dbeafe;

    margin-bottom:10px;
}

/* =========================
   MEMBERS
========================= */

.committee-section{

    padding:100px 0;

    background:#ffffff;
}

.committee-section h2{

    text-align:center;

    color:#08245c;

    font-size:42px;
}

.committee-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:24px;
}

.member-card{

    background:white;

    padding:30px;

    border-radius:22px;

    text-align:center;

    border-top:5px solid #d4a22b;

    box-shadow:
    0 12px 35px rgba(0,0,0,.06);

    transition:.3s ease;
}

.member-card:hover{

    transform:translateY(-8px);
}

.member-card h3{

    color:#08245c;

    font-size:22px;

    margin-bottom:10px;
}

.member-card span{

    display:inline-block;

    background:#0b4fd8;

    color:white;

    padding:8px 16px;

    border-radius:999px;

    font-size:13px;

    font-weight:700;

    margin-bottom:15px;
}

.member-card p{

    color:#64748b;

    line-height:1.7;

    margin:0;
}

/* =========================
   PURPOSE
========================= */

.committee-purpose{

    background:#f8fafc;

    padding:100px 0;
}

.committee-purpose h2{

    text-align:center;

    color:#08245c;

    font-size:42px;
}

.committee-purpose p{

    max-width:900px;

    margin:auto;

    text-align:center;

    font-size:18px;

    line-height:2;

    color:#475569;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1000px){

    .committee-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .committee-hero h1{
        font-size:44px;
    }
}

@media(max-width:768px){

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

    .committee-hero{
        padding:100px 20px;
    }

    .committee-hero h1{
        font-size:34px;
    }

    .committee-section,
    .committee-purpose{
        padding:80px 0;
    }

    .committee-section h2,
    .committee-purpose h2{
        font-size:30px;
    }

    .committee-purpose p{
        font-size:16px;
    }
}