@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;
        height: 50vh;
        min-height: 350px;
        background: #0c2c17;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .hero-bg {
        position: absolute;
        inset: 0;
        z-index: 0;
    }

    .hero-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.4;
    }

    .doctors-hero::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, rgba(12, 44, 23, 0.8) 0%, rgba(12, 44, 23, 0.3) 100%);
        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-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) {
        .hero-title {
            font-size: 2.8rem;
        }

        .doctors-wrapper {
            padding: 60px 20px 80px;
        }
    }

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

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