/* ═══════════════════════════════════════
   Doctor Profile Page — /en/{slug}/doctor
   ═══════════════════════════════════════ */

/* GNB 활성 메뉴 */
.nav-links li a.active { color: var(--gold); font-weight: 600; }

/* ── Hero ─────────────────────────────── */
.doctor-hero {
    padding: 80px 0 40px;
    background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
    border-bottom: 1px solid var(--border);
    text-align: center;
}
.doctor-hero .sec-label-v2 { justify-content: center; }
.doctor-h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    color: var(--navy);
    margin: 16px 0 12px;
}
.doctor-sub {
    font-size: 14px;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ── Doctor List ──────────────────────── */
.doctor-list { padding: 60px 0; background: #fff; }
.doctor-list .container {
    display: flex;
    flex-direction: column;
    gap: 56px;
}

/* ── Doctor Card ──────────────────────── */
.doctor-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
}
.doctor-card:last-child { border-bottom: none; padding-bottom: 0; }

.doctor-photo {
    width: 280px;
    height: 360px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--gray);
    border: 1px solid var(--border);
}
.doctor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.doctor-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 64px;
    opacity: .3;
}

.doctor-body { display: flex; flex-direction: column; gap: 20px; }

.doctor-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(24px, 2.5vw, 32px);
    font-weight: 500;
    color: var(--navy);
    margin: 0 0 4px;
}
.doctor-name-kor {
    display: inline-block;
    margin-left: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--muted);
    font-weight: 400;
}
.doctor-title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .08em;
    color: var(--gold);
    text-transform: uppercase;
    margin: 0 0 8px;
}

.doctor-block { padding-top: 4px; }
.doctor-block-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    color: var(--accent);
    text-transform: uppercase;
    margin: 0 0 8px;
}
.doctor-multi {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: var(--text);
    margin: 0;
    white-space: pre-line;
    background: none;
    padding: 0;
    border: none;
}
.doctor-languages {
    font-size: 14px;
    color: var(--text);
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.doctor-languages i { color: var(--gold); }
.doctor-philosophy {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text);
    margin: 0;
    padding: 16px 20px;
    background: var(--gold-pale);
    border-left: 3px solid var(--gold);
    border-radius: 0 8px 8px 0;
}

/* ── CTA 섹션 ─────────────────────────── */
.doctor-cta {
    padding: 60px 0;
    background: var(--navy);
    color: #fff;
    text-align: center;
}
.doctor-cta h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 400;
    color: #fff;
    margin: 0 0 24px;
}
.doctor-cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── 반응형 ──────────────────────────── */
@media (max-width: 768px) {
    .doctor-card {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .doctor-photo { width: 100%; max-width: 320px; height: 360px; margin: 0 auto; }
    .doctor-hero { padding: 60px 0 32px; }
    .doctor-list { padding: 40px 0; }
}
