/* =========================================================
   SPARSH HOMEPAGE - MEET OUR DOCTORS
   ========================================================= */

.home-doctors-section {
    padding: 80px 0;
    background: #ffffff;
}

.home-doctors-heading {
    max-width: 720px;
    margin: 0 auto 42px;
    text-align: center;
}

.home-doctors-heading .section-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: #2455d6;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.home-doctors-heading h2 {
    margin: 0 0 14px;
    color: #101a46;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
}

.home-doctors-heading p {
    margin: 0;
    color: #68728a;
    font-size: 17px;
    line-height: 1.7;
}

.home-doctors-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.home-doctor-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid #e2e6ef;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(16, 26, 70, .06);
    transition: transform .25s ease, box-shadow .25s ease;
}

.home-doctor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 35px rgba(16, 26, 70, .11);
}

.home-doctor-image {
    aspect-ratio: 1 / 1.08;
    overflow: hidden;
    background: #f2f3f5;
}

.home-doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-doctor-body {
    padding: 20px 18px 19px;
}

.home-doctor-body h3 {
    margin: 0 0 9px;
    color: #101a46;
    font-size: 21px;
    line-height: 1.25;
    font-weight: 700;
}

.home-doctor-specialty {
    min-height: 44px;
    margin: 0 0 12px;
    color: #f58220;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 600;
}

.home-doctor-qualification {
    min-height: 42px;
    margin: 0 0 17px;
    color: #68728a;
    font-size: 14px;
    line-height: 1.5;
}

.home-doctor-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #2455d6;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.home-doctor-link:hover {
    color: #101a46;
}

.home-doctors-cta {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

/* Tablet */
@media (max-width: 1100px) {
    .home-doctors-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Mobile */
@media (max-width: 700px) {
    .home-doctors-section {
        padding: 58px 0;
    }

    .home-doctors-heading {
        margin-bottom: 28px;
        text-align: left;
    }

    .home-doctors-heading h2 {
        font-size: 30px;
    }

    .home-doctors-heading p {
        font-size: 16px;
    }

    .home-doctors-grid {
        display: flex;
        overflow-x: auto;
        gap: 15px;
        padding: 3px 2px 16px;
        scroll-snap-type: x mandatory;
        scrollbar-width: thin;
    }

    .home-doctor-card {
        flex: 0 0 78%;
        max-width: 330px;
        scroll-snap-align: start;
    }
}

@media (max-width: 420px) {
    .home-doctor-card {
        flex-basis: 86%;
    }
}
