:root {
  color-scheme: light;
  --bg: #f3f1ee;
  --surface: #f8f7f5;
  --surface-1: #e9e6e2;
  --surface-2: #d8d5d1;
  --ink: #292c2f;
  --ink-soft: #62666a;
  --campaign: #25272a;
  --campaign-text: #f2f0ec;
  --accent: #546171;
  --accent-on-dark: #c2cbd5;
  --line: rgb(41 44 47 / 16%);
  --line-strong: rgb(41 44 47 / 28%);
  --line-on-dark: rgb(242 240 236 / 34%);
  --focus: #2f5f85;
  --nav-height: 72px;
  --serif: "Noto Serif TC", "Source Han Serif TC", "Songti TC", "PMingLiU", serif;
  --sans: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", system-ui, sans-serif;
  /* Compatibility tokens used by the preview-only review layer. */
  --font-ui: var(--sans);
  --font-ming: var(--serif);
  --navy: #34495c;
  --navy-dark: #293947;
  --link: #365a77;
  --rule: var(--line-strong);
  --warm: #f2eee6;
  --system-light: #fff;
  --system-dark: #6b7074;
  --system-mid: #b9bdc0;
  --system: #d5d7d8;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--bg);
  font: 17px/1.78 var(--sans);
  letter-spacing: .01em;
  text-rendering: optimizeLegibility;
}
::selection { color: var(--campaign-text); background: var(--accent); }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, h4, p { margin-top: 0; }
.shell-wide { width: min(calc(100% - 128px), 1312px); margin-inline: auto; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border: 1px solid var(--ink);
  background: var(--campaign-text);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
a:focus-visible, button:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.preview-bar {
  position: relative;
  z-index: 200;
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 7px 56px;
  color: #f7f5f1;
  background: #39444d;
  font-size: 12px;
}
.preview-bar span { font-weight: 700; letter-spacing: .08em; }
.preview-bar-close {
  position: absolute;
  right: 12px;
  min-width: 44px;
  min-height: 30px;
  border: 1px solid rgb(255 255 255 / 55%);
  background: transparent;
  color: inherit;
  cursor: pointer;
}
.preview-bar-dismissed .preview-bar { display: none; }

.site-header {
  position: relative;
  z-index: 50;
  height: var(--nav-height);
  border-bottom: 1px solid var(--line);
  background: rgb(243 241 238 / 97%);
}
.nav { display: flex; height: 100%; align-items: center; justify-content: space-between; }
.brand, .footer-name {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: .1em;
}
.brand { font-size: 18px; }
.nav-links, .mobile-menu { margin: 0; padding: 0; list-style: none; }
.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-parent { position: relative; }
.nav-links a {
  position: relative;
  display: grid;
  min-height: 44px;
  place-items: center;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .04em;
}
.nav-links a::after {
  position: absolute;
  right: 100%;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--accent);
  content: "";
  transition: right 180ms ease;
}
.nav-links a:hover::after, .nav-links a:focus-visible::after,
.nav-links a.current::after { right: 0; }
.nav-submenu {
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  width: 176px;
  margin: 0;
  padding: 8px 0;
  border: 1px solid var(--line);
  background: var(--bg);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms step-end;
}
.nav-parent:hover > .nav-submenu, .nav-parent:focus-within > .nav-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
  transition: opacity 180ms ease, transform 180ms ease;
}
.nav-submenu a { min-height: 42px; padding: 0 18px; place-items: center start; color: var(--ink-soft); }
.nav-submenu a:hover, .nav-submenu a:focus-visible { color: var(--ink); background: var(--surface-1); }
.nav-submenu a::after { display: none; }
.menu-toggle, .mobile-menu { display: none; }

.hero {
  position: relative;
  min-height: clamp(620px, calc(100svh - var(--nav-height)), 760px);
  overflow: clip;
  isolation: isolate;
  background: linear-gradient(90deg, var(--bg) 0 38%, rgb(243 241 238 / 95%) 47%, rgb(243 241 238 / 12%) 70%);
}
.hero-copy {
  position: relative;
  z-index: 4;
  width: min(40vw, 500px);
  padding-top: clamp(92px, 13vh, 126px);
  margin-left: max(64px, calc((100vw - 1312px) / 2 + 16px));
  opacity: 0;
  transform: translateY(14px);
  animation: hero-copy-in 620ms 80ms cubic-bezier(.22, 1, .36, 1) forwards;
}
.hero h1 {
  margin: 0;
  font: 500 clamp(76px, 6.4vw, 98px)/1 var(--serif);
  letter-spacing: .045em;
  white-space: nowrap;
}
.latin-name { margin: 18px 0 0; font: 600 14px/1.4 "Times New Roman", serif; letter-spacing: .22em; }
.hero-specialty { margin: 30px 0 0; color: var(--ink-soft); font-size: 15px; font-weight: 500; }
.roles { margin-top: 8px; color: var(--ink-soft); }
.roles p { margin: 0; }
.roles p + p { margin-top: 4px; }
.text-link, .panel-link, .band-articles > p:last-child a, .band-locations > p > a {
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .07em;
  transition: transform 180ms ease;
}
.text-link { margin-top: 32px; }
.text-link:hover, .band-articles > p:last-child a:hover { transform: translateX(6px); }
.hero-visual {
  position: absolute;
  z-index: 1;
  inset: 0 0 0 auto;
  width: 61%;
  overflow: hidden;
  opacity: 0;
  animation: hero-photo-in 900ms cubic-bezier(.22, 1, .36, 1) forwards;
  mask-image: linear-gradient(90deg, transparent 0, rgb(0 0 0 / 20%) 8%, #000 25%);
}
.hero-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(243 241 238 / 40%), transparent 28%), linear-gradient(180deg, transparent 74%, rgb(243 241 238 / 24%));
  content: "";
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 27%;
  filter: saturate(.82) contrast(.97) brightness(1.015);
  transform: scale(1.12);
  transform-origin: 50% 25%;
}
@keyframes hero-copy-in { to { opacity: 1; transform: none; } }
@keyframes hero-photo-in { from { opacity: .84; } to { opacity: 1; } }

.band { position: relative; }
.band > h2 {
  font: 500 clamp(48px, 5vw, 64px)/1.12 var(--serif);
  letter-spacing: .015em;
}
.band-topics {
  min-height: 980px;
  padding: 164px max(64px, calc((100vw - 1312px) / 2)) 120px;
  overflow: clip;
}
.band-topics > h2, .band-topics > p { max-width: 620px; margin-left: 32px; }
.band-topics > h2 { margin-bottom: 24px; }
.band-topics > p { color: var(--ink-soft); }
.band-topics > ul {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 360px) minmax(0, .9fr);
  min-height: 510px;
  margin: 52px 0 0;
  padding: 0;
  list-style: none;
}
.band-topics > ul > li {
  position: relative;
  z-index: 3;
  min-width: 0;
  min-height: 420px;
  padding: 58px 46px;
  border: 1px solid var(--line);
  background: var(--surface-1);
}
.band-topics > ul > li:first-child { grid-column: 1; margin-top: 54px; padding-right: 34px; }
.band-topics > ul > li:last-child { grid-column: 3; padding-left: 34px; background: var(--surface-2); }
.band-topics li > a:first-child { display: block; margin-bottom: 16px; font: 500 40px/1.2 var(--serif); }
.band-topics li > a:first-child::after { content: ""; }
.band-topics li { color: var(--ink-soft); }
.band-topics li a { color: var(--ink); }
.topic-doctor {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 65px;
  width: min(330px, 25vw);
  height: 590px;
  overflow: hidden;
  transform: translateX(-50%);
}
.topic-doctor svg, .topic-doctor-fallback { width: 100%; height: 100%; object-fit: contain; object-position: 50% 0; }
.topic-doctor svg { display: block; }
.topic-doctor.is-ready .topic-doctor-fallback { display: none; }
.topic-doctor::after { position: absolute; inset: auto 8% -2px; height: 76px; background: linear-gradient(0deg, var(--bg), transparent); content: ""; }

.band-articles { padding: 124px max(64px, calc((100vw - 1248px) / 2)); background: var(--surface); }
.band-articles > h2 { margin-bottom: 56px; }
.article-list { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.article-list > li {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 6px 30px;
  min-height: 142px;
  align-content: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.article-head { grid-column: 2; font: 500 clamp(23px, 2vw, 29px)/1.4 var(--serif); }
.article-title { text-decoration: underline; text-decoration-color: transparent; text-underline-offset: 5px; transition: text-decoration-color 180ms ease; }
.article-title:hover { text-decoration-color: currentColor; }
.article-meta { grid-column: 1; grid-row: 1 / span 2; color: var(--ink-soft); font-size: 13px; letter-spacing: .05em; }
.article-summary { grid-column: 2; color: var(--ink-soft); font-size: 15px; }
.tag-new { margin-left: 10px; color: #785b32; font: 700 10px/1 var(--sans); letter-spacing: .08em; }
.band-articles > p:last-child { margin: 42px 0 0; text-align: right; }

.band-locations {
  min-height: 670px;
  padding: 128px max(64px, calc((100vw - 1312px) / 2)) 56px;
  overflow: clip;
  isolation: isolate;
  color: var(--campaign-text);
  text-align: center;
  background: var(--campaign);
}
.band-locations::before, .band-locations::after { position: absolute; z-index: -2; inset: 0; content: ""; }
.band-locations::before {
  background: url("/assets/locations-doctor.png") 50% 43% / cover no-repeat;
  filter: saturate(.68) contrast(1.08) brightness(.66);
  transform: scale(1.01);
}
.band-locations::after {
  z-index: -1;
  background: linear-gradient(180deg, rgb(37 39 42 / 8%), rgb(37 39 42 / 28%) 38%, rgb(37 39 42 / 91%));
}
.band-locations > h2 { margin-bottom: 28px; }
.location-brief { display: grid; grid-template-columns: 1fr 1fr; width: min(780px, calc(100% - 80px)); margin: 0 auto; padding: 0; list-style: none; }
.location-brief li { padding: 0 38px; }
.location-brief li + li { border-left: 1px solid var(--line-on-dark); }
.location-brief strong { display: block; font: 500 18px/1.55 var(--serif); }
.location-brief span { display: block; margin-top: 4px; color: var(--accent-on-dark); font-size: 13px; }
.band-locations > p { margin: 28px 0 0; }
.band-locations > p > a { min-width: 188px; padding: 12px 20px; border: 1px solid rgb(242 240 236 / 70%); color: var(--campaign-text); }
.band-locations .note {
  max-width: 660px;
  margin: 22px auto 0;
  padding: 0;
  border: 0;
  color: var(--accent-on-dark);
  background: transparent;
  font-size: 12px;
}

/* Inner pages */
.doc-window { width: min(calc(100% - 128px), 1120px); margin: 0 auto; }
.doc-window-body { padding: 104px 0 128px; }
.doc-window-title { display: none; }
.page-layout, .reading-article { width: min(100%, 790px); margin: 0 auto; }
.page-head { margin-bottom: 64px; }
.page-head h1 { margin: 0; font: 500 clamp(48px, 6vw, 72px)/1.15 var(--serif); letter-spacing: .015em; }
.page-lead { max-width: 620px; margin: 22px 0 0; color: var(--ink-soft); font-size: 18px; }
.plain-backlinks, .breadcrumb { margin: 0 0 36px; color: var(--ink-soft); font-size: 13px; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.breadcrumb li + li::before { margin-right: 8px; content: "/"; }
.plain-backlinks a, .breadcrumb a, .page-content a, .article-body a, .article-author a, .related-articles a {
  color: #365a77;
  text-decoration: underline;
  text-decoration-thickness: .06em;
  text-underline-offset: .18em;
}
.page-content > h2, .article-body > h2 { margin: 70px 0 20px; font: 500 clamp(30px, 4vw, 40px)/1.35 var(--serif); }
.page-content > h2:first-child, .article-body > h2:first-child { margin-top: 0; }
.page-content h3, .article-body h3 { margin: 48px 0 16px; font: 600 22px/1.45 var(--serif); }
.page-content p, .article-body p { margin: 0 0 1.35em; }
.page-content ul, .page-content ol, .article-body ul, .article-body ol { margin: 0 0 1.7em; padding-left: 1.35em; }
.page-content li + li, .article-body li + li { margin-top: .45em; }
.page-content hr, .article-body hr { margin: 64px 0; border: 0; border-top: 1px solid var(--line); }
.note { padding: 18px 22px; border-left: 3px solid var(--accent); background: var(--surface-1); color: var(--ink-soft); }
.note > :last-child { margin-bottom: 0; }
.portrait-standing { float: right; width: 240px; margin: 0 0 48px 64px; }
.portrait-standing img { width: 100%; height: auto; filter: saturate(.72) contrast(.98); }
.portrait-standing figcaption { margin-top: 8px; color: var(--ink-soft); font-size: 12px; }
.page-about .page-content::after { display: table; clear: both; content: ""; }

.article-headline { padding-bottom: 36px; border-bottom: 1px solid var(--line); }
.article-headline h1 { font-size: clamp(42px, 5.4vw, 66px); }
.article-lead { max-width: 690px; margin: 24px 0 0; color: var(--ink-soft); font-size: 18px; line-height: 1.75; }
.article-author { display: flex; flex-wrap: wrap; gap: 6px 16px; align-items: baseline; margin-top: 28px; }
.article-byline, .article-credentials, .article-dates { margin: 0; color: var(--ink-soft); font-size: 13px; }
.article-byline a { color: var(--ink); font-weight: 600; }
.article-credentials { display: flex; flex-wrap: wrap; gap: 6px 16px; }
.article-credentials span + span::before { margin-right: 16px; color: var(--line-strong); content: "／"; }
.article-dates { display: flex; flex-wrap: wrap; gap: 8px 24px; margin-top: 9px; }
.article-taxonomy { display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px 22px; margin-top: 15px; }
.article-category { color: var(--accent); font-size: 13px; font-weight: 600; text-decoration: underline; text-underline-offset: 4px; }
.article-tags { display: flex; flex-wrap: wrap; gap: 4px 8px; margin: 0; padding: 0; color: var(--ink-soft); list-style: none; }
.article-tags li { font-size: 12px; letter-spacing: .02em; }
.article-tags li + li::before { margin-right: 8px; color: var(--line-strong); content: "／"; }
.article-body { font-family: var(--serif); font-size: 18px; line-height: 1.95; }
.article-body h2, .article-body h3 { color: #25292d; }
.article-body h2[id^="參考資料"], .article-body h3[id^="參考資料"] {
  margin-top: 54px;
  padding-top: 22px;
  border-top: 1px solid var(--line-strong);
  color: var(--accent);
  font: 700 14px/1.4 var(--sans);
  letter-spacing: .12em;
}
.article-body h3[id^="參考資料"] + p { font-size: 15px; }
.article-body .cite { color: #765b34; font: 700 .75em/1 var(--sans); }
.related-articles { margin-top: 80px; padding-top: 32px; border-top: 1px solid var(--line); }
.related-articles h2 { margin: 0 0 20px; font: 600 16px/1.4 var(--sans); letter-spacing: .08em; }
.related-articles ul { margin: 0; padding: 0; list-style: none; }
.related-articles li { display: grid; grid-template-columns: minmax(220px, .8fr) minmax(0, 1.2fr); gap: 24px; padding: 19px 0; border-bottom: 1px solid var(--line); }
.related-articles li > a { align-self: start; color: var(--ink); font: 500 19px/1.5 var(--serif); }
.related-articles li > p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.7; }
.reading-article > .plain-backlinks { margin: 80px 0 0; padding-top: 28px; border-top: 1px solid var(--line); }

.page-articles .page-layout, .page-sitemap .page-layout { width: min(100%, 980px); }
.page-articles .article-group + .article-group { margin-top: 96px; }
.page-articles .group-title { margin-top: 72px; margin-bottom: 16px; }
.page-articles .group-description { max-width: 760px; margin: 0 0 34px; color: var(--ink-soft); }
.page-articles .article-list > li { grid-template-columns: 120px minmax(0, 1fr); }
.page-articles .article-list .article-tags { grid-column: 2; margin-top: 4px; }
.human-sitemap h2 { margin-top: 58px; }
.human-sitemap ul { margin: 0; padding: 0; list-style: none; }
.human-sitemap li { display: grid; grid-template-columns: minmax(180px, .45fr) 1fr; gap: 24px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.human-sitemap li span { color: var(--ink-soft); font-size: 14px; }

.site-footer { border-top: 1px solid var(--line); background: var(--surface-1); }
.footer-inner { padding-block: 52px 44px; }
.footer-main, .footer-meta { display: flex; align-items: baseline; justify-content: space-between; gap: 32px; }
.footer-name { margin: 0; font-size: 20px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px 26px; }
.footer-links a { font-size: 13px; font-weight: 500; }
.footer-links a:hover { text-decoration: underline; text-underline-offset: 4px; }
.footer-meta { margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: 12px; }

@media (min-width: 768px) and (max-width: 1199px) {
  :root { --nav-height: 64px; }
  body { font-size: 16px; }
  .shell-wide, .doc-window { width: calc(100% - 80px); }
  .hero { min-height: 680px; }
  .hero-copy { width: 390px; padding-top: 92px; margin-left: 44px; }
  .hero h1 { font-size: 72px; }
  .hero-visual { width: 59%; }
  .hero-visual img { object-position: 48% 24%; transform: scale(1.15); }
  .band-topics { min-height: 900px; padding: 132px 40px 100px; }
  .band-topics > h2, .band-topics > p { margin-left: 8px; }
  .band-topics > ul { grid-template-columns: minmax(0, 1fr) 250px minmax(0, .9fr); min-height: 470px; }
  .band-topics > ul > li { min-height: 390px; padding: 46px 28px; }
  .band-topics li > a:first-child { font-size: 34px; }
  .topic-doctor { bottom: 58px; width: 250px; height: 520px; }
  .band-articles { padding: 100px 46px; }
  .band-locations { padding-inline: 40px; }
}

@media (max-width: 767px) {
  :root { --nav-height: 60px; }
  body { font-size: 16px; }
  .shell-wide, .doc-window { width: calc(100% - 40px); }
  .site-header { height: var(--nav-height); }
  .nav-links { display: none; }
  .brand { font-size: 17px; }
  .menu-toggle { display: inline-grid; min-width: 52px; min-height: 44px; padding: 0; border: 0; background: transparent; place-items: center; font-size: 13px; letter-spacing: .08em; cursor: pointer; }
  .mobile-menu {
    position: absolute;
    z-index: 100;
    top: var(--nav-height);
    right: 0;
    left: 0;
    display: grid;
    padding: 8px 20px;
    border-block: 1px solid var(--line);
    background: var(--bg);
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu.is-open { opacity: 1; transform: none; }
  .mobile-menu > li + li { border-top: 1px solid var(--line); }
  .mobile-menu a { display: flex; min-height: 52px; align-items: center; font-size: 14px; font-weight: 500; }
  .mobile-menu .nav-submenu {
    position: static;
    width: auto;
    padding: 0 0 8px 18px;
    border: 0;
    background: transparent;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
  .mobile-menu .nav-submenu a { min-height: 44px; padding: 0; color: var(--ink-soft); font-size: 13px; }
  .mobile-menu .nav-submenu a:hover, .mobile-menu .nav-submenu a:focus-visible { color: var(--ink); background: transparent; }
  .hero { display: flex; min-height: 760px; flex-direction: column; background: var(--bg); }
  .hero-copy { width: calc(100% - 40px); padding-top: 42px; margin-left: 20px; }
  .hero h1 { font-size: clamp(50px, 15vw, 62px); }
  .latin-name { margin-top: 12px; font-size: 12px; }
  .hero-specialty { margin-top: 18px; font-size: 13px; }
  .roles { margin-top: 5px; font-size: 14px; line-height: 1.55; }
  .text-link { margin-top: 16px; }
  .hero-visual { position: relative; width: 100%; min-height: 430px; margin-top: 18px; flex: 1; mask-image: linear-gradient(180deg, transparent 0, #000 14%); }
  .hero-visual::after { background: linear-gradient(180deg, var(--bg), transparent 20%); }
  .hero-visual img { object-position: 50% 24%; transform: scale(1.34); }
  .band > h2 { font-size: 40px; }
  .band-topics { min-height: 0; padding: 88px 20px 94px; overflow: visible; }
  .band-topics > h2, .band-topics > p { margin-left: 0; }
  .band-topics > ul { display: flex; min-height: 0; flex-direction: column; margin-top: 34px; }
  .band-topics > ul > li, .band-topics > ul > li:first-child, .band-topics > ul > li:last-child { min-height: 250px; margin: 0; padding: 30px; }
  .band-topics > ul > li + li { margin-top: 14px; }
  .band-topics li > a:first-child { font-size: 32px; }
  .topic-doctor { display: none; }
  .band-articles { padding: 88px 20px 92px; }
  .band-articles > h2 { margin-bottom: 38px; }
  .article-list > li, .page-articles .article-list > li { display: block; min-height: 0; padding: 26px 0; }
  .article-head, .article-meta, .article-summary { display: block; }
  .article-head { margin-top: 10px; font-size: 24px; }
  .article-summary { margin-top: 10px; font-size: 14px; }
  .page-articles .article-list .article-tags { margin-top: 12px; }
  .band-locations { min-height: 720px; padding: 116px 20px 40px; }
  .band-locations::before { background-position: 50% 44%; }
  .location-brief { display: flex; width: 100%; flex-direction: column; }
  .location-brief li { padding: 0; }
  .location-brief li + li { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line-on-dark); border-left: 0; }
  .doc-window-body { padding: 72px 0 96px; }
  .page-head { margin-bottom: 46px; }
  .page-head h1 { font-size: 45px; }
  .page-lead { font-size: 16px; }
  .portrait-standing { float: none; width: min(72vw, 280px); margin: 0 0 46px; }
  .article-headline h1 { font-size: 38px; }
  .article-lead { font-size: 16px; }
  .article-author { display: block; }
  .article-credentials { margin-top: 8px; }
  .article-body { font-size: 17px; line-height: 1.9; }
  .page-content > h2, .article-body > h2 { margin-top: 58px; font-size: 30px; }
  .related-articles li { display: block; }
  .related-articles li > p { margin-top: 8px; }
  .human-sitemap li { display: block; }
  .human-sitemap li span { display: block; margin-top: 6px; }
  .footer-main, .footer-meta { flex-direction: column; align-items: flex-start; gap: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
  .hero-copy, .hero-visual { opacity: 1; transform: none; }
}

@media print {
  .site-header, .preview-bar, .hero-visual, .topic-doctor, .site-footer { display: none !important; }
  .doc-window { width: 100%; }
  .doc-window-body { padding: 0; }
  .hero, .band, .band-locations { min-height: auto; padding: 24px 0; color: #111; background: #fff; }
}
