/* news/polish.css — News page micro-interactions polish bundle.
 * Scoped under [data-route="/news"] where specificity requires it.
 * Respects prefers-reduced-motion throughout.
 */

/* ─── CHIP ENTRANCE (is-active state) ───────────────────────────────────── */
@keyframes nw-chip-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Chip color transition — applies to all nw-chip transitions */
.nw-chip {
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

/* When a chip gains .is-active, run the entrance animation */
.nw-chip.is-active {
  animation: nw-chip-fadeInUp 0.25s ease-out both;
}

/* Stagger sibling chips slightly using nth-child offsets (capped at 5 items) */
.nw-chip:nth-child(2).is-active { animation-delay: 0.02s; }
.nw-chip:nth-child(3).is-active { animation-delay: 0.04s; }
.nw-chip:nth-child(4).is-active { animation-delay: 0.06s; }
.nw-chip:nth-child(5).is-active { animation-delay: 0.08s; }
.nw-chip:nth-child(6).is-active { animation-delay: 0.10s; }

@media (prefers-reduced-motion: reduce) {
  .nw-chip.is-active {
    animation: none;
  }
  .nw-chip {
    transition: none;
  }
}

/* ─── HERO NAV BUTTONS ───────────────────────────────────────────────────── */
.hero-nav {
  transition: transform 0.15s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.15s ease;
}

.hero-nav:hover {
  transform: scale(1.08) translateY(-1px);
  box-shadow: 0 0 12px rgba(255, 26, 26, 0.4);
}

@media (prefers-reduced-motion: reduce) {
  .hero-nav {
    transition: none;
  }
  .hero-nav:hover {
    transform: none;
    box-shadow: none;
  }
}

/* ════════════════════════════════════════════════════════════════════════
   NR-40 — IMMERSIVE VIDEO REEL
   Wall-to-wall vertical video feed that autoplays the centred clip.
   Scoped to /news so it never leaks into other routes.
   ════════════════════════════════════════════════════════════════════════ */

/* ── Reel filter bar (replaces the category chips on the VIDEOS tab) ── */
.nw-reel-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
  padding: 4px 16px 12px;
}
.nw-reel-bar[hidden] { display: none !important; }
.nw-reel-presets,
.nw-reel-hides { display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.nw-reel-hides-label {
  font-family: var(--f-mono, "JetBrains Mono", ui-monospace, monospace);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  color: #6A6A6A;
}
.nw-reel-preset {
  font-family: var(--f-mono, "JetBrains Mono", ui-monospace, monospace);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .1em;
  color: #C8C8C8;
  background: #141417;
  border: 1px solid #2A2A2A;
  border-radius: 999px;
  padding: 8px 18px;
  cursor: pointer;
  transition: color .15s ease, background-color .15s ease, border-color .15s ease, box-shadow .15s ease, transform .12s ease;
}
.nw-reel-preset:hover { color: #fff; border-color: #3a3a3a; }
.nw-reel-preset.is-active {
  color: #fff;
  background: #1c1c20;
  border-color: #4a4a4a;
}
.nw-reel-preset--hype.is-active {
  color: #fff;
  background: linear-gradient(135deg, #FF1A1A, #ff6a00);
  border-color: transparent;
  box-shadow: 0 0 18px rgba(255, 60, 0, .45);
}
.nw-reel-preset--hype:not(.is-active):hover { border-color: #FF1A1A; color: #fff; }

.nw-reel-hide {
  font-family: var(--f-mono, "JetBrains Mono", ui-monospace, monospace);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  color: #B8B8B8;
  background: #121214;
  border: 1px solid #262626;
  border-radius: 7px;
  padding: 6px 12px;
  cursor: pointer;
  transition: color .15s ease, background-color .15s ease, border-color .15s ease, opacity .15s ease;
}
.nw-reel-hide::before { content: "− "; color: #6A6A6A; font-weight: 800; }
.nw-reel-hide:hover { color: #fff; border-color: #3a3a3a; }
/* When a bucket is hidden, the toggle goes "off": struck + dim, with a + to re-add */
.nw-reel-hide.is-hidden {
  color: #6A6A6A;
  background: #0d0d0f;
  border-color: #1c1c1c;
  text-decoration: line-through;
}
.nw-reel-hide.is-hidden::before { content: "+ "; color: #FF1A1A; text-decoration: none; }
/* HYPE preset already isolates → hide toggles are moot; dim them */
.nw-reel-bar.preset-hype .nw-reel-hides { opacity: .35; pointer-events: none; }

/* ── The reel itself ──
   One clip owns the screen at a time. Snap lives on the page scroller (html,
   toggled via .nw-reel-mode in JS) — putting it on this non-scrolling div did
   nothing before. Each item is ~a full viewport tall, so scrolling lands you on
   the next video. */
.nw-feed-grid.is-reel {
  display: block;
  padding: 0;
}
html.nw-reel-mode {
  /* firm snap on every breakpoint so a scroll cleanly CATCHES the next clip
     (desktop used to be loose 'proximity' → it landed between videos) */
  scroll-snap-type: y mandatory;
  /* no sideways play — the fixed reel covers the viewport; this kills any few-px
     horizontal jiggle of the page behind it on a scroll/tap reflow */
  overflow-x: hidden;
}
html.nw-reel-mode body { overflow-x: hidden; }
.nw-reel-item {
  scroll-snap-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  /* one clip ≈ one screen, so a scroll-down delivers the next video */
  min-height: 88vh;
  min-height: 88dvh;
  padding: 1vh 0;
}
.nw-reel-stage {
  position: relative;
  /* As big as the available height allows, capped so it stays a tidy box on
     wide desktops — the clip genuinely dominates the screen. */
  width: min(100%, calc(82dvh * 16 / 9));
  max-width: 1180px;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 44px rgba(0, 0, 0, .6);
  transition: box-shadow .25s ease, transform .25s ease;
}
.nw-reel-item.is-active .nw-reel-stage {
  box-shadow: 0 0 0 1px rgba(255, 26, 26, .35), 0 14px 60px rgba(255, 26, 26, .18), 0 10px 40px rgba(0, 0, 0, .6);
}

/* Two stacked media layers fill the stage, bottom→top:
   1 poster (sharp still — slow Ken-Burns pan while the card is centred, so it
     reads as alive on scroll without ever risking YouTube's grey preview shell)
   2 iframe (HD YouTube, fades in once frames are actually PLAYING — desktop /
     Android autoplay, or one tap on iOS). */
.nw-reel-iframe,
.nw-reel-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.nw-reel-thumb {
  z-index: 1;
  background-size: cover;
  background-position: center;
  background-color: #0a0a0a;
  will-change: transform;
}
/* Ken-Burns: the centred clip's poster slowly pans + zooms → motion on scroll,
   guaranteed on every device, never a grey/broken frame. */
.nw-reel-item.is-active .nw-reel-thumb {
  animation: nw-reel-kenburns 16s ease-in-out infinite alternate;
}
@keyframes nw-reel-kenburns {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to   { transform: scale(1.12) translate3d(-1.5%, -2%, 0); }
}
/* HD iframe sits above the poster but fades in only once frames are PLAYING
   (not during buffering / the black YT shell). */
.nw-reel-iframe { z-index: 3; pointer-events: none; opacity: 0; transition: opacity .45s ease; }
.nw-reel-stage iframe {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
}
.nw-reel-item.is-playing .nw-reel-iframe { opacity: 1; }

/* Full-stage tap target → play full HD with sound. Sits above every media layer. */
.nw-reel-tap {
  position: absolute;
  inset: 0;
  z-index: 5;
  border: 0;
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

/* Sound chip (top-right) reflects global mute state */
.nw-reel-sound {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-mono, "JetBrains Mono", ui-monospace, monospace);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  color: #fff;
  background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  padding: 5px 11px;
  pointer-events: none;
}
.nw-reel-sound::before { content: "🔇 TAP TO PLAY"; }
.nw-feed-grid.reel-sound-on .nw-reel-sound::before { content: "🔊 SOUND ON"; }
/* Only surface the sound chip on the active clip to keep things clean */
.nw-reel-item:not(.is-active) .nw-reel-sound { opacity: 0; }

/* Bucket pill (top-left) */
.nw-reel-pill {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 6;
  font-family: var(--f-mono, "JetBrains Mono", ui-monospace, monospace);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  color: #fff;
  background: rgba(0, 0, 0, .5);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 6px;
  padding: 4px 9px;
  pointer-events: none;
}
.nw-reel-pill--hype { background: linear-gradient(135deg, #FF1A1A, #ff6a00); border-color: transparent; }
.nw-reel-pill--draft { color: #FFD27A; }
.nw-reel-pill--podcast { color: #9AD0FF; }

/* Bottom gradient + meta */
.nw-reel-grad {
  position: absolute;
  inset: auto 0 0 0;
  height: 45%;
  z-index: 4;
  background: linear-gradient(to top, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .35) 45%, transparent 100%);
  pointer-events: none;
}
.nw-reel-meta {
  position: absolute;
  left: 16px;
  right: 56px;
  bottom: 14px;
  z-index: 6;
  pointer-events: none;
}
.nw-reel-channel {
  display: block;
  font-family: var(--f-mono, "JetBrains Mono", ui-monospace, monospace);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #FF5A4D;
  margin-bottom: 4px;
}
.nw-reel-title {
  margin: 0;
  font-family: var(--f-display, "Graduate"), Georgia, serif;
  font-size: clamp(16px, 2.4vw, 22px);
  font-weight: 600;
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .8);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Open-on-YouTube affordance (bottom-right) */
.nw-reel-open {
  position: absolute;
  right: 12px;
  bottom: 14px;
  z-index: 7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 0, 0, .5);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, .18);
  transition: background-color .15s ease, transform .12s ease;
}
.nw-reel-open:hover { background: rgba(255, 26, 26, .85); transform: scale(1.06); }

/* Desktop: a big clip that owns the screen, one clean catch per scroll. */
@media (min-width: 881px) {
  /* Compact the header so the clip isn't pushed down by a big WATCH·THE REEL
     block + count line — keeps the FOR YOU/ALL/VIDEOS tabs + HYPE filter.
     Scoped to reel mode so the article tabs keep their normal header. */
  html.nw-reel-mode .card.sn--c_feed > .card-head { display: none; }
  html.nw-reel-mode .nw-meta { display: none; }
  html.nw-reel-mode .nw-feed-tabs { margin-bottom: 8px; }
  html.nw-reel-mode .card.sn--c_feed { padding-top: 10px; }

  .nw-reel-item {
    min-height: 94vh; min-height: 94dvh; padding: 0;
    scroll-snap-stop: always;   /* desktop: one wheel scroll = one clean catch */
  }
  /* Fill the content column: size by height up to the full available width so
     the video is as big as fits, centred, instead of a 1100px island. */
  .nw-reel-stage { width: min(100%, calc(88dvh * 16 / 9)); max-width: 1600px; }
}

/* Mobile (Sleeper/TikTok-style): every clip FILLS the whole screen — no
   letterbox, no dead space. The stage is the full viewport and the 16/9 source
   is cover-cropped to fill it; caption floats above the bottom tab bar. */
/* Phones: portrait OR landscape (a rotated phone is wide but short, so it escapes
   max-width:720 — catch it with the landscape+short-height query so the immersive
   reel still applies when you flip the phone). */
@media (max-width: 720px), (orientation: landscape) and (max-height: 540px) {
  html.nw-reel-mode { scroll-snap-type: y mandatory; } /* firm one-at-a-time on touch */
  /* Full-bleed breakout: the reel feed escapes the page's content + card padding
     to span the whole viewport width (no left/right dead bars). Scoped to reel
     mode so the card padding still frames the header above it; lift the card's
     overflow:hidden so the breakout isn't clipped back to the card box. */
  html.nw-reel-mode .card.sn--c_feed { overflow: visible; }
  /* The reel is its OWN fixed full-screen scroller (not the page). Scrolling an
     inner element doesn't hide/show the mobile URL bar, so the 100dvh clips no
     longer resize mid-scroll — that resize was what made them jump/jitter on
     fast scroll. overscroll-behavior:contain kills bounce-chaining. z-index sits
     under the chrome sidebar(70)/fab(86)/nav(90). */
  html.nw-reel-mode .nw-feed-grid.is-reel {
    position: fixed;
    /* pin to BOTH edges — NOT width:100vw. 100vw includes the scrollbar gutter,
       so a scroll/tap reflow nudged the reel right and exposed a few-px gap on
       the left. left+right:0 = exact viewport width, no gutter, no shift. */
    top: 0; left: 0; right: 0;
    height: 100dvh;
    margin: 0;
    overflow-y: scroll;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    scroll-snap-type: y mandatory;
    z-index: 1;
    scrollbar-width: none;
  }
  html.nw-reel-mode .nw-feed-grid.is-reel::-webkit-scrollbar { width: 0; height: 0; }
  .nw-reel-item {
    min-height: 100%;
    height: 100%;
    padding: 0;
    scroll-snap-align: start;
    /* no scroll-snap-stop: let momentum flow smoothly; mandatory still snaps */
  }
  .nw-reel-stage {
    width: 100%;
    height: 100%;
    max-width: none;
    aspect-ratio: auto;
    border-radius: 0;
    box-shadow: none;
  }
  .nw-reel-item.is-active .nw-reel-stage { box-shadow: none; }
  .nw-reel-item.is-active .nw-reel-thumb { animation: none; }  /* no Ken-Burns crop on mobile */

  /* ── LANDSCAPE clips (talk / PTI, 16:9): show the WHOLE play (fit to width)
     over a blurred fill of the same frame — no crop, no black bars. ── */
  .nw-reel-item:not(.is-vert) .nw-reel-stage::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: var(--poster);
    background-size: cover;
    background-position: center;
    filter: blur(34px) brightness(.5) saturate(1.15);
    transform: scale(1.2);
  }
  .nw-reel-item:not(.is-vert) .nw-reel-thumb {
    background-size: contain !important;
    background-repeat: no-repeat;
    background-color: transparent;
  }
  .nw-reel-item:not(.is-vert) .nw-reel-stage iframe {
    width: 100vw !important;
    height: 56.25vw !important;          /* 16:9 fit to full width */
    min-width: 0 !important;
    min-height: 0 !important;
    max-height: 100dvh !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%);
  }

  /* ── VERTICAL Shorts (shot 9:16): YouTube pillarboxes them inside the 16:9
     embed (gray side bars). Cover-crop the 16:9 to the CENTRE strip — that strip
     IS the short, so it fills the screen full-height and the gray bars are
     cropped off. Poster covers to match. ── */
  .nw-reel-item.is-vert .nw-reel-thumb { background-size: cover !important; }
  .nw-reel-item.is-vert .nw-reel-stage iframe {
    width: 100vw !important;
    height: 56.25vw !important;
    min-height: 100dvh !important;
    min-width: 177.78dvh !important;     /* 16:9 sized to cover portrait → centre = the short */
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%);
  }

  /* Clean video: no in-video badges/buttons (Brock). Tap still mutes. */
  .nw-reel-pill,
  .nw-reel-sound,
  .nw-reel-open { display: none !important; }

  /* caption stays (1–2 lines), lifted above the chrome.js bottom tab bar */
  .nw-reel-meta { left: 16px; right: 16px; bottom: calc(78px + env(safe-area-inset-bottom)); }
  .nw-reel-grad { height: 52%; }
  .nw-reel-bar { gap: 10px 12px; padding: 4px 12px 12px; }
  .nw-reel-preset { padding: 8px 14px; font-size: 13px; }
  .nw-reel-title { font-size: clamp(18px, 5vw, 23px); }

  /* 100%-video on first paint: float the controls OVER the top of the reel so
     even the first screen is pure video, no header band. The big WATCH·THE REEL
     block + count are dropped; tabs + HYPE/HIDE filter become a translucent
     top overlay. Scoped to reel mode → FOR YOU / ALL article tabs keep their
     normal in-flow header. */
  html.nw-reel-mode .card.sn--c_feed > .card-head { display: none; }
  html.nw-reel-mode .nw-meta { display: none; }
  html.nw-reel-mode .nw-feed-tab-hint { display: none; }
  /* zero the top offsets so the first clip starts at the very top of the viewport */
  html.nw-reel-mode .content { padding-top: 0; }
  html.nw-reel-mode .row-nw-feed { margin-top: 0; }
  html.nw-reel-mode .card.sn--c_feed { padding-top: 0; }
  /* float tabs + filter as a translucent top overlay above the video */
  html.nw-reel-mode .nw-feed-tabs,
  html.nw-reel-mode .nw-reel-bar {
    position: fixed;
    left: 0; right: 0;
    z-index: 40;            /* over the video, under the chrome nav (z90) */
    margin: 0;
    border: 0;
  }
  html.nw-reel-mode .nw-feed-tabs {
    top: 0;
    justify-content: center;
    gap: 6px;
    padding: calc(env(safe-area-inset-top) + 8px) 12px 8px;
    background: linear-gradient(to bottom, rgba(0,0,0,.62), rgba(0,0,0,.18) 75%, transparent);
  }
  html.nw-reel-mode .nw-reel-bar {
    top: calc(env(safe-area-inset-top) + 46px);
    background: transparent;
    padding: 0 12px;
  }
  /* push the in-video pill + sound chip below the floating controls so they
     don't collide */
  html.nw-reel-mode .nw-reel-sound,
  html.nw-reel-mode .nw-reel-pill { top: calc(env(safe-area-inset-top) + 92px); }
}

/* ── Rotate to LANDSCAPE on a phone → just works, no button. The cover/fit logic
   flips: truly-landscape clips now COVER the wide screen; vertical Shorts show at
   their natural 9:16 centred with a blurred fill on the sides. ── */
@media (orientation: landscape) and (max-height: 540px) {
  /* landscape clips fill the wide screen */
  .nw-reel-item:not(.is-vert) .nw-reel-stage::before { display: none; }
  .nw-reel-item:not(.is-vert) .nw-reel-thumb {
    background-size: cover !important;
    background-color: #0a0a0a;
  }
  .nw-reel-item:not(.is-vert) .nw-reel-stage iframe {
    width: 100vw !important;
    height: 56.25vw !important;
    min-height: 100dvh !important;
    min-width: 177.78dvh !important;
    top: 50% !important; left: 50% !important;
    transform: translate(-50%, -50%);
  }
  /* vertical Shorts: natural 9:16 centred, blurred backdrop fills the wide sides */
  .nw-reel-item.is-vert .nw-reel-stage::before {
    content: "";
    position: absolute; inset: 0; z-index: 0;
    background-image: var(--poster);
    background-size: cover; background-position: center;
    filter: blur(34px) brightness(.5) saturate(1.15);
    transform: scale(1.2);
  }
  .nw-reel-item.is-vert .nw-reel-thumb {
    background-size: contain !important;
    background-color: transparent;
  }
  .nw-reel-item.is-vert .nw-reel-stage iframe {
    height: 100dvh !important;
    width: 56.25dvh !important;          /* 9:16 of the height */
    min-width: 0 !important; min-height: 0 !important;
    max-width: 100vw !important;
    top: 50% !important; left: 50% !important;
    transform: translate(-50%, -50%);
  }
  .nw-reel-meta { left: 16px; right: 16px; bottom: calc(10px + env(safe-area-inset-bottom)); }

  /* Landscape = pure full-screen video: hide ALL our chrome (the chrome.js bottom
     tab bar + sign-in FAB, the top tabs/filter, the clean tab, caption). Rotate
     back to portrait to get the buttons back. (The browser's own top/bottom bars
     are outside our control on iOS web; reelGoFullscreen() drops them on Android.) */
  html.nw-reel-mode .sns-bottombar,
  html.nw-reel-mode .sns-signin-fab,
  html.nw-reel-mode .nw-feed-tabs,
  html.nw-reel-mode .nw-reel-bar,
  html.nw-reel-mode .nw-reel-clean-toggle,
  html.nw-reel-mode .nw-reel-meta,
  html.nw-reel-mode .nw-reel-grad { display: none !important; }
}

/* ── Clean-mode: a transparent top-left tab to hide the caption + nav so nothing
   covers the clip while doom-scrolling. The SNS label animates into the corner so
   you notice it; tap again to bring everything back. ── */
.nw-reel-clean-toggle {
  position: fixed;
  top: calc(env(safe-area-inset-top) + 8px);
  left: 8px;
  z-index: 95;                 /* above the chrome nav so it's always reachable */
  display: none;
  align-items: center;
  gap: 6px;
  padding: 6px 11px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, .26);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.nw-reel-clean-label {
  font-family: var(--f-mono, "JetBrains Mono", ui-monospace, monospace);
  font-size: 12px; font-weight: 800; letter-spacing: .16em; color: #fff;
  opacity: .9; max-width: 60px; overflow: hidden; white-space: nowrap;
  transition: opacity .35s ease, max-width .35s ease, transform .35s ease;
}
.nw-reel-clean-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #FF1A1A; flex: none;
}
/* show the tab only in the reel, on phones (Brock's doom-scroll context) */
@media (max-width: 720px), (orientation: landscape) and (max-height: 540px) {
  html.nw-reel-mode .nw-reel-clean-toggle { display: inline-flex; }
}
/* clean ON: caption + nav fade and slide toward the top-left tab; label collapses
   into the dot, which pulses so you know where the controls went */
html.nw-reel-clean .nw-reel-meta,
html.nw-reel-clean .nw-reel-grad {
  opacity: 0; transform: translate(-14px, -10px) scale(.95); pointer-events: none;
  transition: opacity .4s ease, transform .4s ease;
}
html.nw-reel-clean .nw-feed-tabs,
html.nw-reel-clean .nw-reel-bar {
  opacity: 0; transform: translate(-42vw, -22px) scale(.65); pointer-events: none;
  transition: opacity .45s ease, transform .45s ease;
}
/* keep the label readable in clean mode (now reads "SHOW") so it's always obvious
   the tab brings everything back */
html.nw-reel-clean .nw-reel-clean-toggle { background: rgba(0, 0, 0, .42); }
html.nw-reel-clean .nw-reel-clean-dot { animation: nw-clean-pulse 1.5s ease-out 2; }
@keyframes nw-clean-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 26, 26, .6); }
  100% { box-shadow: 0 0 0 13px rgba(255, 26, 26, 0); }
}

@media (prefers-reduced-motion: reduce) {
  html.nw-reel-mode { scroll-snap-type: none; }
  .nw-reel-item.is-active .nw-reel-thumb { animation: none; }
  html.nw-reel-clean .nw-reel-dot,
  html.nw-reel-clean .nw-reel-clean-dot { animation: none; }
  .nw-reel-stage,
  .nw-reel-open,
  .nw-reel-preset { transition: none; }
}
