/* ============================================================
   monohydrat.se — Newsprint
   Stark svartvitt, hög kontrast, tätt raster, hårfina linjer.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Source+Serif+4:ital,opsz,wght@0,8..60,300..700;1,8..60,300..700&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root {
  --paper:      #faf8f3;
  --paper-2:    #f2efe7;
  --ink:        #12100e;
  --ink-soft:   #4a4640;
  --ink-faint:  #8b857c;
  --red:        #c1121f;
  --rule:       #12100e;
  --rule-light: #cdc7ba;

  --display: 'Playfair Display', 'Times New Roman', Didot, Georgia, serif;
  --body:    'Source Serif 4', Georgia, 'Times New Roman', serif;
  --mono:    'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --gutter: 2rem;
  --maxw:   1280px;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.6;
  font-synthesis: none;
}

/* newsprint tooth */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: .035;
  background-image:
    repeating-linear-gradient(0deg,   #000 0 1px, transparent 1px 3px),
    repeating-linear-gradient(90deg,  #000 0 1px, transparent 1px 3px);
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }

a { color: inherit; }

/* ---------- micro-labels ---------- */
.eyebrow, .kicker, .meta-bar, .ts, .verdict, .ledger h3, nav a, .src, th {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .6875rem;
  font-weight: 500;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  border-bottom: 2px solid var(--ink);
  padding-bottom: .35rem;
  margin-bottom: 1.75rem;
}
.eyebrow .sq { width: .5rem; height: .5rem; background: var(--red); display: block; }

/* ---------- masthead ---------- */
.masthead { border-bottom: 3px double var(--rule); }
.masthead-inner {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 1rem var(--gutter);
  max-width: var(--maxw); margin: 0 auto;
  flex-wrap: wrap;
}
.logo {
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.75rem;
  letter-spacing: -.02em;
  text-transform: uppercase;
  line-height: 1;
  text-decoration: none;
}
.logo .dot { color: var(--red); }

.meta-bar {
  border: 1px solid var(--ink);
  padding: .4rem .7rem;
  color: var(--ink-soft);
  white-space: nowrap;
}
.meta-bar span { color: var(--ink-faint); margin: 0 .5rem; }

.masthead nav { margin-left: auto; display: flex; gap: 1.5rem; }
.masthead nav a { text-decoration: none; border-bottom: 1px solid transparent; padding-bottom: 2px; }
.masthead nav a:hover { border-bottom-color: var(--red); }

/* ---------- hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1fr 22rem;
  border-bottom: 1px solid var(--rule);
}
.hero-main { padding: 3rem var(--gutter) 3rem 0; }
.hero-side { border-left: 1px solid var(--rule); padding: 3rem 0 3rem var(--gutter); }

h1 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2.75rem, 7.5vw, 5.75rem);
  line-height: .9;
  letter-spacing: -.025em;
  margin: 0 0 1.75rem;
  text-wrap: balance;
}
h1 em { font-style: italic; font-weight: 700; }

.lede { font-size: 1.3125rem; line-height: 1.5; margin: 0 0 1.5rem; max-width: 34em; }
.lede::first-letter {
  font-family: var(--display);
  font-size: 4.25rem;
  font-weight: 900;
  line-height: .78;
  float: left;
  padding: .06em .12em 0 0;
  color: var(--red);
}
.standfirst { font-size: 1.0625rem; color: var(--ink-soft); max-width: 40em; }

/* episode card */
.episode {
  margin-top: 2.25rem;
  border: 1px solid var(--ink);
  padding: 1.25rem 1.5rem;
  background: var(--paper-2);
  max-width: 40em;
}
.episode .kicker { color: var(--ink-faint); display: block; margin-bottom: .5rem; }
.episode h4 { font-family: var(--display); font-size: 1.375rem; font-weight: 800; margin: 0 0 .4rem; }
.episode p { margin: 0 0 .85rem; font-size: .9375rem; color: var(--ink-soft); }
.btn {
  font-family: var(--mono); text-transform: uppercase; letter-spacing: .12em;
  font-size: .6875rem; font-weight: 600;
  display: inline-block; padding: .7rem 1.2rem;
  background: var(--ink); color: var(--paper); text-decoration: none;
  border: 1px solid var(--ink);
}
.btn:hover { background: var(--red); border-color: var(--red); }
.btn.ghost { background: transparent; color: var(--ink); }
.btn.ghost:hover { background: var(--ink); color: var(--paper); }

/* ---------- ledger (sidebar figures) ---------- */
.ledger h3 { margin: 0 0 1rem; padding-bottom: .6rem; border-bottom: 2px solid var(--ink); }
.lrow {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding: .7rem 0; border-bottom: 1px solid var(--rule-light);
}
.lrow .lbl { font-size: .9375rem; color: var(--ink-soft); }
.lrow .fig {
  font-family: var(--display); font-weight: 800; font-size: 1.5rem;
  font-variant-numeric: lining-nums; line-height: 1;
}
.lrow .fig.red { color: var(--red); }
.ledger .note { font-family: var(--mono); font-size: .625rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-faint); margin-top: 1rem; line-height: 1.7; }

/* ---------- sections ---------- */
section { border-bottom: 1px solid var(--rule); }
.sec-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2rem; padding: 3rem 0 1.25rem; flex-wrap: wrap;
}
.sec-head h2 {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem); line-height: 1;
  letter-spacing: -.02em; margin: 0;
}
.sec-head .kicker { color: var(--ink-faint); }
.rule { border: 0; border-top: 2px solid var(--ink); margin: 0; }
.intro { max-width: 46em; padding: 1.5rem 0 0; font-size: 1.0625rem; }

/* ---------- legend / filter ---------- */
.legend { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem; padding: 1.5rem 0 2.5rem; }
.legend button {
  cursor: pointer;
  font: inherit;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .6875rem;
  font-weight: 600;
  transition: opacity .12s, filter .12s;
}
.legend button b { font-weight: 700; margin-left: .35rem; opacity: .65; }
.legend button:hover { filter: brightness(1.15); }
.legend button.v-stod:hover, .legend button.v-saknar:hover { filter: brightness(1.35); }
.legend button.off {
  background: transparent;
  color: var(--ink-faint);
  border-color: var(--rule-light);
}
.legend button.off b { opacity: .5; }
.legend button:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }
.filter-state {
  font-family: var(--mono); font-size: .625rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-faint); margin-left: .35rem;
}
.claim[hidden], .group[hidden] { display: none; }

/* ---------- sync player ---------- */
.player {
  position: sticky; top: 0; z-index: 50;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: .85rem 1.1rem;
  margin: 1.5rem 0 2rem;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
}
.pbtn {
  width: 2.5rem; height: 2.5rem; flex: none;
  display: grid; place-items: center;
  background: var(--paper); color: var(--ink);
  border: 0; cursor: pointer; padding: 0;
}
.pbtn:hover { background: var(--red); }
.pbtn:hover .picon { border-left-color: #fff; }
.pbtn:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }
/* triangel som blir två streck i pausläge */
.picon {
  width: 0; height: 0;
  border-left: .7rem solid var(--ink);
  border-top: .45rem solid transparent;
  border-bottom: .45rem solid transparent;
  margin-left: .18rem;
}
.playing .picon {
  width: .62rem; height: .78rem;
  border: 0; margin-left: 0;
  background: linear-gradient(90deg,
    var(--ink) 0 34%, transparent 34% 66%, var(--ink) 66% 100%);
}
.playing .pbtn:hover .picon {
  background: linear-gradient(90deg, #fff 0 34%, transparent 34% 66%, #fff 66% 100%);
}
.pclock {
  font-family: var(--mono); font-size: .8125rem; letter-spacing: .06em;
  font-variant-numeric: tabular-nums; white-space: nowrap;
}
.pclock .pof { color: var(--ink-faint); margin: 0 .4rem; }
.pbar {
  height: .5rem; cursor: pointer;
  background: rgba(250, 248, 243, .18);
  position: relative; touch-action: none;
}
.pbar:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }
.pfill { height: 100%; width: 0; background: var(--red); position: relative; }
.pfill::after {
  content: ""; position: absolute; right: -.2rem; top: -.28rem;
  width: .4rem; height: 1.06rem; background: var(--paper);
}
.pmini {
  font-family: var(--mono); text-transform: uppercase; letter-spacing: .12em;
  font-size: .625rem; font-weight: 600;
  background: transparent; color: var(--paper);
  border: 1px solid rgba(250, 248, 243, .45);
  padding: .45rem .7rem; cursor: pointer; white-space: nowrap;
}
.pmini:hover { border-color: var(--paper); }
.pmini.off { color: var(--ink-faint); border-color: rgba(250, 248, 243, .2); }
.pmini:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }
.phint {
  grid-column: 1 / -1; margin: 0;
  font-family: var(--mono); font-size: .625rem; letter-spacing: .08em;
  line-height: 1.7; color: rgba(250, 248, 243, .62);
}

/* ---------- per-line fact-check ---------- */
.turn-body { min-width: 0; }
.turn.is-current { background: var(--paper-2); box-shadow: -.75rem 0 0 var(--paper-2), .75rem 0 0 var(--paper-2); }
.turn.is-current > .t { color: var(--red); font-weight: 600; }
.turn.has-notes > .t::after {
  content: "";
  display: block; width: .3rem; height: .3rem;
  background: var(--red); margin: .45rem 0 0 auto;
}
.turn-notes { margin: .7rem 0 .3rem; border-left: 2px solid var(--red); padding-left: .9rem; }
.tnote-count {
  display: block; margin-bottom: .5rem;
  font-family: var(--mono); font-size: .5625rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-faint);
}
.tnote { margin-bottom: .4rem; }
.tnote > summary {
  display: flex; align-items: center; gap: .6rem; flex-wrap: wrap;
  cursor: pointer; list-style: none; padding: .1rem 0;
}
.tnote > summary::-webkit-details-marker { display: none; }
.tnote > summary::after {
  content: "+";
  font-family: var(--mono); font-size: .8125rem; color: var(--ink-faint);
  margin-left: auto;
}
.tnote[open] > summary::after { content: "\2212"; }
.tnote > summary:hover .tnote-t { color: var(--red); }
.tnote > summary:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }
.tnote-t { font-size: .9375rem; line-height: 1.4; }
.tnote-body { padding: .3rem 0 .8rem; }
.tnote-body p { margin: 0 0 .5rem; font-size: .875rem; line-height: 1.6; color: var(--ink-soft); }
.tnote-body .src { color: var(--ink-faint); }
.tnote-body .src a {
  font-family: var(--body); text-transform: none; letter-spacing: 0;
  font-size: .8125rem; color: var(--ink); text-decoration: none;
  border-bottom: 1px solid var(--rule-light);
}
.tnote-body .src a:hover { color: var(--red); border-bottom-color: var(--red); }

/* ---------- verdict badges ---------- */
.verdict {
  display: inline-flex; align-items: center; height: 2rem;
  padding: 0 .6rem; border: 1px solid var(--ink);
  letter-spacing: .12em; line-height: 1; font-weight: 600; white-space: nowrap;
}
.v-stod   { background: var(--ink);  color: var(--paper); }
.v-delvis { background: transparent; color: var(--ink); }
.v-saknar { background: var(--red);  color: #fff; border-color: var(--red); }
.v-oklart { background: repeating-linear-gradient(45deg, var(--paper-2) 0 4px, var(--paper) 4px 8px); color: var(--ink-soft); }

/* Neutral presentation: this describes the evidence base, not the verdict. */
.evidence {
  display: inline-flex; align-items: center; height: 2rem;
  padding: 0 .52rem;
  border: 1px solid var(--rule);
  font-family: var(--mono); font-size: .5625rem; font-weight: 600;
  letter-spacing: .09em; line-height: 1; text-transform: uppercase;
  color: var(--ink-soft); white-space: nowrap;
}
.evidence > span { color: var(--ink-faint); font-weight: 500; }
.evidence b { margin-left: .25rem; color: var(--ink-faint); }
.e-stark { border-color: var(--ink); background: var(--paper-2); color: var(--ink); }
.e-mattlig { border-color: var(--rule); }
.e-begransad { border-style: dashed; border-color: var(--ink-faint); }
.e-saknas { border-style: dotted; color: var(--ink-faint); }
.evidence-key {
  display: flex; align-items: center; flex-wrap: wrap; gap: .5rem;
  margin: -1.2rem 0 1rem; padding-bottom: .75rem;
}
.evidence-key-title {
  margin-right: .2rem;
  font-family: var(--mono); font-size: .625rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-faint);
}

/* ---------- claim groups ---------- */
.group { padding-bottom: 2.5rem; }
.group > h3 {
  font-family: var(--display); font-weight: 800; font-size: 1.5rem;
  margin: 2.5rem 0 0; padding-bottom: .6rem;
  border-bottom: 2px solid var(--ink);
  display: flex; align-items: baseline; gap: .75rem;
}
.group > h3 .n {
  font-family: var(--mono); font-size: .75rem; letter-spacing: .1em;
  color: var(--red); font-weight: 600;
}

.claims { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.claim { border-bottom: 1px solid var(--rule-light); padding: 1.6rem 0; }
.claim:nth-child(odd) {
  padding-right: 2.25rem;
  border-right: 1px solid var(--rule-light);
}
.claim:nth-child(even) { padding-left: 2.25rem; }
/* drop the trailing hairline on the last row */
.claim:last-child, .claim:nth-last-child(2):nth-child(odd) { border-bottom: 0; }
.claim-head { display: flex; align-items: center; gap: .65rem; margin-bottom: .9rem; flex-wrap: wrap; }
.claim-head .ts { margin-left: auto; }
.ts { color: var(--ink-faint); text-decoration: none; border-bottom: 1px dotted var(--ink-faint); }
.ts:hover { color: var(--red); border-bottom-color: var(--red); }

.claim blockquote {
  margin: 0 0 .9rem; padding-left: 1rem;
  border-left: 3px solid var(--ink);
  font-size: 1.0625rem; font-style: italic; line-height: 1.5;
}
.claim .assess { margin: 0 0 .8rem; font-size: .9375rem; line-height: 1.65; color: var(--ink-soft); }
.claim .assess strong { color: var(--ink); font-weight: 600; font-style: normal; }
.claim .src { margin: 0; color: var(--ink-faint); line-height: 1.7; }
.claim .src a {
  font-family: var(--body);
  text-transform: none;
  letter-spacing: 0;
  font-size: .875rem;
  font-weight: 400;
  color: var(--ink); text-decoration: none;
  border-bottom: 1px solid var(--rule-light);
}
.claim .src a:hover { border-bottom-color: var(--red); color: var(--red); }

/* ---------- short version: what does not hold ---------- */
.fails { list-style: none; counter-reset: f; padding: 0; margin: 1.75rem 0 2rem; }
.fails li {
  counter-increment: f;
  position: relative;
  padding: .95rem 0 .95rem 3.25rem;
  border-bottom: 1px solid var(--rule-light);
  font-size: 1.1875rem;
  line-height: 1.4;
}
.fails li::before {
  content: counter(f, decimal-leading-zero);
  position: absolute; left: 0; top: 1rem;
  font-family: var(--mono); font-size: .75rem; font-weight: 600;
  letter-spacing: .1em; color: var(--red);
}
.fails li:first-child { border-top: 1px solid var(--rule-light); }
.fails a { text-decoration: none; border-bottom: 1px solid var(--rule-light); }
.fails a:hover { color: var(--red); border-bottom-color: var(--red); }
.fails .tsc {
  font-family: var(--mono); font-size: .6875rem; letter-spacing: .1em;
  color: var(--ink-faint); margin-left: .5rem; white-space: nowrap;
}
.claim:target { background: #fdf3c8; box-shadow: 0 0 0 .35rem #fdf3c8; }

/* ---------- transcript ---------- */
.transcript { padding: 0 0 3rem; max-width: 54rem; }
.turn { display: grid; grid-template-columns: 4.5rem 1fr; gap: 1.25rem; padding: .55rem 0; scroll-margin-top: 7.5rem; }
.turn:target { background: #fdf3c8; box-shadow: 0 0 0 .5rem #fdf3c8; }
.turn .t {
  font-family: var(--mono); font-size: .6875rem; letter-spacing: .06em;
  color: var(--ink-faint); text-decoration: none; padding-top: .35rem;
}
.turn .t:hover { color: var(--red); }
.turn p { margin: 0; }
.tw {
  border-radius: .14em;
  text-decoration-line: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: .1em;
  text-underline-offset: .16em;
  text-decoration-skip-ink: auto;
  transition: background-color 80ms ease, text-decoration-color 80ms ease;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.tw.is-current-word {
  background-color: rgba(193, 18, 31, .09);
  text-decoration-color: var(--red);
}
.spk {
  font-family: var(--mono); text-transform: uppercase; letter-spacing: .12em;
  font-size: .625rem; font-weight: 600; display: block; margin-bottom: .2rem;
}
.spk-0 { color: var(--ink-faint); }
.spk-1 { color: var(--red); }
.spk-2 { color: var(--ink-faint); }

/* ---------- prose ---------- */
.prose { max-width: 44em; padding: 1.5rem 0 3rem; }
.prose h3 { font-family: var(--display); font-size: 1.25rem; margin: 2rem 0 .5rem; }
.prose ol, .prose ul { padding-left: 1.25rem; }
.prose li { margin-bottom: .6rem; }
.prose code {
  font-family: var(--mono); font-size: .8125rem;
  background: var(--paper-2); padding: .1em .35em; border: 1px solid var(--rule-light);
}
.evidence-scale {
  margin: 1rem 0 2rem;
  border-top: 1px solid var(--rule-light);
}
.evidence-scale > div {
  display: grid; grid-template-columns: 9.5rem 1fr; gap: 1rem;
  align-items: start; padding: .8rem 0;
  border-bottom: 1px solid var(--rule-light);
}
.evidence-scale p { margin: -.15rem 0 0; font-size: .875rem; line-height: 1.6; }
.tnote-body .evidence-row { margin: .35rem 0 .65rem; }
.dinkus { text-align: center; color: var(--ink-faint); letter-spacing: .8em; padding: 2.5rem 0; }

/* ---------- sources ---------- */
.srclist { padding: 1.5rem 0 3rem; columns: 2; column-gap: 3rem; }
.srclist li { margin-bottom: .8rem; break-inside: avoid; font-size: .9375rem; }
.srclist a { text-decoration: none; border-bottom: 1px solid var(--rule-light); }
.srclist a:hover { color: var(--red); border-bottom-color: var(--red); }

/* ---------- footer ---------- */
footer { padding: 2.5rem var(--gutter) 4rem; max-width: var(--maxw); margin: 0 auto; }
footer .colophon {
  font-family: var(--mono); font-size: .6875rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-faint); line-height: 2;
}
footer .disclaimer {
  margin-top: 1.5rem; padding: 1.25rem; border: 1px solid var(--rule-light);
  background: var(--paper-2); font-size: .875rem; color: var(--ink-soft); max-width: 46em;
}
footer .privacy {
  margin-top: 1rem; max-width: 46em;
  font-size: .8125rem; line-height: 1.65; color: var(--ink-faint);
}
.privacy-settings {
  appearance: none; margin: 0; padding: 0;
  border: 0; border-bottom: 1px solid var(--rule-light); background: transparent;
  color: var(--ink); cursor: pointer; font: inherit;
}
.privacy-settings:hover { color: var(--red); border-bottom-color: var(--red); }
.privacy-settings:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

/* ---------- analytics consent ---------- */
.consent {
  position: fixed; z-index: 1001;
  right: 1rem; bottom: 1rem; left: 1rem;
  display: grid; grid-template-columns: minmax(0, 1fr) auto;
  align-items: end; gap: 1.5rem;
  max-width: 58rem; margin: 0 auto; padding: 1.25rem;
  border: 2px solid var(--ink); background: var(--paper);
  box-shadow: .4rem .4rem 0 var(--ink);
}
.consent[hidden] { display: none; }
.consent-label {
  display: block; margin-bottom: .25rem;
  font-family: var(--mono); font-size: .625rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--red);
}
.consent h2 {
  margin: 0 0 .35rem;
  font-family: var(--display); font-size: 1.35rem; line-height: 1.15;
}
.consent p { margin: 0; max-width: 44rem; font-size: .875rem; line-height: 1.5; color: var(--ink-soft); }
.consent-actions { display: flex; gap: .55rem; flex-wrap: wrap; justify-content: flex-end; }
.consent-button {
  min-height: 2.5rem; padding: .55rem .8rem;
  border: 1px solid var(--ink); background: transparent; color: var(--ink);
  cursor: pointer; white-space: nowrap;
  font-family: var(--mono); font-size: .6875rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
}
.consent-button-primary { background: var(--ink); color: var(--paper); }
.consent-button:hover { border-color: var(--red); color: var(--red); }
.consent-button-primary:hover { background: var(--red); color: #fff; }
.consent-button:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-main { padding: 2.5rem 0 2rem; }
  .hero-side { border-left: 0; border-top: 1px solid var(--rule); padding: 2rem 0; }
  .claims { grid-template-columns: 1fr; }
  .claim, .claim:nth-child(odd), .claim:nth-child(even) {
    padding: 1.35rem 0; border-right: 0; border-left: 0;
  }
  .srclist { columns: 1; }
  .masthead nav { margin-left: 0; width: 100%; overflow-x: auto; }
  .turn { grid-template-columns: 3.75rem 1fr; gap: .85rem; }
}
@media (max-width: 560px) {
  :root { --gutter: 1.1rem; }
  .meta-bar { white-space: normal; }
  .lede { font-size: 1.1875rem; }
  .evidence-scale > div { grid-template-columns: 1fr; gap: .55rem; }
  .consent { grid-template-columns: 1fr; gap: 1rem; }
  .consent-actions { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  .tw { transition: none; }
}

@media print {
  body::before, .masthead nav, .player, .consent, .privacy-settings { display: none; }
  body { background: #fff; font-size: 10pt; }
  .claim { break-inside: avoid; }
}
