/* STAFF SECTION */

.staff-section{
    padding:100px 0;
    background:#faf7f2;
}

.staff-header{
    text-align:center;
    margin-bottom:60px;
}

.staff-header h2{
    font-size:36px;
    font-weight:700;
    color:#0C1451;
    margin-bottom:10px;
}

.staff-header p{
    color:#777;
    font-size:16px;
}

/* GRID */

.staff-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(260px, 320px));
    gap:30px;
    justify-content:center;
}

.staff-card{
    width:100%;
    max-width:320px;
}

/* CARD */

.staff-card{
    background:white;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 8px 30px rgba(0,0,0,0.05);
    transition:0.3s;
}

.staff-card:hover{
    transform:translateY(-8px);
    box-shadow:0 12px 40px rgba(0,0,0,0.08);
}

/* IMAGE */
.staff-img{
    position:relative;
}

.staff-img img{
    width:100%;
    height:280px;
    object-fit:cover;
}

/* SOCIAL ICON */

.staff-social{
    position:absolute;
    bottom:15px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:10px;
    opacity:0;
    transition:0.3s;
}

.staff-card:hover .staff-social{
    opacity:1;
}

.staff-social a{
    width:36px;
    height:36px;
    background:white;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#0C1451;
    font-size:16px;
    transition:0.3s;
    box-shadow:0 4px 10px rgba(0,0,0,0.15);
}

.staff-social a:hover{
    background:#b08a5b;
    color:white;
}

/* INFO */

.staff-info{
    padding:25px;
}

.staff-info h4{
    font-size:20px;
    font-weight:600;
    margin-bottom:5px;
    color:#0C1451;
}

.staff-info span{
    font-size:14px;
    color:#b08a5b;
    font-weight:500;
    display:block;
    margin-bottom:10px;
}

.staff-info p{
    font-size:14px;
    color:#666;
    line-height:1.6;
}