/* ============================================================
   DOCTOR PAGES — Shared + Single + Archive
   Brand Blue:  #009BDB  rgb(0, 155, 219)
   Dark Text:   #333
   Card Border: rgba(0, 79, 113, 0.25)
   ============================================================ */


/* ──────────────────────────────────────────────
   ARCHIVE PAGE — /eye-doctor/
   ────────────────────────────────────────────── */

.doctors-archive {
    max-width: 1500px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

.doctors-archive__heading {
    font-size: 76px;
    font-weight: 700;
    color: #009BDB;
    margin: 0 0 40px;
    line-height: 1.15;
}

.doctors-archive__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    --doc-cols: 4; /* default; overridden by shortcode columns attr */
}

.doctor-card {
    width: 300px;
    padding: 28px;
    margin: 0 8px 48px 0;
    border: 1px solid rgba(0, 79, 113, 0.25);
    box-shadow: 0 0 20px 2px rgba(0, 0, 0, 0.06);
    text-align: center;
    text-decoration: none;
    display: block;
    transition: box-shadow 0.2s ease, transform 0.15s ease;
}

.doctor-card:hover {
    box-shadow: 0 0 24px 4px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.doctor-card__photo {
    width: 240px;
    /* height: 240px; */
    object-fit: cover;
    display: block;
    margin: 0 auto 12px;
}

.doctor-card__name {
    font-size: 19px;
    font-weight: 700;
    color: #333;
    margin: 0 0 4px;
    line-height: 1.4;
}

.doctor-card__credential {
    font-size: 19px;
    font-weight: 400;
    color: #333;
    margin: 0;
    line-height: 1.4;
}


/* ──────────────────────────────────────────────
   SINGLE PAGE — /eye-doctor/{slug}/
   ────────────────────────────────────────────── */

/* ---------- Section 1: Doctor Hero ---------- */
.doctor-hero {
    max-width: 80%;
    margin: 0 auto;
    padding: 100px 0px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
    align-items: start;
}

.doctor-hero__photo img {
    width: 100%;
    max-width: 584px;
    height: auto;
    display: block;
    object-fit: cover;
}

.doctor-hero__info {
    padding: 0 40px;
}

.doctor-hero__name {
    font-size: 64px;
    font-weight: 400;
    color: #009BDB;
    margin: 0 0 30px;
    line-height: 1.15;
}

.doctor-hero__separator {
    border: none;
    border-top: 1px solid #ccc;
    margin: 0 0 30px;
    opacity: 1;
}

.doctor-hero__credential {
    font-size: 32px;
    font-weight: 400;
    color: #333;
    margin: 0 0 30px;
    line-height: 1.4;
}

.doctor-hero__quote {
    font-size: 30px;
    font-weight: 100;
    font-style: italic;
    color: #333;
    line-height: 1.8;
    margin: 0 0 30px;
}

.doctor-hero__watch-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #009BDB;
    color: #fff;
    font-size: 19px;
    font-weight: 400;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 0;
    transition: background 0.2s ease;
}

.doctor-hero__watch-btn:hover {
    background: #007eb0;
    color: #fff;
}


/* ---------- Section 2: Blue Q&A + Video ---------- */
.doctor-qa-section {
    background: #009BDB;
    margin: 32px 0;
    max-width: 80%;
    margin: 0 auto;
}

.doctor-qa-section__inner {
    /* max-width: 1290px; */
    margin: 0 auto;
    padding: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: start;
}

.doctor-qa__content {
    padding: 32px;
}

.doctor-qa__item {
    margin-bottom: 30px;
}

.doctor-qa__item:last-child {
    margin-bottom: 0;
}

.doctor-qa__label {
    font-size: 24px;
    font-weight: 700;
    font-style: italic;
    color: #000000;
    margin: 0 0 4px;
    line-height: 1.4;
}

.doctor-qa__answer {
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    margin: 0;
    line-height: 1.4;
}

.doctor-qa__video {
    padding: 32px 0;
    display: flex;
    align-items: center;
}

.doctor-qa__video iframe,
.doctor-qa__video .wistia_responsive_padding,
.doctor-qa__video .wistia_embed {
    width: 100%;
    max-width: 100%;
}


/* ---------- Section 3: Testimonials ---------- */
.doctor-testimonials {
    max-width: 80%;
    margin: 0 auto;
    padding: 100px 0px;
    background: #fff;
}

.doctor-testimonials__heading {
    font-size: 36px;
    font-weight: 700;
    color: #009BDB;
    margin: 0 0 30px;
    line-height: 1.3;
}

.doctor-testimonials__separator {
    border: none;
    border-top: 1px solid #ccc;
    margin: 0 0 40px;
    opacity: 1;
}

.doctor-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.doctor-testimonial-card {
    background: #000;
    border-radius: 10px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.doctor-testimonial-card__text {
    font-size: 19px;
    line-height: 1.8;
    color: #fff;
    margin: 0 0 16px;
}

.doctor-testimonial-card__author {
    font-size: 19px;
    font-weight: 700;
    font-style: italic;
    color: #fff;
    margin: 0;
}


/* ──────────────────────────────────────────────
   RESPONSIVE
   ────────────────────────────────────────────── */

@media (max-width: 1024px) {

    /* Archive */
    .doctors-archive__heading {
        font-size: 48px;
    }
    .doctor-card {
        width: calc(50% - 16px);
        margin: 0 0 32px;
    }

    /* Single */
    .doctor-hero {
        grid-template-columns: 1fr;
    }
    .doctor-hero__info {
        padding: 30px 0 0;
    }
    .doctor-hero__name {
        font-size: 42px;
    }
    .doctor-hero__credential {
        font-size: 24px;
    }
    .doctor-hero__quote {
        font-size: 22px;
    }
    .doctor-qa-section__inner {
        grid-template-columns: 1fr;
    }
    .doctor-qa__video {
        padding: 0 32px 32px;
    }
    .doctor-testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    /* Archive */
    .doctors-archive__heading {
        font-size: 36px;
    }
    .doctor-card {
        width: 100%;
        margin: 0 0 24px;
    }

    /* Single */
    .doctor-hero__name {
        font-size: 32px;
    }
    .doctor-hero__credential {
        font-size: 20px;
    }
    .doctor-hero__quote {
        font-size: 18px;
        line-height: 1.6;
    }
    .doctor-qa__label,
    .doctor-qa__answer {
        font-size: 18px;
    }
    .doctor-testimonials__heading {
        font-size: 26px;
    }
    .doctor-testimonials__grid {
        grid-template-columns: 1fr;
    }
}
