:root {
  --paper: #f7f3ea;
  --paper-soft: #fffaf1;
  --ink: #202226;
  --muted: #6f6b63;
  --line: #d8cdbb;
  --cyan: #67d2e5;
  --pink: #d4a0aa;
  --mauve: #b58b99;
  --gold: #f1cc78;
  --wood: #d8b98e;
  --speaker-nova: #303848;
  --speaker-stella: #b85f78;
  --speaker-yuna: #7650a0;
  --speaker-mira: #946477;
  --speaker-iris: #0a8fab;
  --speaker-sol: #9a6a21;
  --shadow: 0 24px 70px rgba(62, 49, 35, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.is-lightbox-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.masthead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(22px, 5vw, 76px) 22px;
  background: var(--paper-soft);
  border-bottom: 1px solid var(--line);
}

.kicker,
.issue,
.section-label,
.toc-label {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(46px, 8vw, 118px);
  line-height: 0.88;
}

h2 {
  font-size: clamp(28px, 4vw, 58px);
  line-height: 1.15;
}

.lead {
  max-width: 560px;
  margin: 18px 0 0;
  font-size: clamp(17px, 2vw, 24px);
  line-height: 1.65;
}

.masthead-actions {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.masthead-actions a,
.print-button,
.language-toggle button {
  flex: 0 0 auto;
  min-width: 116px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  padding: 11px 16px;
  font: inherit;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.masthead-actions a:hover,
.print-button:hover,
.language-toggle button:hover,
.language-toggle button.is-active {
  background: var(--ink);
  color: var(--paper-soft);
}

.language-toggle {
  display: flex;
  flex: 0 0 auto;
}

.language-toggle button {
  min-width: 46px;
  border-left-width: 0;
}

.language-toggle button:first-child {
  border-left-width: 1px;
}

html[data-lang="en"] h2 {
  font-size: clamp(26px, 3.4vw, 50px);
}

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: 100%;
  height: 3px;
  background: transparent;
  pointer-events: none;
}

.reading-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--pink));
}

.chapter-rail {
  position: fixed;
  top: 50%;
  right: 18px;
  z-index: 50;
  display: grid;
  gap: 8px;
  transform: translateY(-50%);
}

.chapter-rail a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(32, 34, 38, 0.3);
  background: rgba(255, 250, 241, 0.82);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  backdrop-filter: blur(8px);
}

.chapter-rail a:hover,
.chapter-rail a.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper-soft);
}

.chapter-rail a:focus-visible,
.release-controls button:focus-visible,
.lightbox-close:focus-visible,
[role="button"]:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

main {
  max-width: 1640px;
  margin: 0 auto;
  background: var(--paper-soft);
  box-shadow: var(--shadow);
}

.hero-spread {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 0;
  border-bottom: 1px solid var(--line);
}

.hero-photo {
  grid-column: 1 / -1;
  height: min(48vw, 650px);
  margin: 0;
  border-bottom: 1px solid var(--line);
}

.toc {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: stretch;
  gap: 0;
  padding: 0;
  border-bottom: 1px solid var(--line);
}

.toc .toc-label {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0 20px;
  border-right: 1px solid var(--line);
  white-space: nowrap;
}

.toc ol {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.toc li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  min-height: 58px;
  padding: 10px 14px;
  border-right: 1px solid var(--line);
  align-content: center;
}

.toc li:last-child {
  border-right: 0;
}

.toc span {
  color: var(--cyan);
  font-size: 14px;
  font-weight: 800;
}

.toc strong,
.toc small {
  display: block;
}

.toc strong {
  margin-bottom: 2px;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.toc small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.35;
}

.opening-copy {
  grid-column: 1 / -1;
  align-self: center;
  max-width: 920px;
  padding: 46px clamp(36px, 6vw, 94px) 58px;
}

.opening-copy p:not(.issue),
.story p,
.chapter-spread p,
.body-memory p,
.finale p {
  font-size: 15px;
  line-height: 2.05;
}

.quote-band {
  display: grid;
  place-items: center;
  min-height: 330px;
  padding: 54px 28px;
  background:
    radial-gradient(circle at 16% 22%, rgba(103, 210, 229, 0.2), transparent 24%),
    radial-gradient(circle at 82% 58%, rgba(212, 160, 170, 0.22), transparent 24%),
    var(--paper-soft);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.quote-band p {
  max-width: 780px;
  margin: 0;
  font-family: Georgia, "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1.35;
}

.quote-band span {
  display: block;
  margin-top: 22px;
  color: var(--pink);
  font-size: 13px;
  letter-spacing: 0.34em;
}

.article-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(42px, 7vw, 96px);
  border-bottom: 1px solid var(--line);
}

.article-grid.reverse {
  grid-template-columns: minmax(280px, 0.85fr) minmax(300px, 1fr);
}

.story {
  max-width: 720px;
}

.story.narrow {
  align-self: end;
}

.story h2,
.era-strip h2,
.chapter-spread h2,
.body-memory h2,
.finale h2,
.producer-file h2,
.director-file h2,
.member-file h2,
.archive h2 {
  margin-bottom: 24px;
}

.dialogue {
  display: grid;
  gap: 16px;
  margin: 32px 0;
  padding-left: 22px;
  border-left: 2px solid var(--pink);
}

.dialogue.compact {
  gap: 10px;
  margin: 22px 0;
}

.dialogue p {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  column-gap: 18px;
  align-items: start;
  margin: 0;
}

.dialogue b {
  display: block;
  min-width: 0;
  color: var(--cyan);
  font-size: 12px;
  letter-spacing: 0.14em;
  line-height: 2.05;
}

figure {
  margin: 0;
}

figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.feature-photo {
  min-height: 560px;
}

.detail-photo {
  min-height: 360px;
}

.archive-key-visual {
  min-height: auto;
}

.archive-key-visual img {
  aspect-ratio: 1 / 1;
  height: auto;
  background: #111018;
  object-fit: contain;
}

.archive-wide-visual {
  min-height: auto;
}

.archive-wide-visual img {
  aspect-ratio: 16 / 9;
  height: auto;
  background: #f4efe5;
  object-fit: contain;
}

.feature-photo img,
.detail-photo img,
.chapter-spread img,
.body-memory img,
.finale img {
  border: 1px solid rgba(216, 205, 187, 0.78);
}

.chapter-spread,
.era-strip,
.body-memory,
.finale,
.producer-file,
.director-file,
.member-file,
.archive,
.full-interview {
  display: grid;
  gap: clamp(30px, 5vw, 76px);
  padding: clamp(42px, 7vw, 96px);
  border-bottom: 1px solid var(--line);
}

.chapter-spread {
  grid-template-columns: minmax(320px, 0.78fr) minmax(340px, 1fr);
  align-items: center;
}

.era-strip {
  display: block;
  background: #f9f4eb;
}

.era-header {
  max-width: 920px;
  margin-bottom: 34px;
}

.era-header p:not(.section-label) {
  max-width: 720px;
  margin: 0;
  color: #3a3936;
  font-size: 14px;
  line-height: 2;
}

.era-header h2 span {
  display: inline;
}

.era-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 22px;
  align-items: start;
}

.era-gallery figure {
  min-width: 0;
}

.era-scene-stack {
  display: grid;
  gap: 10px;
}

.era-scene-stack img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 1px solid rgba(216, 205, 187, 0.78);
  background: #111018;
  object-fit: contain;
}

.body-memory {
  grid-template-columns: minmax(300px, 0.74fr) minmax(340px, 1fr);
  align-items: center;
  background: #f4efe5;
}

.finale {
  grid-template-columns: minmax(340px, 0.86fr) minmax(320px, 1fr);
  align-items: center;
  background: var(--paper-soft);
}

.chapter-spread figure,
.body-memory figure,
.finale figure {
  align-self: center;
}

.chapter-spread figure img,
.body-memory figure img,
.finale figure img {
  aspect-ratio: 4 / 3;
  height: auto;
  max-height: 520px;
  object-fit: cover;
}

.producer-file {
  grid-template-columns: minmax(260px, 0.7fr) minmax(340px, 1fr);
  background: #f3eadc;
}

.producer-file article {
  max-width: 820px;
}

.producer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.producer-tags li {
  border: 1px solid rgba(32, 34, 38, 0.36);
  padding: 8px 11px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.director-file {
  grid-template-columns: minmax(340px, 0.82fr) minmax(340px, 1fr);
  align-items: center;
  background: #fbf6ed;
}

.director-file figure {
  min-height: 520px;
}

.director-file figure img {
  border: 1px solid rgba(216, 205, 187, 0.78);
}

.director-file article {
  max-width: 820px;
}

.member-file,
.archive,
.full-interview {
  display: block;
}

.member-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  border: 1px solid var(--line);
  background: var(--line);
}

.member-grid article {
  grid-column: span 2;
  min-height: 430px;
  padding: 22px;
  background: var(--paper-soft);
}

.member-group-shot {
  grid-column: span 2;
  height: auto;
  min-height: 0;
  max-height: none;
  display: block;
  padding: 22px;
  overflow: visible;
  background: var(--paper-soft);
}

.member-grid img,
.member-group-shot img {
  aspect-ratio: 1 / 1;
  height: auto;
  margin: 16px 0 18px;
  border: 1px solid rgba(216, 205, 187, 0.9);
  object-fit: cover;
}

.member-group-shot img {
  display: block;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 0;
  margin: 16px 0 18px;
  border: 1px solid rgba(216, 205, 187, 0.9);
  background: #d8cfbd;
  object-fit: cover;
  object-position: center 20%;
}

.member-group-shot figcaption {
  margin: 0;
  padding: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.member-grid span,
.release-card span {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.member-grid h3,
.release-card h3 {
  margin: 14px 0 12px;
  font-family: Georgia, "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.15;
}

.member-grid p,
.release-card p,
.producer-file article > p:not(.section-label),
.director-file article > p:not(.section-label) {
  margin: 0 0 18px;
  color: #3a3936;
  font-size: 14px;
  line-height: 1.9;
}

.release-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(200px, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.release-controls {
  display: none;
  justify-content: flex-end;
  gap: 8px;
  margin-top: -10px;
}

.release-controls button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(32, 34, 38, 0.42);
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.release-controls button:hover {
  background: var(--ink);
  color: var(--paper-soft);
}

.release-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line);
  background: var(--paper-soft);
}

.release-card > img,
.cover-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  border-bottom: 1px solid var(--line);
}

.release-card > img {
  padding: 14px;
  background: #f4eee3;
  object-fit: contain;
}

.release-card > div:not(.cover-placeholder) {
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.release-card > div:not(.cover-placeholder) p {
  margin-bottom: auto;
}

.cover-placeholder {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 25% 20%, rgba(103, 210, 229, 0.34), transparent 26%),
    radial-gradient(circle at 76% 72%, rgba(212, 160, 170, 0.3), transparent 30%),
    #efe5d6;
  color: var(--ink);
  font-family: Georgia, "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 24px;
  letter-spacing: 0.05em;
}

.cover-placeholder.after {
  background:
    radial-gradient(circle at 25% 70%, rgba(181, 139, 153, 0.34), transparent 26%),
    radial-gradient(circle at 76% 26%, rgba(241, 204, 120, 0.3), transparent 30%),
    #f4eee3;
}

.release-card a {
  display: inline-block;
  margin: 10px 8px 0 0;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.release-card a:hover {
  color: #0a8fab;
  border-color: #0a8fab;
}

.release-note {
  display: inline-block;
  margin-top: 10px;
  border-bottom: 1px solid rgba(32, 34, 38, 0.28);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-photo img,
.detail-photo img,
.chapter-spread figure img,
.body-memory figure img,
.finale figure img,
.director-file figure img,
.member-grid img,
.era-scene-stack img,
.hero-photo img {
  cursor: zoom-in;
}

.full-interview details {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.full-interview summary {
  display: grid;
  grid-template-columns: minmax(160px, 0.32fr) 1fr;
  gap: 24px;
  padding: 28px 0;
  cursor: pointer;
}

.full-interview summary span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.full-interview summary strong {
  font-family: Georgia, "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(26px, 4vw, 52px);
  font-weight: 400;
}

.full-interview details::details-content {
  opacity: 0;
  block-size: 0;
  overflow: hidden;
  transition:
    block-size 280ms ease,
    opacity 220ms ease;
  transition-behavior: allow-discrete;
}

.full-interview details[open]::details-content {
  opacity: 1;
  block-size: auto;
}

.transcript {
  max-width: 900px;
  padding: 26px 0 52px;
  columns: 2 360px;
  column-gap: 52px;
}

.transcript h2 {
  column-span: all;
  margin: 0 0 28px;
}

.transcript p {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  column-gap: 14px;
  align-items: start;
  break-inside: avoid;
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.85;
}

.transcript b {
  display: block;
  color: var(--cyan);
  font-size: 12px;
  letter-spacing: 0.12em;
  line-height: 1.85;
}

.dialogue b.speaker-nova,
.transcript b.speaker-nova {
  color: var(--speaker-nova);
}

.dialogue b.speaker-stella,
.transcript b.speaker-stella {
  color: var(--speaker-stella);
}

.dialogue b.speaker-yuna,
.transcript b.speaker-yuna {
  color: var(--speaker-yuna);
}

.dialogue b.speaker-mira,
.transcript b.speaker-mira {
  color: var(--speaker-mira);
}

.dialogue b.speaker-iris,
.transcript b.speaker-iris {
  color: var(--speaker-iris);
}

.dialogue b.speaker-sol,
.transcript b.speaker-sol {
  color: var(--speaker-sol);
}

blockquote {
  margin: 34px 0;
  padding: 4px 0 4px 28px;
  border-left: 3px solid var(--gold);
  color: #343236;
  font-family: Georgia, "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.65;
}

.director-comment {
  margin: 26px 0 28px;
  padding: 18px 0 18px 24px;
  border-left-color: var(--cyan);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif;
}

.director-comment p {
  margin: 0;
  font-size: 14px;
  line-height: 1.95;
}

.director-comment cite {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 56px);
  background: rgba(20, 18, 16, 0.86);
}

.lightbox[hidden] {
  display: none;
}

.lightbox figure {
  display: grid;
  gap: 12px;
  width: min(1120px, 100%);
  max-height: 90vh;
}

.lightbox img {
  width: 100%;
  height: auto;
  max-height: 82vh;
  border: 1px solid rgba(255, 250, 241, 0.35);
  object-fit: contain;
}

.lightbox figcaption {
  margin: 0;
  color: rgba(255, 250, 241, 0.82);
  font-size: 13px;
  line-height: 1.7;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 250, 241, 0.48);
  background: rgba(20, 18, 16, 0.35);
  color: var(--paper-soft);
  font: inherit;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 980px) {
  .masthead {
    align-items: flex-start;
    flex-direction: column;
  }

  .masthead-actions {
    justify-content: flex-start;
  }

  .hero-spread,
  .article-grid,
  .article-grid.reverse,
  .chapter-spread,
  .era-strip,
  .body-memory,
  .finale,
  .producer-file,
  .director-file {
    grid-template-columns: 1fr;
  }

  .era-gallery {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

  .release-grid {
    display: grid;
    grid-auto-columns: minmax(260px, 38vw);
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 14px;
    padding-bottom: 14px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .release-controls {
    display: flex;
  }

  .release-card {
    scroll-snap-align: start;
  }

  .release-grid::-webkit-scrollbar {
    height: 6px;
  }

  .release-grid::-webkit-scrollbar-track {
    background: rgba(216, 205, 187, 0.45);
  }

  .release-grid::-webkit-scrollbar-thumb {
    background: rgba(32, 34, 38, 0.34);
  }

  .member-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .member-grid article,
  .member-grid article:nth-child(4),
  .member-group-shot {
    grid-column: auto;
  }

  .hero-photo,
  .opening-copy {
    grid-column: auto;
  }

  .toc {
    display: block;
    padding: 10px 0 12px;
    border-bottom: 1px solid var(--line);
  }

  .toc .toc-label {
    display: block;
    margin: 0 0 8px;
    padding: 0 24px;
    border-right: 0;
  }

  .toc ol {
    display: flex;
    gap: 8px;
    padding: 0 24px 2px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .toc ol::-webkit-scrollbar {
    display: none;
  }

  .toc li {
    flex: 0 0 156px;
    min-height: 54px;
    border: 1px solid rgba(216, 205, 187, 0.88);
    background: rgba(255, 250, 241, 0.62);
    scroll-snap-align: start;
  }

  .hero-photo {
    height: 62vw;
    min-height: 360px;
  }

  .feature-photo,
  .detail-photo,
  .director-file figure {
    min-height: 320px;
  }
}

@media (max-width: 620px) {
  .masthead-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .masthead-actions a,
  .print-button,
  .language-toggle {
    width: 100%;
    min-width: 0;
  }

  .masthead-actions a,
  .print-button,
  .language-toggle button {
    padding: 10px 8px;
    font-size: 11px;
    letter-spacing: 0.06em;
  }

  .print-button {
    grid-column: 1 / 2;
  }

  .language-toggle button {
    flex: 1 1 0;
  }

  .chapter-rail {
    top: auto;
    right: 50%;
    bottom: 12px;
    display: flex;
    gap: 6px;
    padding: 6px;
    border: 1px solid rgba(32, 34, 38, 0.18);
    background: rgba(255, 250, 241, 0.86);
    transform: translateX(50%);
    backdrop-filter: blur(8px);
  }

  .chapter-rail a {
    width: 30px;
    height: 30px;
    background: transparent;
  }

  .masthead,
  .opening-copy,
    .article-grid,
    .chapter-spread,
    .era-strip,
    .body-memory,
    .finale,
    .producer-file,
    .director-file,
    .member-file,
    .archive,
    .full-interview {
    padding-left: 20px;
    padding-right: 20px;
  }

  .toc .toc-label {
    padding: 0 20px;
  }

  .toc ol {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 0 20px 2px;
    overflow: visible;
    scroll-snap-type: none;
  }

  .toc li {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    min-width: 0;
    min-height: 74px;
    padding: 9px 8px;
    scroll-snap-align: none;
  }

  .toc strong,
  .toc small {
    overflow-wrap: anywhere;
  }

  .toc strong {
    font-size: 11px;
    line-height: 1.25;
  }

  .toc small {
    font-size: 9px;
    line-height: 1.35;
  }

  .member-file {
    padding-left: 12px;
    padding-right: 12px;
    overflow: hidden;
  }

  h1 {
    font-size: 46px;
  }

  .quote-band p {
    font-size: 34px;
  }

  .dialogue {
    padding-left: 16px;
  }

  .dialogue p,
  .transcript p {
    grid-template-columns: 1fr;
    row-gap: 2px;
  }

  .dialogue b,
  .transcript b {
    line-height: 1.5;
  }

  .era-gallery {
    grid-template-columns: 1fr;
  }

  .release-grid {
    grid-auto-columns: minmax(260px, 78vw);
    margin-left: -20px;
    margin-right: -20px;
    padding: 0 20px 14px;
    scroll-padding-left: 20px;
  }

  .member-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: 100%;
    gap: 0;
    overflow: hidden;
  }

  .era-header h2 span {
    display: block;
  }

  .member-grid article,
  .member-group-shot {
    grid-column: auto;
    width: auto;
    max-width: none;
    min-height: 0;
    min-width: 0;
    padding: 10px;
    border: 1px solid var(--line);
  }

  .member-grid img {
    width: 100%;
    max-width: 100%;
  }

  .member-grid h3 {
    font-size: 15px;
    line-height: 1.2;
    overflow-wrap: anywhere;
  }

  .member-grid p {
    font-size: 11px;
    line-height: 1.65;
    overflow-wrap: anywhere;
  }

  .member-grid span,
  .member-group-shot figcaption {
    font-size: 11px;
    overflow-wrap: anywhere;
  }

  .member-group-shot img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center 20%;
  }

  .member-group-shot figcaption {
    font-size: 11px;
    line-height: 1.5;
  }

  .full-interview summary {
    grid-template-columns: 1fr;
  }

  .lightbox {
    padding: 14px;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
  }
}

@media print {
  body,
  main,
  .masthead {
    background: white;
  }

  main {
    box-shadow: none;
  }

  .print-button {
    display: none;
  }

  .chapter-rail,
  .reading-progress,
  .release-controls,
  .lightbox {
    display: none;
  }

  .hero-spread,
  .article-grid,
  .chapter-spread,
  .era-strip,
  .body-memory,
  .finale {
    break-inside: avoid;
  }
}
