.doctor-team-section{
    padding:60px 0;
}

.doctor-team{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.doctor-card{
    text-align:center;
    padding:25px 20px;
    border:1px solid #e9e9e9;
    border-radius:12px;
    background:#fff;
    transition:.3s;
}

.doctor-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.doctor-card img{
    width:250px;
    height:250px;
    border-radius:50%;
    object-fit:cover;
    display:block;
    margin:0 auto 20px;
    border:5px solid #f5f5f5;
}

.doctor-card h4{
    margin-bottom:8px;
    font-size:22px;
    font-weight:700;
}

.doctor-card p{
    margin:0;
    color:#777;
    font-size:16px;
}

/* Tablet */
@media (max-width:991px){
    .doctor-team{
        grid-template-columns:repeat(2,1fr);
        gap:25px;
    }
}

/* Mobile */
@media (max-width:767px){
    .doctor-team{
        grid-template-columns:1fr;
        gap:20px;
    }

    .doctor-card img{
        width:130px;
        height:130px;
    }

    .doctor-card h4{
        font-size:20px;
    }

    .doctor-card p{
        font-size:15px;
    }
}