


.team-header{
    max-width:1200px;
    margin:0 auto 20px;
    padding:0 24px;
    text-align:center;
     padding-top:80px;
}
.team-header h1{
    font-size:32px;
    font-weight:700;
    color:#222;
}

.team{
    max-width:1200px;
    margin:auto;
    padding:0 24px 60px;
    min-height:200px;
}

.loading-state, .error-state, .empty-state{
    text-align:center;
    color:#888;
    font-size:16px;
    padding:60px 0;
}
.error-state{color:#c0392b;}

.section-block{
    margin-bottom:50px;
}

.section-title{
    text-align:center;
    font-size:14px;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:#999;
    margin-bottom:22px;
}

.row{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(200px, 260px));
    justify-content:center;
    gap:40px;
}

.member-card{
    position:relative;
    width:100%;
    max-width:260px;
    background:#fff;
    border-radius:18px;
    padding:35px 25px 60px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.member-card:hover{
    transform:translateY(-6px);
}

.profile{
    width:120px;
    height:120px;
    border-radius:50%;
    object-fit:cover;
    display:block;
    margin:0 auto 20px;
}

.member-card h3{
    font-size:24px;
    margin-bottom:10px;
    color:#222;
}

.member-card p{
    color:#666;
    font-size:16px;
}

.linkedin{
    position:absolute;
    left:50%;
    bottom:-18px;
    transform:translateX(-50%);
    width:52px;
    height:52px;
    border-radius:50%;
    background:#0A66C2;
    color:white;
    text-decoration:none;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:bold;
    font-size:22px;
    box-shadow:0 8px 20px rgba(10,102,194,.35);
}

.linkedin:hover{
    transform:translateX(-50%) scale(1.08);
}
.committee-block{
    margin-bottom:70px;
}

.committee-heading{
    text-align:center;
    font-size:26px;
    font-weight:700;
    color:#222;
    margin-bottom:30px;
    padding-bottom:14px;
    border-bottom:1px solid #e2e2e2;
}

.committee-nav{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:12px;
    margin-bottom:40px;
}

.committee-nav-btn{
    padding:10px 20px;
    border-radius:999px;
    background:#fff;
    color:#333;
    font-size:14px;
    font-weight:600;
    text-decoration:none;
    box-shadow:0 4px 14px rgba(0,0,0,.08);
    transition:.2s;
}

.committee-nav-btn:hover{
    transform:translateY(-2px);
}

.committee-nav-btn.active{
    background:#f97316;
    color:#fff;
    box-shadow:0 6px 18px rgba(249,115,22,.35);
}