/* Doctors */
.doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.doctor-card {
    background-color: var(--shadow);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.doctor-card:hover {
    transform: translateY(-10px);
}

.doctor-img {
    height: 320px;
    overflow: hidden;
}

.doctor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doctor-info {
    padding: 25px;
}

.doctor-info h3 {
    margin-bottom: 5px;
}

.doctor-specialty {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.doctor-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.doctor-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}

.doctor-social a:hover {
    background-color: var(--primary);
    color: var(--white);
}
