@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

    /* ══════════════════════════════════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════════════════════════════════ */
    .doctors-hero {
        position: relative;
        min-height: 180px;
        padding: 48px 20px;
        background: #0c2c17;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .doctors-hero::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(211, 159, 60, 0.08), transparent 60%);
        z-index: 1;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
        padding: 0 20px;
    }

    .hero-title {
        font-family: 'Cormorant Garamond', serif;
        font-size: 3.5rem;
        font-weight: 600;
        color: #f5f0e8;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin: 0;
    }

    /* ══════════════════════════════════════════════════════════════════════════
   INTRO SECTION
══════════════════════════════════════════════════════════════════════════ */
    .doctors-wrapper {
        padding: 100px 20px;
        background: #f4f7f5;
        /* Light green-tinted white */
    }

    .doctors-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .doctors-header {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 60px;
    }

    .doctors-eyebrow {
        font-family: 'Jost', sans-serif;
        font-size: 0.75rem;
        font-weight: 500;
        letter-spacing: 5px;
        text-transform: uppercase;
        color: #9b7826;
        /* Dark bronze */
        margin-bottom: 15px;
    }

    .doctors-heading {
        font-family: 'Cormorant Garamond', serif;
        font-size: 2.8rem;
        color: #0c2c17;
        margin-bottom: 20px;
        line-height: 1.15;
    }

    .doctors-desc {
        font-family: 'Jost', sans-serif;
        font-size: 1.05rem;
        font-weight: 300;
        line-height: 1.8;
        color: #3b4e41;
    }

    /* ══════════════════════════════════════════════════════════════════════════
   DOCTORS GRID
══════════════════════════════════════════════════════════════════════════ */
    .doctors-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .doctor-card {
        background: #ffffff;
        border-radius: 4px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(12, 44, 23, 0.05);
        transition: transform 0.4s ease, box-shadow 0.4s ease;
        border-bottom: 3px solid transparent;
    }

    .doctor-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(12, 44, 23, 0.1);
        border-bottom-color: #d39f3c;
        /* Golden bottom border on hover */
    }

    .profile-image-wrap {
    width: 100%;
    height: 450px; /* Strict height for the detail page */
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(12, 44, 23, 0.08);
    border: 1px solid rgba(211, 159, 60, 0.15);
}

.profile-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

    .doctor-card:hover .doctor-image-wrap img {
        transform: scale(1.05);
        /* Slight zoom on hover */
    }

    .doctor-info {
        padding: 35px 30px;
        text-align: center;
    }

    .doctor-title {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.8rem;
        font-weight: 600;
        color: #0c2c17;
        margin-bottom: 8px;
        line-height: 1.2;
    }

    .doctor-specialty {
        font-family: 'Jost', sans-serif;
        font-size: 0.85rem;
        font-weight: 500;
        letter-spacing: 2px;
        color: #d39f3c;
        /* Gold */
        text-transform: uppercase;
        margin-bottom: 20px;
        display: block;
    }

    .doctor-bio {
        font-family: 'Jost', sans-serif;
        font-size: 0.95rem;
        font-weight: 300;
        line-height: 1.7;
        color: #49594d;
        margin-bottom: 25px;
    }

    /* Updated Button Style */
    .btn-read-more {
        display: inline-block;
        font-family: 'Jost', sans-serif;
        font-size: 0.85rem;
        font-weight: 500;
        letter-spacing: 2px;
        color: #0c2c17;
        text-transform: uppercase;
        text-decoration: none;
        border-bottom: 1px solid #d39f3c;
        padding-bottom: 4px;
        transition: color 0.3s ease;
    }

    .btn-read-more:hover {
        color: #d39f3c;
    }

    /* ══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════════════════ */
    @media (max-width: 991px) {
        .doctors-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .doctors-hero {
            min-height: 130px;
            padding: 32px 16px;
        }

        .hero-title {
            font-size: 2.25rem;
            line-height: 1.15;
        }

        .doctors-wrapper {
            padding: 38px 18px 70px;
        }

        .doctors-header {
            margin-bottom: 36px;
        }

        .doctors-eyebrow {
            font-size: 0.68rem;
            letter-spacing: 4px;
            margin-bottom: 12px;
        }

        .doctors-heading {
            font-size: 2.2rem;
            margin-bottom: 14px;
        }

        .doctors-desc {
            font-size: 0.95rem;
            line-height: 1.65;
        }
    }

    @media (max-width: 600px) {
        .doctors-grid {
            grid-template-columns: 1fr;
        }

        .doctor-image-wrap {
            aspect-ratio: 1 / 1;
            /* Squarer images on mobile */
        }
    }

    @media (max-width: 480px) {
        .doctors-hero {
            min-height: 105px;
            padding: 24px 16px;
        }

        .hero-title {
            font-size: 2rem;
            letter-spacing: 1.5px;
        }

        .doctors-wrapper {
            padding-top: 30px;
        }
    }

    .doctors-hero {
        height: auto !important;
        min-height: 120px;
        padding: 28px 16px;
    }

    .doctors-hero .hero-title {
        font-size: 2rem;
        line-height: 1.05;
        letter-spacing: 1px;
    }

    @media (max-width: 768px) {
        .doctors-hero {
            min-height: 86px;
            padding: 18px 14px;
        }

        .doctors-hero .hero-title {
            font-size: 1.35rem;
            letter-spacing: 0.5px;
        }
    }
