@font-face {
    font-family: "NewsreaderFallback";
    src: local("Georgia");
    font-display: swap;
}

:root {
    --bg: #f7f1e8;
    --paper: #fffaf2;
    --ink: #17120d;
    --muted: #6d6258;
    --line: rgba(23, 18, 13, 0.14);
    --accent: #9c2f1b;
    --accent-2: #1f5f68;
    --source: #5d351e;
    --shadow: 0 28px 80px rgba(42, 28, 15, 0.16);
    --serif: "NewsreaderFallback", Georgia, "Times New Roman", serif;
    --sans:
        Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", sans-serif;
    --mono:
        ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
        "Liberation Mono", monospace;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--bg);
}

body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(
            circle at 10% 0%,
            rgba(156, 47, 27, 0.12),
            transparent 28rem
        ),
        radial-gradient(
            circle at 85% 12%,
            rgba(31, 95, 104, 0.13),
            transparent 34rem
        ),
        linear-gradient(180deg, #f4eadc 0%, var(--bg) 36rem);
    font-family: var(--sans);
}

a {
    color: inherit;
    text-underline-offset: 0.18em;
}

.reading-progress {
    position: fixed;
    inset: 0 0 auto 0;
    height: 4px;
    z-index: 20;
    background: rgba(23, 18, 13, 0.08);
}

#progress-bar {
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.chapter,
.case-timeline {
    scroll-margin-top: 5rem;
}

.site-header {
    position: sticky;
    top: 4px;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 1.25rem;
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}

.site-mark {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
}

.site-mark__glyph {
    display: block;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 50%;
    border: 1px solid #131313;
    object-fit: cover;
}

.site-mark__text {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
}

.top-nav {
    display: flex;
    gap: 1.4rem;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--muted);
}

.top-nav a {
    position: relative;
    padding-bottom: 0.15rem;
    text-decoration: none;
    color: inherit;
}

a.top-nav {
    text-decoration: none;
    color: inherit;
}

.top-nav a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: currentColor;
    opacity: 0;
    transform: scaleX(0.6);
    transition: opacity 0.2s, transform 0.2s;
}

.top-nav a:hover,
.top-nav a[aria-current] {
    color: var(--ink);
}

.top-nav a:hover::after,
.top-nav a[aria-current]::after {
    opacity: 1;
    transform: scaleX(1);
}

.hero {
    max-width: 1160px;
    margin: 4rem auto 5rem;
    padding: 0 1.25rem;
}

.hero__eyebrow,
.section-kicker {
    font-size: 0.78rem;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--accent);
    font-weight: 800;
}

.hero h1 {
    max-width: 980px;
    margin: 1rem 0 1.2rem;
    font-family: var(--serif);
    font-size: clamp(4rem, 11vw, 10.8rem);
    line-height: 0.82;
    letter-spacing: -0.075em;
}

.dek {
    max-width: 770px;
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(1.45rem, 2.6vw, 2.55rem);
    line-height: 1.08;
    color: #2a2119;
}

.hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin: 2rem 0;
    color: var(--muted);
    font-size: 0.86rem;
}

.hero__meta span {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.42rem 0.7rem;
    background: rgba(255, 250, 242, 0.45);
}

.hero-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 17rem;
    gap: 1.5rem;
    margin: 3.4rem 0 0;
    padding: 1rem;
    background: rgba(255, 250, 242, 0.72);
    border: 1px solid var(--line);
    border-radius: 2rem;
    box-shadow: var(--shadow);
}

.terminal-art {
    min-height: 24rem;
    border-radius: 1.25rem;
    padding: clamp(1.2rem, 3vw, 2.4rem);
    background: #17120d;
    color: #f5e6d0;
    overflow: hidden;
}

.terminal-art pre {
    margin: 0;
    white-space: pre-wrap;
    font-family: var(--mono);
    font-size: clamp(1rem, 2vw, 1.65rem);
    line-height: 1.45;
}

.hero-card figcaption {
    align-self: end;
    padding: 1rem 0.6rem;
    color: var(--muted);
    font-family: var(--serif);
    font-size: 1.35rem;
    line-height: 1.16;
}

.article-tools {
    position: sticky;
    top: 5.4rem;
    float: left;
    width: max(12rem, calc((100vw - 1050px) / 2 - 1.5rem));
    margin-left: 1.25rem;
    padding-top: 1rem;
}

.article-tools__inner {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    max-width: 13rem;
    color: var(--muted);
    font-size: 0.84rem;
}

.article-tools strong {
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.68rem;
}

.article-tools a {
    text-decoration: none;
    line-height: 1.25;
}

.article-tools a:hover,
.article-tools a[aria-current] {
    color: var(--accent);
}

.article {
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 1.25rem 7rem;
}

.chapter {
    margin: 6rem 0;
}

.chapter h2 {
    max-width: 720px;
    margin: 0.6rem 0 1.4rem;
    font-family: var(--serif);
    font-size: clamp(2.4rem, 6vw, 5.2rem);
    line-height: 0.92;
    letter-spacing: -0.055em;
}

.chapter h3 {
    max-width: 720px;
    margin: 2.4rem 0 0.8rem;
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 0.94;
    letter-spacing: -0.045em;
}

.subsection-break {
    max-width: 720px;
    margin: 3rem 0 0.8rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--line);
}

.subsection-break h3 {
    margin: 0;
    font-family: var(--sans);
    font-size: clamp(1.05rem, 1.7vw, 1.22rem);
    line-height: 1.25;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 800;
}

.text-row {
    display: grid;
    grid-template-columns: minmax(0, 720px) minmax(180px, 250px);
    gap: 2rem;
    align-items: start;
}

.text-row:not(.has-sources) {
    grid-template-columns: minmax(0, 720px);
}

.copy p {
    font-family: var(--serif);
    font-size: clamp(1.2rem, 2vw, 1.47rem);
    line-height: 1.58;
    margin: 1.15rem 0;
}

.copy p:first-child {
    margin-top: 0;
}

.chapter--opening .text-row:first-of-type .copy p {
    font-size: clamp(1.45rem, 2.5vw, 1.95rem);
    line-height: 1.32;
    color: #241b14;
}

.copy code {
    font-family: var(--mono);
    font-size: 0.82em;
    background: rgba(23, 18, 13, 0.08);
    padding: 0.08em 0.25em;
    border-radius: 0.25em;
}

.source-ref {
    font-family: var(--sans);
    font-size: 0.55em;
    vertical-align: super;
    line-height: 0;
    margin-left: 0.18em;
}

.source-ref a {
    display: inline-grid;
    place-items: center;
    min-width: 1.3em;
    height: 1.3em;
    border-radius: 999px;
    color: var(--paper);
    background: var(--source);
    text-decoration: none;
    font-weight: 700;
}

.marginalia {
    position: sticky;
    top: 6.3rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    padding-top: 0.12rem;
}

.source-note {
    display: grid;
    grid-template-columns: 1.35rem 1fr;
    gap: 0.45rem;
    align-items: start;
    padding: 0.55rem 0.6rem;
    border: 1px solid rgba(93, 53, 30, 0.18);
    border-radius: 0.8rem;
    color: var(--source);
    background: rgba(255, 250, 242, 0.58);
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(42, 28, 15, 0.06);
}

.source-note:hover {
    border-color: rgba(93, 53, 30, 0.45);
    background: rgba(255, 250, 242, 0.9);
}

.media-reference-row {
    margin: 1.5rem 0 2.2rem;
}

.media-references {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 1rem;
    background: rgba(255, 250, 242, 0.58);
    box-shadow: 0 14px 42px rgba(42, 28, 15, 0.08);
}

.media-references__title {
    grid-column: 1 / -1;
    color: var(--ink);
    font-size: 0.68rem;
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.media-reference {
    display: grid;
    gap: 0.45rem;
    padding: 0.45rem;
    border: 1px solid rgba(93, 53, 30, 0.18);
    border-radius: 0.75rem;
    color: var(--source);
    background: rgba(255, 250, 242, 0.58);
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(42, 28, 15, 0.06);
}

.media-reference:hover {
    border-color: rgba(93, 53, 30, 0.45);
    background: rgba(255, 250, 242, 0.9);
}

.media-reference img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 0.45rem;
    background: rgba(23, 18, 13, 0.08);
}

.media-reference span {
    font-size: 0.78rem;
    line-height: 1.2;
    font-weight: 800;
}

.source-note__num {
    display: grid;
    place-items: center;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 999px;
    color: var(--paper);
    background: var(--source);
    font-family: var(--mono);
    font-size: 0.68rem;
}

.source-note__label {
    font-size: 0.78rem;
    line-height: 1.22;
    font-weight: 700;
}

.pullquote {
    max-width: 950px;
    margin: 3.4rem 0;
    padding: 2.4rem 0;
    border-block: 1px solid var(--line);
}

.pullquote p {
    max-width: 850px;
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    color: var(--accent);
}

.case-timeline {
    max-width: 1000px;
    margin: 4rem 0;
    padding: 2rem;
    border: 1px solid var(--line);
    border-radius: 1.25rem;
    background: rgba(255, 250, 242, 0.56);
    box-shadow: 0 18px 58px rgba(42, 28, 15, 0.09);
}

.case-timeline__header {
    max-width: 720px;
    margin-bottom: 2.2rem;
}

.case-timeline__header h3 {
    margin-top: 0.55rem;
}

.case-timeline__rail {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
}

.case-timeline__rail::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0.52rem;
    width: 2px;
    background: linear-gradient(
        180deg,
        rgba(156, 47, 27, 0.35),
        rgba(31, 95, 104, 0.4)
    );
}

.timeline-event {
    position: relative;
    min-width: 0;
}

.timeline-event summary {
    position: relative;
    display: grid;
    grid-template-columns: 1.1rem minmax(6.2rem, 8rem) minmax(0, 1fr);
    align-items: center;
    column-gap: 0.8rem;
    min-height: 4rem;
    padding: 0;
    cursor: pointer;
    list-style: none;
}

.timeline-event summary::-webkit-details-marker {
    display: none;
}

.timeline-event__year {
    grid-column: 2;
    font-family: var(--mono);
    font-size: 0.74rem;
    font-weight: 800;
    line-height: 1;
    color: var(--accent-2);
}

.timeline-event__dot {
    grid-column: 1;
    grid-row: 1;
    position: relative;
    z-index: 1;
    display: block;
    width: 1.05rem;
    height: 1.05rem;
    border: 3px solid var(--paper);
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 0 1px rgba(156, 47, 27, 0.5);
}

.timeline-event__title {
    grid-column: 3;
    max-width: none;
    font-family: var(--serif);
    font-size: 1.22rem;
    line-height: 1;
    color: #241b14;
}

.timeline-event[open] .timeline-event__dot {
    background: var(--accent-2);
    box-shadow: 0 0 0 5px rgba(31, 95, 104, 0.13);
}

.timeline-event[open] .timeline-event__title {
    color: var(--accent);
}

.timeline-event__body {
    margin: 0.15rem 0 1rem 9.9rem;
    padding: 1rem;
    border: 1px solid rgba(23, 18, 13, 0.12);
    border-radius: 0.75rem;
    background: rgba(255, 250, 242, 0.86);
    box-shadow: 0 16px 42px rgba(42, 28, 15, 0.1);
}

.timeline-event__body p {
    margin: 0 0 0.75rem;
    font-size: 0.9rem;
    line-height: 1.46;
    color: var(--muted);
}

.timeline-event__body p:last-of-type {
    margin-bottom: 0;
}

.timeline-event__body strong {
    color: var(--ink);
}

.timeline-event__sources {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.9rem;
}

.timeline-event__sources a {
    display: inline-flex;
    align-items: center;
    min-height: 1.85rem;
    padding: 0.35rem 0.55rem;
    border: 1px solid rgba(93, 53, 30, 0.16);
    border-radius: 999px;
    color: var(--source);
    background: rgba(255, 250, 242, 0.72);
    font-size: 0.73rem;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
}

.timeline-event__sources a:hover {
    border-color: rgba(93, 53, 30, 0.42);
    background: var(--paper);
}

.media-slot {
    max-width: 1000px;
    margin: 3rem 0;
}

.media-slot--inset {
    max-width: 720px;
    margin: 1.7rem 0 2.2rem;
}

.media-slot--wide {
    margin-right: -2rem;
}

.media-slot figcaption {
    margin-top: 0.8rem;
    font-size: 0.86rem;
    line-height: 1.4;
    color: var(--muted);
}

.media-frame,
.media-pair {
    border: 1px solid var(--line);
    border-radius: 1.2rem;
    background: rgba(255, 250, 242, 0.72);
    box-shadow: 0 18px 52px rgba(42, 28, 15, 0.1);
    overflow: hidden;
}

.media-frame {
    padding: clamp(0.7rem, 2vw, 1rem);
}

.media-pair {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
    padding: 0.7rem;
}

.media-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0.65rem;
}

.media-pair .media-image {
    height: 100%;
    min-height: 17rem;
    object-fit: cover;
}

.media-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 86%;
  gap: 0.75rem;
  padding: 0;
  border: 1px solid var(--line);
    border-radius: 0.6rem;
    background: rgba(255, 250, 242, 0.72);
    box-shadow: 0 18px 52px rgba(42, 28, 15, 0.1);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-color: rgba(93, 53, 30, 0.35) transparent;
}

.media-carousel__slide {
  scroll-snap-align: start;
  margin: 0;
  padding: 0.7rem;
  display: grid;
  grid-template-columns: 10rem 1fr;
  gap: 0.75rem;
  align-items: start;
}

.media-carousel__slide .media-image {
  grid-column: 2;
  grid-row: 1;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
}

.media-carousel__slide figcaption {
  grid-column: 1;
  grid-row: 1;
  max-width: 100%;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.carousel-row .marginalia {
  padding-top: 1.7rem;
}

.media-carousel--photos .media-carousel__slide {
  grid-template-columns: 1fr;
}

.media-carousel--photos .media-carousel__slide .media-image {
  grid-column: 1;
  object-fit: cover;
}

.source-note--media .source-note__num {
    width: 1.55rem;
    font-size: 0.56rem;
}

.evidence-board,
.fansub-rig,
.streaming-capture {
    min-height: 27rem;
    border: 1px solid var(--line);
    border-radius: 1.2rem;
    overflow: hidden;
    box-shadow: 0 22px 64px rgba(42, 28, 15, 0.13);
}

.evidence-board {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.85fr 0.9fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    padding: clamp(1rem, 3vw, 2rem);
    background:
        linear-gradient(90deg, rgba(23, 18, 13, 0.045) 1px, transparent 1px),
        linear-gradient(180deg, rgba(23, 18, 13, 0.045) 1px, transparent 1px),
        #e8dccb;
    background-size: 36px 36px;
}

.evidence-board::before,
.evidence-board::after {
    content: "";
    position: absolute;
    height: 2px;
    background: rgba(156, 47, 27, 0.58);
    transform-origin: left center;
}

.evidence-board::before {
    width: 58%;
    left: 18%;
    top: 44%;
    transform: rotate(-10deg);
}

.evidence-board::after {
    width: 46%;
    left: 35%;
    top: 55%;
    transform: rotate(17deg);
}

.evidence-board__stamp {
    position: absolute;
    right: 1.6rem;
    top: 1.4rem;
    z-index: 2;
    padding: 0.4rem 0.55rem;
    border: 2px solid rgba(156, 47, 27, 0.64);
    color: var(--accent);
    font-family: var(--mono);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    transform: rotate(5deg);
}

.evidence-board__card {
    position: relative;
    z-index: 1;
    align-self: end;
    min-height: 9rem;
    padding: 1rem;
    border: 1px solid rgba(23, 18, 13, 0.16);
    border-radius: 0.55rem;
    background: rgba(255, 250, 242, 0.88);
    box-shadow: 0 12px 32px rgba(42, 28, 15, 0.12);
}

.evidence-board__card--large {
    grid-row: span 2;
    align-self: center;
    min-height: 17rem;
}

.evidence-board__card span,
.evidence-board__card em,
.fansub-rig__deck span {
    display: block;
    font-family: var(--mono);
    font-size: 0.72rem;
    line-height: 1.2;
    color: var(--muted);
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.evidence-board__card strong {
    display: block;
    margin: 0.8rem 0 1.6rem;
    font-family: var(--serif);
    font-size: clamp(1.35rem, 2.5vw, 2.35rem);
    line-height: 0.98;
    color: var(--ink);
}

.evidence-board__srt {
    position: absolute;
    right: 10%;
    bottom: 10%;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 5.5rem;
    aspect-ratio: 1;
    border-radius: 50%;
    color: var(--paper);
    background: var(--ink);
    font-family: var(--mono);
    font-weight: 800;
}

.fansub-rig {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    padding: clamp(1rem, 3vw, 1.8rem);
    background:
        linear-gradient(135deg, rgba(31, 95, 104, 0.2), transparent 48%),
        #17120d;
    color: var(--paper);
}

.fansub-rig__monitor {
    grid-row: span 2;
    display: grid;
    grid-template-rows: 1fr 3.8rem;
    gap: 0.75rem;
}

.fansub-rig__screen {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 18rem;
    padding: 1.2rem;
    border: 0.65rem solid #3a332d;
    border-radius: 0.9rem;
    background:
        linear-gradient(180deg, transparent 62%, rgba(0, 0, 0, 0.62)),
        repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.05) 0 1px,
            transparent 1px 5px
        ),
        #294f55;
}

.fansub-rig__screen span {
    width: max-content;
    margin-bottom: auto;
    padding: 0.25rem 0.4rem;
    background: rgba(23, 18, 13, 0.68);
    font-family: var(--mono);
    font-size: 0.78rem;
}

.fansub-rig__screen strong {
    align-self: center;
    padding: 0.35rem 0.7rem;
    background: rgba(23, 18, 13, 0.72);
    font-family: var(--sans);
    font-size: clamp(1.35rem, 4vw, 2.4rem);
    line-height: 1;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}

.fansub-rig__keyboard,
.fansub-rig__deck {
    border: 1px solid rgba(255, 250, 242, 0.12);
    border-radius: 0.75rem;
    background: rgba(255, 250, 242, 0.08);
}

.fansub-rig__keyboard {
    background:
        repeating-linear-gradient(
            90deg,
            rgba(255, 250, 242, 0.17) 0 1.05rem,
            transparent 1.05rem 1.4rem
        ),
        rgba(255, 250, 242, 0.08);
}

.fansub-rig__deck {
    display: grid;
    align-content: space-between;
    padding: 1rem;
}

.fansub-rig__deck span {
    color: #d2bdad;
}

.fansub-rig__cassette {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 5.4rem;
    padding: 0 1.2rem;
    border-radius: 0.5rem;
    background: #241f1b;
}

.fansub-rig__cassette i {
    width: 3rem;
    aspect-ratio: 1;
    border: 0.55rem solid #5b534c;
    border-radius: 50%;
    background: #17120d;
}

.fansub-rig__meters {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.55rem;
    align-items: end;
    height: 8rem;
}

.fansub-rig__meters i {
    display: block;
    border-radius: 999px 999px 0 0;
    background: #e59b89;
}

.fansub-rig__meters i:nth-child(1) {
    height: 45%;
}
.fansub-rig__meters i:nth-child(2) {
    height: 72%;
}
.fansub-rig__meters i:nth-child(3) {
    height: 55%;
}
.fansub-rig__meters i:nth-child(4) {
    height: 88%;
    background: #f5e6d0;
}

.streaming-capture {
    min-height: 0;
    padding: clamp(0.7rem, 2vw, 1rem);
    border: 1px solid var(--line);
    border-radius: 1.2rem;
    background: rgba(255, 250, 242, 0.72);
    box-shadow: 0 18px 52px rgba(42, 28, 15, 0.1);
}

.streaming-capture__image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0.65rem;
}

.chapter--feature {
    margin-left: -2rem;
    margin-right: -2rem;
    padding: 3rem 2rem;
    border-radius: 2rem;
    color: var(--paper);
    background:
        radial-gradient(
            circle at 20% 0%,
            rgba(247, 241, 232, 0.18),
            transparent 24rem
        ),
        #17120d;
}

.chapter--feature .section-kicker {
    color: #e59b89;
}
.chapter--feature h2,
.chapter--feature h3,
.chapter--feature .copy p {
    color: var(--paper);
}

.chapter--feature .source-note {
    background: rgba(255, 250, 242, 0.1);
    border-color: rgba(255, 250, 242, 0.18);
    color: #f3d7c7;
}

.chapter--feature .source-note__num,
.chapter--feature .source-ref a {
    background: #e59b89;
    color: #17120d;
}

.chapter--machine {
    border-top: 1px solid var(--line);
    padding-top: 4rem;
}

.chapter--closing {
    border-top: 1px solid var(--line);
    padding-top: 4rem;
}

.site-footer {
    max-width: 1160px;
    margin: 0 auto;
    padding: 3rem 1.25rem 4rem;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.88rem;
}

@media (max-width: 1180px) {
    .article-tools {
        display: none;
    }
    .article {
        max-width: 980px;
    }
    .text-row {
        grid-template-columns: minmax(0, 1fr) minmax(170px, 230px);
    }
}

@media (max-width: 820px) {
    .site-header {
        position: static;
        align-items: flex-start;
    }

    .top-nav {
        display: none;
    }

    .hero {
        margin-top: 2.5rem;
    }

    .hero h1 {
        font-size: clamp(3.4rem, 17vw, 6rem);
    }

    .hero-card,
    .text-row,
    .text-row:not(.has-sources) {
        grid-template-columns: 1fr;
    }

    .marginalia {
        position: static;
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.4rem;
        margin: -0.4rem 0 1.4rem;
    }

    .source-note {
        grid-template-columns: 1.25rem 1fr;
    }

    .media-references {
        grid-template-columns: 1fr;
    }

    .case-timeline {
        margin: 3rem 0;
        padding: 1.1rem;
    }

    .timeline-event summary {
        grid-template-columns: 1.05rem minmax(4.6rem, auto) minmax(0, 1fr);
        column-gap: 0.55rem;
        min-height: 3rem;
    }

    .timeline-event__year {
        grid-column: 2;
    }

    .timeline-event__dot {
        grid-column: 1;
        grid-row: 1;
    }

    .timeline-event__title {
        grid-column: 3;
        max-width: none;
        font-size: 1.1rem;
    }

    .timeline-event__body {
        margin: 0.25rem 0 1.2rem 1.6rem;
    }

    .chapter--feature {
        margin-left: 0;
        margin-right: 0;
        padding: 1.4rem;
    }

    .media-slot--wide {
        margin-right: 0;
    }

    .media-pair {
        grid-template-columns: 1fr;
    }

    .media-pair .media-image {
        min-height: 0;
    }

    .evidence-board,
    .fansub-rig,
    .streaming-capture {
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .evidence-board {
        grid-template-rows: none;
    }

    .evidence-board__card--large {
        grid-row: auto;
        min-height: 10rem;
    }

    .evidence-board__srt {
        display: none;
    }

    .fansub-rig__monitor {
        grid-row: auto;
    }
}
