/* ===================================================================
   NEWSREEL — approved design. Ported from the mockup, extended for the
   article page, comments, search and pagination. Served static (no Vite).
   =================================================================== */
:root {
  --paper: #F4F6F9; --paper-2: #FFFFFF; --ink: #14181F; --ink-soft: #3A4250;
  --muted: #6B7686; --line: #DCE1E9; --line-2: #E9EDF2; --accent: #E8402A;
  --accent-ink: #FFFFFF; --navy: #1B2A4A; --card: #FFFFFF;
  --shadow: 0 1px 2px rgba(20,24,31,.04), 0 8px 24px rgba(20,24,31,.06);
  --shadow-lift: 0 2px 6px rgba(20,24,31,.08), 0 18px 44px rgba(20,24,31,.14);
  --font-display: "Helvetica Neue", Helvetica, "Segoe UI", Arial, sans-serif;
  --font-serif: Georgia, "Iowan Old Style", "Times New Roman", serif;
  --font-mono: ui-monospace, "SF Mono", "Menlo", Consolas, monospace;
  --wrap: 1180px;
}
@media (prefers-color-scheme: dark) {
  :root {
    --paper: #0E1117; --paper-2: #12161D; --ink: #EEF1F6; --ink-soft: #C2C9D4;
    --muted: #8B96A6; --line: #232A34; --line-2: #1C222B; --accent: #FF5238;
    --accent-ink: #10130A; --navy: #9DB4E0; --card: #161B24;
    --shadow: 0 1px 2px rgba(0,0,0,.4), 0 10px 28px rgba(0,0,0,.45);
    --shadow-lift: 0 2px 8px rgba(0,0,0,.5), 0 22px 50px rgba(0,0,0,.6);
  }
}
:root[data-theme="light"] {
  --paper: #F4F6F9; --paper-2: #FFFFFF; --ink: #14181F; --ink-soft: #3A4250;
  --muted: #6B7686; --line: #DCE1E9; --line-2: #E9EDF2; --accent: #E8402A;
  --accent-ink: #FFFFFF; --navy: #1B2A4A; --card: #FFFFFF;
  --shadow: 0 1px 2px rgba(20,24,31,.04), 0 8px 24px rgba(20,24,31,.06);
  --shadow-lift: 0 2px 6px rgba(20,24,31,.08), 0 18px 44px rgba(20,24,31,.14);
}
:root[data-theme="dark"] {
  --paper: #0E1117; --paper-2: #12161D; --ink: #EEF1F6; --ink-soft: #C2C9D4;
  --muted: #8B96A6; --line: #232A34; --line-2: #1C222B; --accent: #FF5238;
  --accent-ink: #10130A; --navy: #9DB4E0; --card: #161B24;
  --shadow: 0 1px 2px rgba(0,0,0,.4), 0 10px 28px rgba(0,0,0,.45);
  --shadow-lift: 0 2px 8px rgba(0,0,0,.5), 0 22px 50px rgba(0,0,0,.6);
}
* { box-sizing: border-box; }
body { margin: 0; background: var(--paper); color: var(--ink);
  font-family: var(--font-serif); -webkit-font-smoothing: antialiased; line-height: 1.55; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }
.eyebrow, .label { font-family: var(--font-mono); text-transform: uppercase;
  letter-spacing: .12em; font-size: 11px; font-weight: 600; }

/* Ticker */
.ticker { background: var(--paper-2); color: var(--ink);
  border-bottom: 1px solid var(--line); overflow: hidden; display: flex; align-items: stretch; }
.ticker__tag { background: var(--accent); color: var(--accent-ink); font-family: var(--font-mono);
  text-transform: uppercase; letter-spacing: .1em; font-size: 11px; font-weight: 700;
  display: flex; align-items: center; gap: 7px; padding: 0 16px; white-space: nowrap; z-index: 2; }
/* Broadcast equalizer (replaces the blinking dot) */
.ticker__tag .eq { display: inline-flex; align-items: flex-end; gap: 2px; height: 11px; }
.ticker__tag .eq i { width: 2.5px; background: var(--accent-ink); border-radius: 1px;
  transform-origin: bottom; animation: eq 900ms ease-in-out infinite; }
.ticker__tag .eq i:nth-child(1) { height: 45%; animation-delay: -600ms; }
.ticker__tag .eq i:nth-child(2) { height: 100%; animation-delay: -200ms; }
.ticker__tag .eq i:nth-child(3) { height: 70%; animation-delay: -850ms; }
.ticker__tag .eq i:nth-child(4) { height: 88%; animation-delay: -400ms; }
.ticker__viewport { overflow: hidden; flex: 1; position: relative; }
.ticker__track { display: flex; align-items: center; white-space: nowrap; font-family: var(--font-mono);
  font-size: 12.5px; color: var(--ink-soft); padding: 9px 0; width: max-content;
  animation: marquee 42s linear infinite; }
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__track span { padding: 0 26px; position: relative; }
.ticker__track span::before { content: "◆"; color: var(--accent); font-size: 8px;
  position: absolute; left: -3px; top: 50%; transform: translateY(-50%); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes eq { 0%,100% { transform: scaleY(.3); } 50% { transform: scaleY(1); } }

/* Masthead */
header.mast { background: var(--paper); border-bottom: 1.5px solid var(--ink);
  position: sticky; top: 0; z-index: 30; }
.mast__top { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px 0 14px; }
.brand { display: flex; align-items: baseline; gap: 12px; }
.wordmark { display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 800; font-size: clamp(26px, 4vw, 38px);
  letter-spacing: -.03em; color: var(--ink); line-height: 1; }
.wordmark b { color: var(--accent); }
.brand-mark { height: 30px; width: 30px; flex: none; display: block; }
.brand__tag { font-family: var(--font-serif); font-style: italic; color: var(--muted);
  font-size: 14px; border-left: 1px solid var(--line); padding-left: 12px; }
.mast__meta { display: flex; align-items: center; gap: 14px; }
.searchbox { display: flex; align-items: center; border: 1px solid var(--line);
  border-radius: 999px; padding: 5px 6px 5px 14px; background: var(--paper-2); }
.searchbox input { border: 0; background: transparent; color: var(--ink); font-family: var(--font-mono);
  font-size: 12.5px; outline: none; width: 120px; }
.searchbox button { border: 0; background: var(--ink); color: var(--paper); width: 26px; height: 26px;
  border-radius: 50%; cursor: pointer; font-size: 13px; display: grid; place-items: center; }
.searchbox button:hover { background: var(--accent); color: var(--accent-ink); }
.clock { font-family: var(--font-mono); font-size: 12.5px; font-weight: 600; color: var(--ink-soft);
  font-variant-numeric: tabular-nums; letter-spacing: .02em; }
.theme-btn { font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--line); background: transparent; border-radius: 999px;
  padding: 6px 12px; cursor: pointer; }
.theme-btn:hover { color: var(--ink); border-color: var(--ink); }
nav.cats { display: flex; gap: 2px; overflow-x: auto; border-top: 1px solid var(--line-2); }
nav.cats a { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .09em;
  font-size: 12px; font-weight: 600; color: var(--ink-soft); padding: 11px 15px; white-space: nowrap;
  border-bottom: 2px solid transparent; }
nav.cats a:hover { color: var(--ink); }
nav.cats a.on { color: var(--accent); border-bottom-color: var(--accent); }

/* Hamburger — shown on mobile only */
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 4px;
  width: 40px; height: 40px; flex: none; padding: 0; cursor: pointer;
  border: 1px solid var(--line); border-radius: 9px; background: var(--paper-2); }
.nav-toggle span { display: block; width: 18px; height: 2px; margin: 0 auto; border-radius: 2px;
  background: var(--ink); transition: transform .22s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Tablet ---------- */
@media (max-width: 900px) {
  .brand__tag { display: none; }
  .mast__top { padding: 13px 0 11px; gap: 12px; }
}

/* ---------- Mobile ---------- */
@media (max-width: 640px) {
  .wrap { padding: 0 16px; }
  .nav-toggle { display: flex; }
  .mast__top { gap: 10px; }
  .brand { flex: 1; min-width: 0; }
  .wordmark { font-size: 23px; }
  .clock { display: none; }
  .mast__meta { gap: 8px; }
  /* Search collapses to an icon that opens the search page */
  .searchbox { border: 0; background: transparent; padding: 0; }
  .searchbox input { display: none; }
  .searchbox button { width: 36px; height: 36px; border: 1px solid var(--line); background: var(--paper-2); color: var(--ink); }
  .theme-btn { padding: 7px 11px; }

  /* Categories collapse into a dropdown toggled by the hamburger */
  nav.cats { display: none; flex-direction: column; gap: 0; padding-bottom: 6px; }
  nav.cats.cats--open { display: flex; }
  nav.cats a { padding: 13px 2px; border-bottom: 1px solid var(--line-2); }
  nav.cats a.on { border-bottom-color: var(--line-2); }

  main { padding: 20px 0 8px; }
  .section-head { margin: 6px 0 18px; }
  .grid { gap: 20px 16px; }
  .watched { padding: 20px 18px; }
  .watched a { grid-template-columns: 26px 1fr auto; gap: 10px; }
}

/* Layout */
main { padding: 30px 0 10px; }
.lead-grid { display: grid; grid-template-columns: 1.62fr 1fr; gap: 30px; align-items: start; margin-bottom: 40px; }
@media (max-width: 860px){ .lead-grid { grid-template-columns: 1fr; gap: 26px; } }

/* Thumbnail */
.thumb { position: relative; border-radius: 10px; overflow: hidden;
  background: linear-gradient(135deg, hsl(var(--h,220), 42%, 30%), hsl(calc(var(--h,220) + 26), 55%, 16%));
  aspect-ratio: 16/9; display: block; }
.thumb--img { background-size: cover; background-position: center; }
.thumb::after { content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 78% 12%, hsla(var(--h,220),80%,62%,.35), transparent 55%),
    radial-gradient(90% 80% at 10% 100%, rgba(0,0,0,.45), transparent 60%),
    repeating-linear-gradient(115deg, rgba(255,255,255,.05) 0 2px, transparent 2px 7px);
  mix-blend-mode: screen; }
.thumb--img::after { background: radial-gradient(90% 80% at 10% 100%, rgba(0,0,0,.35), transparent 60%); mix-blend-mode: normal; }
.thumb__glyph { position: absolute; left: 16px; bottom: 12px; z-index: 2; font-family: var(--font-display);
  font-weight: 800; font-size: clamp(30px, 6vw, 58px); letter-spacing: -.03em; color: rgba(255,255,255,.14);
  line-height: .8; text-transform: uppercase; pointer-events: none; }
.thumb__cat { position: absolute; top: 12px; left: 12px; z-index: 3; background: rgba(0,0,0,.5);
  backdrop-filter: blur(3px); color: #fff; font-family: var(--font-mono); font-size: 10.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; padding: 4px 8px; border-radius: 4px; }
.thumb__dur { position: absolute; bottom: 10px; right: 10px; z-index: 3; background: rgba(0,0,0,.72); color: #fff;
  font-family: var(--font-mono); font-size: 11px; font-weight: 600; padding: 3px 7px; border-radius: 4px;
  font-variant-numeric: tabular-nums; display: inline-flex; align-items: center; gap: 5px; }
.thumb__dur::before { content: "▶"; font-size: 8px; color: var(--accent); }
.play { position: absolute; inset: 0; z-index: 2; display: grid; place-items: center; }
.play i { width: 62px; height: 62px; border-radius: 50%; background: rgba(255,255,255,.16); backdrop-filter: blur(4px);
  border: 1.5px solid rgba(255,255,255,.55); display: grid; place-items: center; transition: transform .25s ease, background .25s ease; }
.play i::after { content: ""; width: 0; height: 0; border-left: 17px solid #fff; border-top: 11px solid transparent;
  border-bottom: 11px solid transparent; margin-left: 5px; }
a.card:hover .play i, a.lead:hover .play i { transform: scale(1.08); background: var(--accent); border-color: var(--accent); }

/* Lead */
a.lead { display: block; }
a.lead .thumb { aspect-ratio: 16/9; box-shadow: var(--shadow); }
a.lead:hover .thumb { box-shadow: var(--shadow-lift); }
.lead__eyebrow { display: flex; align-items: center; gap: 10px; margin: 18px 0 8px; color: var(--accent); }
.lead__eyebrow .dot { color: var(--line); }
.lead h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(28px, 4.6vw, 46px);
  line-height: 1.03; letter-spacing: -.025em; margin: 0 0 12px; text-wrap: balance; color: var(--ink); }
a.lead:hover h1 { color: var(--accent); }
.lead p.deck { font-size: 18px; color: var(--ink-soft); margin: 0 0 16px; max-width: 60ch; }
.byline { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-family: var(--font-mono);
  font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.src-pill { color: var(--ink); border: 1px solid var(--line); border-radius: 999px; padding: 3px 10px; font-weight: 600; }
.src-link { color: var(--accent); font-weight: 600; }
.src-link:hover { text-decoration: underline; }

/* Right rail */
.rail { display: flex; flex-direction: column; }
.rail__head { display: flex; align-items: center; justify-content: space-between; border-bottom: 1.5px solid var(--ink);
  padding-bottom: 8px; margin-bottom: 4px; }
.rail__head h2 { font-family: var(--font-display); font-weight: 800; font-size: 16px; letter-spacing: -.01em;
  margin: 0; text-transform: uppercase; }
a.mini { display: grid; grid-template-columns: 96px 1fr; gap: 14px; padding: 15px 0;
  border-bottom: 1px solid var(--line-2); align-items: start; }
a.mini:last-child { border-bottom: 0; }
a.mini .thumb { aspect-ratio: 16/10; border-radius: 7px; }
a.mini .play i { width: 34px; height: 34px; border-width: 1px; }
a.mini .play i::after { border-left-width: 9px; border-top-width: 6px; border-bottom-width: 6px; margin-left: 3px; }
a.mini .thumb__cat, a.mini .thumb__glyph { display: none; }
a.mini h3 { font-family: var(--font-display); font-weight: 700; font-size: 15.5px; line-height: 1.18;
  letter-spacing: -.01em; margin: 0 0 6px; color: var(--ink); text-wrap: balance; }
a.mini:hover h3 { color: var(--accent); }
a.mini .m-meta { font-family: var(--font-mono); font-size: 10.5px; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }

/* Section head + grid */
.section-head { display: flex; align-items: baseline; justify-content: space-between; border-top: 2px solid var(--ink);
  padding-top: 12px; margin: 8px 0 22px; }
.section-head h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(18px,2.4vw,24px);
  letter-spacing: -.02em; margin: 0; text-transform: uppercase; }
.section-head .label { color: var(--muted); }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px 24px; margin-bottom: 46px; }
@media (max-width: 820px){ .grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px){ .grid { grid-template-columns: 1fr; } }
a.card { display: flex; flex-direction: column; }
a.card .thumb { box-shadow: var(--shadow); }
a.card:hover .thumb { box-shadow: var(--shadow-lift); }
a.card .c-body { padding: 13px 2px 0; }
a.card .c-cat { color: var(--accent); margin-bottom: 7px; display: block; }
a.card h3 { font-family: var(--font-display); font-weight: 700; font-size: 18px; line-height: 1.16;
  letter-spacing: -.015em; margin: 0 0 9px; color: var(--ink); text-wrap: balance; }
a.card:hover h3 { color: var(--accent); }
a.card .c-meta { display: flex; align-items: center; gap: 9px; font-family: var(--font-mono); font-size: 11px;
  color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
a.card .c-meta .src { color: var(--ink-soft); font-weight: 600; }

/* Most watched */
.watched { background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 26px 28px;
  margin-bottom: 46px; box-shadow: var(--shadow); }
.watched h2 { font-family: var(--font-display); font-weight: 800; font-size: 20px; text-transform: uppercase;
  letter-spacing: -.01em; margin: 0 0 4px; display: flex; align-items: center; gap: 10px; }
.watched h2 .label { color: var(--accent); letter-spacing: .12em; }
.watched ol { list-style: none; margin: 16px 0 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px 40px; }
@media (max-width: 680px){ .watched ol { grid-template-columns: 1fr; } }
.watched li { border-top: 1px solid var(--line-2); }
.watched a { display: grid; grid-template-columns: 30px 1fr auto; gap: 14px; align-items: center; padding: 13px 0; }
.watched .rank { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--accent);
  font-variant-numeric: tabular-nums; text-align: center; }
.watched .w-title { font-family: var(--font-display); font-weight: 600; font-size: 15px; line-height: 1.2;
  color: var(--ink); letter-spacing: -.01em; }
.watched a:hover .w-title { color: var(--accent); }
.watched .views { font-family: var(--font-mono); font-size: 11px; color: var(--muted);
  font-variant-numeric: tabular-nums; white-space: nowrap; }

/* ---------- Article (single story) ---------- */
.article { max-width: 760px; margin: 6px auto 0; }
.article .kicker { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; color: var(--accent); }
.article h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(28px, 4.4vw, 44px);
  line-height: 1.05; letter-spacing: -.025em; margin: 0 0 14px; text-wrap: balance; }
.article .deck { font-size: 20px; color: var(--ink-soft); margin: 0 0 18px; }
.article .meta-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; font-family: var(--font-mono);
  font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .05em;
  border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); padding: 12px 0; margin-bottom: 22px; }
.player { position: relative; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 16/9; margin-bottom: 24px; }
/* Vertical YouTube Shorts get a portrait frame instead of pillarboxing. */
.player--short { aspect-ratio: 9/16; max-width: 360px; margin-left: auto; margin-right: auto; }
.player iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.article .prose { font-size: 18.5px; line-height: 1.72; color: var(--ink); }
.article .prose p { margin: 0 0 20px; }
.source-cta { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  background: var(--card); border: 1px solid var(--line); border-radius: 10px; padding: 16px 20px; margin: 26px 0;
  font-family: var(--font-mono); font-size: 13px; }
.source-cta .btn { background: var(--accent); color: var(--accent-ink); border-radius: 999px; padding: 9px 18px;
  font-weight: 700; text-transform: uppercase; letter-spacing: .06em; font-size: 12px; white-space: nowrap; }
.source-cta .btn:hover { filter: brightness(1.06); }

/* Comments */
.comments { max-width: 760px; margin: 40px auto 0; border-top: 2px solid var(--ink); padding-top: 22px; }
.comments h2 { font-family: var(--font-display); font-weight: 800; font-size: 20px; text-transform: uppercase;
  letter-spacing: -.01em; margin: 0 0 20px; }
.comment { padding: 16px 0; border-bottom: 1px solid var(--line-2); }
.comment .who { font-family: var(--font-mono); font-size: 11.5px; text-transform: uppercase; letter-spacing: .06em;
  color: var(--ink-soft); font-weight: 600; margin-bottom: 6px; display: flex; gap: 10px; align-items: center; }
.comment .who .when { color: var(--muted); font-weight: 400; }
.comment p { margin: 0; font-size: 16px; }
.no-comments { color: var(--muted); font-style: italic; }
.cform { margin-top: 26px; display: grid; gap: 12px; }
.cform .row { display: grid; grid-template-columns: 1fr; gap: 12px; }
.cform input[type=text], .cform textarea { width: 100%; font-family: var(--font-serif); font-size: 16px;
  color: var(--ink); background: var(--paper-2); border: 1px solid var(--line); border-radius: 8px; padding: 11px 13px; }
.cform textarea { min-height: 110px; resize: vertical; }
.cform input:focus, .cform textarea:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: transparent; }
.cform .hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.cform button { justify-self: start; background: var(--ink); color: var(--paper); border: 0; border-radius: 999px;
  padding: 11px 22px; font-family: var(--font-mono); font-weight: 700; text-transform: uppercase; letter-spacing: .07em;
  font-size: 12px; cursor: pointer; }
.cform button:hover { background: var(--accent); color: var(--accent-ink); }
.flash { background: color-mix(in srgb, var(--accent) 12%, var(--paper-2)); border: 1px solid var(--accent);
  color: var(--ink); border-radius: 8px; padding: 12px 15px; font-size: 14px; margin-bottom: 16px; }
.err { color: var(--accent); font-size: 13px; font-family: var(--font-mono); }

/* Pagination + empty */
.pager { display: flex; gap: 8px; justify-content: center; margin: 10px 0 46px; font-family: var(--font-mono); font-size: 13px; }
.pager a, .pager span { padding: 8px 13px; border: 1px solid var(--line); border-radius: 8px; color: var(--ink-soft); }
.pager a:hover { border-color: var(--ink); color: var(--ink); }
.pager .cur { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.empty { text-align: center; color: var(--muted); padding: 60px 0; font-size: 18px; }
.crumb { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: .06em;
  color: var(--muted); margin: 4px 0 18px; }
.crumb a:hover { color: var(--accent); }

/* Footer */
footer { border-top: 1.5px solid var(--ink); background: var(--paper); margin-top: 20px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 34px; padding: 40px 0 20px; }
@media (max-width: 720px){ .foot-grid { grid-template-columns: 1fr; gap: 24px; } }
.foot-brand .wordmark { font-size: 26px; }
.foot-brand p { color: var(--muted); font-size: 14px; max-width: 42ch; margin: 12px 0 0; }
.foot-col h4 { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .1em; font-size: 11px;
  color: var(--ink); margin: 4px 0 12px; }
.foot-col a { display: block; color: var(--ink-soft); font-size: 14px; padding: 5px 0; }
.foot-col a:hover { color: var(--accent); }
.trust { border-top: 1px solid var(--line-2); padding: 18px 0 34px; display: flex; align-items: center;
  justify-content: space-between; gap: 16px; flex-wrap: wrap; font-family: var(--font-mono); font-size: 11.5px;
  color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.trust b { color: var(--ink-soft); font-weight: 600; }

@media (prefers-reduced-motion: reduce) {
  .ticker__track, .ticker__tag .eq i { animation: none; }
  .ticker__tag .eq i { transform: scaleY(.7); }
  .reveal { opacity: 1 !important; transform: none !important; }
}
.reveal { opacity: 0; transform: translateY(14px); }
.reveal.in { opacity: 1; transform: none; transition: opacity .6s ease, transform .6s ease; }
