/* =========================================================
   SPARSH DOCTORS PAGE
   ========================================================= */

.doctors-page-hero {
    padding: 76px 0 72px;
    background: #101a46;
    color: #fff;
}



.doctors-page-eyebrow,
.doctors-page-section .section-eyebrow {
    margin: 0 0 12px;
    color: #f58220;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.doctors-page-hero h1 {
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(42px, 5vw, 62px);
    line-height: 1.08;
}

.doctors-page-hero > .container > p:last-child {
    max-width: 760px;
    margin: 0;
    color: #dbe3f3;
    font-size: 18px;
    line-height: 1.75;
}

.doctors-page-section {
    padding: 85px 0;
    background: #fff;
}

.doctors-page-intro {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.doctors-page-intro h2 {
    margin: 0 0 14px;
    color: #101a46;
    font-size: 40px;
    line-height: 1.2;
}

.doctors-page-intro > p:last-child {
    margin: 0;
    color: #68728a;
    font-size: 17px;
    line-height: 1.75;
}

.doctors-page-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

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

.doctor-page-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 38px rgba(16, 26, 70, .12);
}

.doctor-page-card-featured {
    border-top: 4px solid #f58220;
}

.doctor-page-image {
    aspect-ratio: 1 / 1.02;
    overflow: hidden;
    background:fff;	
}

.doctor-page-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
	
	overflow:hidden;
	box-shadow: 0 14px 30px rgba(16, 26, 70, 0.14);
}

.doctor-page-body {
    padding: 24px 22px 22px;
}

.doctor-page-tag {
    display: inline-block;
    margin-bottom: 10px;
    color: #2455d6;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
}

.doctor-page-body h2 {
    margin: 0 0 10px;
    color: #101a46;
    font-size: 24px;
    line-height: 1.25;
}

.doctor-page-specialty {
    min-height: 45px;
    margin: 0px;
    color: #f58220;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 600;
}

.doctor-page-qualification {
    min-height: 43px;
    margin: 0 0 14px;
    color: #68728a;
    font-size: 14px;
    line-height: 1.55;
}

.doctor-page-description {
    min-height: 67px;
    margin: 0 0 18px;
    color: #59647a;
    font-size: 14px;
    line-height: 1.65;
}

.doctor-page-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid #e2e6ef;
    color: #2455d6;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

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

.doctors-page-cta {
    padding: 60px 0;
    background: #f3f6fb;
}

.doctors-page-cta .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.doctors-page-cta h2 {
    margin: 0 0 10px;
    color: #101a46;
    font-size: 32px;
}

.doctors-page-cta p:last-child {
    max-width: 650px;
    margin: 0;
    color: #68728a;
    line-height: 1.7;
}

.doctors-page-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    flex-shrink: 0;
}

.doctors-page-cta-actions .btn {
    white-space: nowrap;
}


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

    .doctors-page-cta .container {
        align-items: flex-start;
        flex-direction: column;
    }
}


/* Mobile */
@media (max-width: 680px) {
    .doctors-page-hero {
        padding: 55px 0;
    }

    .doctors-page-hero h1 {
        font-size: 40px;
    }

    .doctors-page-hero > .container > p:last-child {
        font-size: 16px;
    }

    .doctors-page-section {
        padding: 60px 0;
    }

    .doctors-page-intro {
        text-align: left;
        margin-bottom: 32px;
    }

    .doctors-page-intro h2 {
        font-size: 31px;
    }

    .doctors-page-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .doctor-page-body h2 {
        font-size: 22px;
    }

    .doctors-page-cta h2 {
        font-size: 28px;
    }

    .doctors-page-cta-actions {
        width: 100%;
    }

    .doctors-page-cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
}
