/* Doctor page — typography aligned with location page */
.doctor-page {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
  word-break: keep-all;
}

.doctors,
.cta-banner {
  font-family: inherit;
}

.doctors em,
.doctors .orcid-badge-icon {
  font-style: normal;
}

/* ============ Article meta strip ============ */
.doctor-page .article-meta {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.doctor-page .article-meta .container {
  display: flex;
  align-items: center;
  padding-top: 14px;
  padding-bottom: 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.doctor-page .breadcrumb a {
  color: var(--muted);
  transition: color 0.2s;
}

.doctor-page .breadcrumb a:hover {
  color: var(--blue);
}

.doctor-page .article-meta-sep {
  margin: 0 10px;
  color: var(--line);
}

.doctor-page .article-meta-current {
  color: var(--navy);
  font-weight: 700;
}

/* Doctor team styles (from main.css) */
  /* Doctors (lead + team) */
  .doctors-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 56px;
    flex-wrap: wrap;
    gap: 24px;
  }

  .doctors-subtitle {
    color: var(--muted);
    margin-top: 8px;
  }

  .lead-doctor-creds em {
    font-style: normal;
    color: var(--navy);
    font-weight: 600;
  }

  .lead-doctor {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
  }

  .lead-doctor-visual {
    background: linear-gradient(160deg, #F4F8FD 0%, #DDE8F5 60%, #C4DAF2 100%);
    position: relative;
    min-height: 560px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }

  .lead-doctor-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
      radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.6) 0%, transparent 45%),
      radial-gradient(circle at 80% 80%, rgba(0, 82, 204, 0.1) 0%, transparent 55%);
    pointer-events: none;
  }

  .lead-doctor-photo-img {
    width: auto;
    max-width: 85%;
    height: auto;
    max-height: 96%;
    object-fit: contain;
    object-position: center bottom;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 10px 30px rgba(10, 37, 64, 0.15));
  }

  .lead-doctor-label {
    position: absolute;
    top: 28px;
    left: 28px;
    background: var(--navy);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 6px 16px rgba(10, 37, 64, 0.2);
  }

  .lead-doctor-body {
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .lead-doctor-role {
    font-size: 13px;
    font-weight: 700;
    color: var(--blue);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
  }

  .lead-doctor-name {
    font-size: 40px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.03em;
    margin-bottom: 8px;
  }

  .lead-doctor-name span {
    font-size: 24px;
    font-weight: 600;
    color: var(--muted);
    margin-left: 8px;
  }

  .lead-doctor-title {
    font-size: 16px;
    color: var(--ink-2);
    margin-bottom: 28px;
  }

  .lead-doctor-spec {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
  }

  .lead-doctor-spec span {
    font-size: 13px;
    color: var(--blue);
    background: var(--sky);
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
  }

  .lead-doctor-creds {
    border-top: 1px solid var(--line);
    padding-top: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 28px;
  }

  .lead-doctor-creds h5 {
    font-size: 13px;
    color: var(--muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .lead-doctor-creds ul li {
    font-size: 14px;
    color: var(--ink-2);
    padding-left: 14px;
    position: relative;
    margin-bottom: 6px;
    line-height: 1.5;
  }

  .lead-doctor-creds ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 4px;
    height: 4px;
    background: var(--blue);
    border-radius: 50%;
  }

  .lead-doctor-book {
    margin-top: 22px;
    padding: 18px 20px;
    background: linear-gradient(135deg, #FAF7EF 0%, #F5EFE2 100%);
    border: 1px solid #E8DFC9;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }

  .lead-doctor-book-icon {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: #B89968;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
  }

  .lead-doctor-book-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
  }

  .book-line-label {
    font-size: 13px;
    color: #8F7448;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .book-line-title {
    font-size: 15px;
    color: var(--navy);
    font-weight: 800;
    letter-spacing: -0.02em;
  }

  .book-line-title ~ .book-line-title {
    margin-top: 6px;
  }

  .book-line-meta {
    font-weight: 500;
    color: var(--muted);
    font-size: 13px;
  }

  .book-line-sub {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
  }

  .book-line-link {
    font-size: 13px;
    color: var(--navy);
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
    transition: color 0.2s;
  }

  .book-line-link:hover {
    color: #8F7448;
  }

  /* Research / Academic block */
  .lead-doctor-research {
    margin-top: 14px;
    background: linear-gradient(135deg, #F5FAFF 0%, #EEF4FC 100%);
    border: 1px solid #DDE7F2;
    border-radius: 14px;
    overflow: hidden;
  }

  .research-head {
    padding: 16px 20px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #E2ECF5;
    gap: 12px;
    flex-wrap: wrap;
  }

  .research-head-label {
    font-size: 13px;
    color: var(--blue);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .research-head-label strong {
    color: var(--navy);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -0.01em;
    text-transform: none;
    display: block;
    margin-top: 2px;
  }

  .orcid-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #6B7887;
    background: #fff;
    padding: 6px 10px 6px 6px;
    border-radius: 100px;
    border: 1px solid #E2ECF5;
    transition: all 0.2s;
  }

  .orcid-badge:hover {
    border-color: #A6CE39;
    color: var(--navy);
  }

  .orcid-badge-icon {
    width: 18px;
    height: 18px;
    background: #A6CE39;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    font-style: normal;
    flex-shrink: 0;
  }

  .research-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid #E2ECF5;
  }

  .research-stat {
    padding: 14px 16px;
    text-align: center;
    border-right: 1px solid #E2ECF5;
  }

  .research-stat:last-child {
    border-right: none;
  }

  .research-stat-num {
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
  }

  .research-stat-num .unit {
    font-size: 13px;
    color: var(--blue);
    margin-left: 1px;
  }

  .research-stat-label {
    font-size: 13px;
    color: var(--muted);
    margin-top: 4px;
    letter-spacing: 0.02em;
  }

  .research-papers {
    padding: 16px 20px 18px;
  }

  .research-papers-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
  }

  .research-paper {
    padding: 10px 0;
    border-bottom: 1px dashed #DDE7F2;
  }

  .research-paper:last-child {
    border-bottom: none;
  }

  .research-paper-title {
    font-size: 13px;
    color: var(--ink);
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -0.01em;
    margin-bottom: 4px;
  }

  .research-paper-meta {
    font-size: 13px;
    color: var(--muted);
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
  }

  .research-paper-meta em {
    font-style: normal;
    color: var(--blue);
    font-weight: 600;
  }

  .research-paper-tag {
    display: inline-block;
    font-size: 13px;
    background: var(--sky);
    color: var(--blue);
    padding: 2px 7px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.02em;
  }

  .research-footer {
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.5);
    border-top: 1px solid #E2ECF5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
  }

  .research-footer a {
    color: var(--navy);
    font-weight: 700;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }

  .research-footer a:hover {
    color: var(--blue);
  }

  .research-footer .sep {
    color: var(--line);
    margin: 0 4px;
  }

  .research-footer-note {
    color: var(--muted);
  }

  @media (max-width: 640px) {
    .research-stats {
      grid-template-columns: 1fr;
    }

    .research-stat {
      border-right: none;
      border-bottom: 1px solid #E2ECF5;
    }

    .research-stat:last-child {
      border-bottom: none;
    }

    .research-head {
      flex-direction: column;
      align-items: flex-start;
    }

    .research-footer {
      flex-direction: column;
      gap: 8px;
      align-items: flex-start;
    }
  }

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

  .doctor-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
  }

  .doctor-photo {
    aspect-ratio: 5/6;
    background: linear-gradient(135deg, #F4F8FD 0%, #DDE8F5 100%);
    overflow: hidden;
    position: relative;
  }

  .doctor-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
  }

  .doctor-dept-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(6px);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--blue);
    letter-spacing: 0.04em;
    box-shadow: var(--shadow-sm);
    z-index: 2;
  }

  .doctor-body {
    padding: 24px 24px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .doctor-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
    margin-bottom: 2px;
  }

  .doctor-name span {
    font-size: 15px;
    font-weight: 600;
    color: var(--muted);
    margin-left: 4px;
  }

  .doctor-role {
    font-size: 13px;
    color: var(--blue);
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 12px;
  }

  .doctor-focus {
    font-size: 14px;
    color: var(--ink-2);
    line-height: 1.6;
    margin-bottom: 14px;
  }

  .doctor-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 16px;
  }

  .doctor-tags span {
    font-size: 13px;
    color: var(--ink-2);
    background: var(--sky-2);
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 500;
  }

  .doctor-cred {
    font-size: 13px;
    color: #333a42;
    line-height: 1.6;
    border-top: 1px solid var(--line-2);
    padding-top: 14px;
    margin-top: auto;
  }

  .doctor-cred li {
    padding-left: 10px;
    position: relative;
    margin-bottom: 3px;
  }

  .doctor-cred li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 3px;
    height: 3px;
    background: var(--blue);
    border-radius: 50%;
  }

  /* ============ Doctor cards: Path badges & grouping ============ */
  .doctor-card {
    position: relative;
    overflow: visible;
  }

  .doctor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 8px 8px 0 0;
    z-index: 1;
  }

  .doctor-card[data-path="02"]::before {
    background: #2D2A28;
  }

  .doctor-card[data-path="03"]::before {
    background: #4A5D6E;
  }

  .doctor-card[data-path="05"]::before {
    background: #6D4E3F;
  }

  .doctor-card[data-path="support"]::before {
    background: #8B8B8B;
  }

  .doctor-path-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 3px;
    margin-bottom: 14px;
  }

  .doctor-card[data-path="02"] .doctor-path-badge {
    background: #EEEDEA;
    color: #2D2A28;
  }

  .doctor-card[data-path="03"] .doctor-path-badge {
    background: #E6ECF0;
    color: #4A5D6E;
  }

  .doctor-card[data-path="05"] .doctor-path-badge {
    background: #EFE8E1;
    color: #6D4E3F;
  }

  .doctor-card[data-path="support"] .doctor-path-badge {
    background: #F0F0F0;
    color: #5A5A5A;
  }

  /* Lead doctor: add Path 01 + 04 dual badge */
  .lead-doctor-paths {
    display: inline-flex;
    gap: 8px;
    margin-bottom: 18px;
    flex-wrap: wrap;
  }

  .lead-doctor-paths .doctor-path-badge {
    margin-bottom: 0;
  }

  .lead-doctor-paths .lead-badge-01 {
    background: #E8EEF7;
    color: #0A2540;
  }

  .lead-doctor-paths .lead-badge-04 {
    background: #E6EDE0;
    color: #596B4E;
  }

  /* Doctors team header with Path groupings */
  .doctors-subhead {
    margin-top: 72px;
    margin-bottom: 36px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(10, 37, 64, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 20px;
  }

  .doctors-subhead-title {
    font-family: inherit;
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 800;
    color: var(--navy, #0A2540);
    letter-spacing: -0.02em;
  }

  .doctors-subhead-title em {
    font-style: normal;
    color: var(--blue);
  }

  .doctors-subhead-note {
    font-family: inherit;
    font-size: 14px;
    font-style: normal;
    color: var(--muted, #6B7A8A);
  }

@media (max-width: 1024px) {
    .doctors-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .lead-doctor {
      grid-template-columns: 1fr;
    }

    .lead-doctor-visual {
      min-height: 360px;
    }
    .lead-doctor-creds {
      grid-template-columns: 1fr;
    }
}

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

  .lead-doctor-body {
    padding: 36px 28px;
  }

  .lead-doctor-name {
    font-size: 30px;
  }

  .lead-doctor-name span {
    font-size: 18px;
  }
}

/* Doctor page — page-main.php layout alignment */
.doctors {
  background: var(--white);
}

.doctors .doctors-header .section-eyebrow::before,
.doctors .doctors-header .section-eyebrow::after {
  content: none;
}

.doctors .doctors-header .section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue, #0052CC);
  letter-spacing: 0.14em;
  margin-bottom: 12px;
}

.doctors .doctors-header .section-title {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800;
  color: var(--navy, #0A2540);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 12px;
}

.doctors-subtitle {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.65;
  color: var(--muted, #6B7A8A);
}

/* Director card: 이대영 병원장 in doctors grid */
.doctor-card[data-path="01-04"]::before { background: linear-gradient(90deg, #0A2540 0%, #0A2540 50%, #596B4E 50%, #596B4E 100%); }
.doctor-card[data-path="01-04"] .doctor-path-badge {
  background: linear-gradient(90deg, #E8EEF7 0%, #E8EEF7 33%, #E6EDE0 66%, #E6EDE0 100%);
  color: #0A2540;
}
.doctor-card-director {
  border-color: rgba(10, 37, 64, 0.22);
  box-shadow: 0 6px 22px rgba(10, 37, 64, 0.08);
}
.director-dept-badge {
  background: #0A2540 !important;
  color: #fff !important;
  letter-spacing: 0.1em !important;
}

/* Director detail section (학술·저서) */
.director-detail {
  margin-top: 64px;
  padding: 48px 40px;
  background: linear-gradient(180deg, #F7FAFD 0%, #FFFFFF 100%);
  border: 1px solid rgba(10, 37, 64, 0.08);
  border-radius: 24px;
}
.director-detail-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 28px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(10, 37, 64, 0.08);
}
.director-detail .section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue, #0052CC);
  letter-spacing: 0.14em;
  margin-bottom: 8px;
}
.director-detail .section-eyebrow::before,
.director-detail .section-eyebrow::after {
  content: none;
}
.director-detail-title {
  font-family: inherit;
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--navy, #0A2540);
  letter-spacing: -0.02em;
  margin: 6px 0 8px;
}
.director-detail-title em {
  font-style: normal;
  color: var(--blue);
}
.director-detail-sub {
  font-size: clamp(14px, 1.3vw, 15px);
  color: var(--muted);
  line-height: 1.65;
  max-width: 620px;
  margin: 0;
}
.director-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
.director-detail-col { display: flex; flex-direction: column; gap: 28px; }
.director-detail-col .lead-doctor-book {
  /* reuse book style but fit into column */
  margin: 0;
}
.director-detail-col .lead-doctor-research {
  margin: 0;
}
.director-achievements {
  background: #fff;
  border: 1px solid rgba(10, 37, 64, 0.08);
  border-radius: 16px;
  padding: 22px 24px;
}
.director-achievements h5 {
  font-size: 13px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.director-achievements ul {
  margin: 0;
  padding-left: 18px;
  color: var(--ink-2);
  font-size: 13.5px;
  line-height: 1.7;
}
.director-achievements li { margin-bottom: 4px; }

@media (max-width: 860px) {
  .director-detail { padding: 32px 22px; }
  .director-detail-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* Lead doctor: add Path 01 + 04 dual badge */
.lead-doctor-paths {
  display: inline-flex;
  gap: 8px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.lead-doctor-paths .doctor-path-badge {
  margin-bottom: 0;
}
.lead-doctor-paths .lead-badge-01 { background: #E8EEF7; color: #0A2540; }
.lead-doctor-paths .lead-badge-04 { background: #E6EDE0; color: #596B4E; }

/* Tablet — location page 960px 기준 */
@media (max-width: 960px) {
  .doctors {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .doctors-header {
    margin-bottom: 44px;
    align-items: flex-start;
  }

  .doctors-header .btn {
    width: 100%;
    justify-content: center;
  }

  .doctors-subhead {
    margin-top: 56px;
    margin-bottom: 28px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .doctors-grid {
    gap: 20px;
  }

  .director-detail {
    margin-top: 48px;
    padding: 32px 24px;
    border-radius: 18px;
  }

  .director-detail-header {
    gap: 16px;
    padding-bottom: 22px;
    margin-bottom: 24px;
  }

  .director-detail-header .orcid-badge {
    width: 100%;
    justify-content: center;
  }

  .doctor-page .cta-banner {
    padding: 64px 0;
  }
}

/* Mobile — location page 768px 기준 */
@media (max-width: 768px) {
  .doctors {
    padding-top: 72px;
    padding-bottom: 72px;
  }

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

  .doctors .doctors-header .section-eyebrow {
    font-size: 11px;
    margin-bottom: 10px;
  }

  .doctors .doctors-header .section-title {
    font-size: 32px;
    line-height: 1.25;
  }

  .doctors-subtitle {
    font-size: 15.5px;
    line-height: 1.7;
  }

  .doctors-subhead {
    margin-top: 48px;
    margin-bottom: 24px;
    padding-bottom: 18px;
  }

  .doctors-subhead-title {
    font-size: 28px;
    line-height: 1.2;
  }

  .doctors-subhead-note {
    font-size: 13.5px;
    line-height: 1.6;
  }

  .doctors-grid {
    gap: 16px;
  }

  .doctor-body {
    padding: 20px 20px 22px;
  }

  .doctor-dept-badge {
    top: 12px;
    left: 12px;
    font-size: 12px;
    padding: 5px 10px;
  }

  .doctor-path-badge {
    font-size: 12px;
    padding: 4px 8px;
    margin-bottom: 12px;
    letter-spacing: 0.06em;
    flex-wrap: wrap;
    line-height: 1.45;
  }

  .doctor-name {
    font-size: 20px;
  }

  .doctor-name span {
    font-size: 14px;
  }

  .doctor-role {
    font-size: 12.5px;
    margin-bottom: 10px;
  }

  .doctor-focus {
    font-size: 13.5px;
    margin-bottom: 12px;
  }

  .doctor-tags span {
    font-size: 12px;
    padding: 3px 8px;
  }

  .doctor-cred {
    font-size: 12.5px;
    padding-top: 12px;
  }

  .director-detail {
    margin-top: 40px;
    padding: 24px 20px;
    border-radius: 14px;
  }

  .director-detail-header {
    padding-bottom: 18px;
    margin-bottom: 20px;
  }

  .director-detail .section-eyebrow {
    font-size: 11px;
  }

  .director-detail-title {
    font-size: 28px;
    line-height: 1.2;
  }

  .director-detail-sub {
    font-size: 14px;
  }

  .director-detail-col {
    gap: 20px;
  }

  .lead-doctor-book {
    flex-direction: column;
    gap: 12px;
    padding: 16px 18px;
  }

  .book-line-link {
    align-self: flex-start;
  }

  .director-achievements {
    padding: 18px 20px;
    border-radius: 12px;
  }

  .director-achievements ul {
    font-size: 13px;
  }

  .research-paper-title {
    font-size: 12.5px;
  }

  .research-paper-meta {
    font-size: 12px;
    gap: 8px;
  }

  .research-footer {
    font-size: 12.5px;
    padding: 12px 16px;
  }

  .doctor-page .cta-banner {
    padding: 56px 0;
  }

  .doctor-page .cta-inner h3 {
    font-size: 28px;
  }

  .doctor-page .cta-inner p {
    font-size: 15px;
  }

  .doctor-page .cta-phone-label {
    font-size: 13.5px;
  }

  .doctor-page .cta-phone-num {
    font-size: 32px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .doctors {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .doctors .doctors-header .section-title {
    font-size: 28px;
  }

  .doctors-subtitle {
    font-size: 15px;
  }

  .doctors-subhead-title {
    font-size: 26px;
  }

  .doctors-subhead-note {
    font-size: 13px;
  }

  .doctor-body {
    padding: 18px 16px 20px;
  }

  .doctor-name {
    font-size: 19px;
  }

  .director-detail {
    padding: 20px 16px;
    border-radius: 12px;
  }

  .director-detail-title {
    font-size: 26px;
  }

  .research-stat-num {
    font-size: 18px;
  }

  .doctor-page .cta-inner h3 {
    font-size: 26px;
  }

  .doctor-page .cta-phone-num {
    font-size: 28px;
  }
}

/* Interlude logo anchor — brand philosophy visual bridge */
.interlude-logo {
  text-align: center;
  margin: 56px auto 72px;
  padding: 32px 0;
  position: relative;
}
.interlude-logo::before, .interlude-logo::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(10, 37, 64, 0.2), transparent);
}
.interlude-logo::before { left: calc(50% - 150px); }
.interlude-logo::after { right: calc(50% - 150px); }
.interlude-logo img {
  width: 80px;
  height: auto;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 6px 16px rgba(10, 37, 64, 0.15));
}
.interlude-logo-caption {
  margin-top: 18px;
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  color: #9A8A6A;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.interlude-logo-caption em {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
  font-style: normal;
  letter-spacing: 0;
  text-transform: none;
  font-size: 13px;
  color: #2B3240;
  font-weight: 400;
}
@media (max-width: 640px) {
  .interlude-logo { margin: 40px auto 48px; }
  .interlude-logo img { width: 64px; }
  .interlude-logo::before, .interlude-logo::after { width: 40px; }
  .interlude-logo::before { left: calc(50% - 90px); }
  .interlude-logo::after { right: calc(50% - 90px); }
  .interlude-logo-caption { font-size: 13px; padding: 0 24px; }
}
