/* ============================================================
   INVERSE TUTORIAL — Streaming Dark Neon
   Poppins · pure CSS background · smooth hovers
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg: #000000;
  --surface: #0c0c0c;
  --surface-2: #141414;
  --surface-3: #1c1c1c;
  --fg: #ffffff;
  --fg-muted: #a0a0a0;
  --fg-dim: #555555;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.18);
  --neon: #ffffff;
  --neon-glow: rgba(255, 255, 255, 0.6);
  --red: #8b0000;
  --red-bright: #c41e3a;
  --red-glow: rgba(196, 30, 58, 0.4);

  --font: 'Poppins', system-ui, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --gutter: clamp(1.25rem, 4vw, 3rem);
  --maxw: 1400px;
}

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

/* ============================================================
   HIDE SCROLLBAR (keep scroll functionality)
   ============================================================ */

html {
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

html::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

body {
  font-family: var(--font);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* ============================================================
   CURSOR GLOW (follows mouse — CSS for the glow element)
   ============================================================ */

.cursor-glow {
  position: fixed;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.02) 35%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  will-change: left, top;
  mix-blend-mode: screen;
}

.cursor-glow.active {
  opacity: 1;
}

img, video, iframe { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }

/* ============================================================
   POLICE SIREN BACKGROUND (smooth, diffuse red/blue pulses)
   ============================================================ */

.bg-neon {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
  background: var(--bg);
}

/* red light — upper left */
.bg-neon .siren-red {
  position: absolute;
  width: 70vmax;
  height: 70vmax;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220, 20, 30, 0.5), rgba(140, 0, 0, 0.15) 45%, transparent 70%);
  filter: blur(90px);
  top: -30%;
  left: -25%;
  animation: sirenRed 4s ease-in-out infinite;
  will-change: transform, opacity;
}

/* blue light — lower right */
.bg-neon .siren-blue {
  position: absolute;
  width: 65vmax;
  height: 65vmax;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 80, 220, 0.45), rgba(10, 30, 120, 0.12) 45%, transparent 70%);
  filter: blur(90px);
  bottom: -30%;
  right: -20%;
  animation: sirenBlue 4s ease-in-out infinite;
  will-change: transform, opacity;
}

/* ambient center glow — mixes red/blue for purple tint */
.bg-neon .siren-ambient {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50vmax;
  height: 50vmax;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(100, 30, 140, 0.12), transparent 65%);
  transform: translate(-50%, -50%);
  filter: blur(80px);
  animation: sirenAmbient 8s ease-in-out infinite;
  will-change: opacity;
}

/* Red pulses up when blue fades, and vice versa — offset by half cycle */
@keyframes sirenRed {
  0%   { opacity: 0.2; transform: translate(0, 0) scale(0.95); }
  25%  { opacity: 0.9; transform: translate(5vw, 3vh) scale(1.08); }
  50%  { opacity: 0.15; transform: translate(8vw, 5vh) scale(1.02); }
  75%  { opacity: 0.6; transform: translate(3vw, 1vh) scale(1.05); }
  100% { opacity: 0.2; transform: translate(0, 0) scale(0.95); }
}

@keyframes sirenBlue {
  0%   { opacity: 0.9; transform: translate(0, 0) scale(1.05); }
  25%  { opacity: 0.15; transform: translate(-4vw, -2vh) scale(0.95); }
  50%  { opacity: 0.85; transform: translate(-7vw, -4vh) scale(1.1); }
  75%  { opacity: 0.2; transform: translate(-3vw, -1vh) scale(0.98); }
  100% { opacity: 0.9; transform: translate(0, 0) scale(1.05); }
}

@keyframes sirenAmbient {
  0%, 100% { opacity: 0.5; }
  25%  { opacity: 0.8; }
  50%  { opacity: 0.4; }
  75%  { opacity: 0.9; }
}

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem var(--gutter);
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.brand-mark {
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--fg);
  text-shadow: 0 0 12px var(--neon-glow), 0 0 24px rgba(255, 255, 255, 0.3);
}

.brand-sub {
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.site-nav { display: flex; gap: 0.5rem; }

.site-nav a {
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.6rem 1.1rem;
  border-radius: 8px;
  color: var(--fg-muted);
  transition: all 0.25s var(--ease);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--fg);
  background: rgba(255, 255, 255, 0.06);
  text-shadow: 0 0 10px var(--neon-glow);
}

/* ============================================================
   MAIN
   ============================================================ */

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

/* ============================================================
   HERO
   ============================================================ */

.hero {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 0 4rem;
  max-width: 950px;
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 1.5rem;
  text-shadow: 0 0 12px var(--red-glow);
}

.hero-title {
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--fg);
  text-shadow:
    0 0 20px var(--neon-glow),
    0 0 40px rgba(255, 255, 255, 0.3);
}

.hero-title em {
  font-style: normal;
  color: var(--red-bright);
  text-shadow:
    0 0 20px var(--red-glow),
    0 0 40px var(--red-glow);
}

.hero-lede {
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.6;
  color: var(--fg-muted);
  max-width: 42rem;
  margin-top: 1.5rem;
  font-weight: 300;
}

.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================================
   BUTTONS (neon)
   ============================================================ */

.cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.75rem;
  border: 2px solid var(--fg);
  color: var(--fg);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border-radius: 10px;
  transition: all 0.3s var(--ease);
  background: rgba(255, 255, 255, 0);
}

.cta:hover {
  background: var(--fg);
  color: var(--bg);
  box-shadow:
    0 0 16px var(--neon-glow),
    0 0 32px rgba(255, 255, 255, 0.4),
    0 0 64px rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.cta-arrow { transition: transform 0.3s var(--ease); }
.cta:hover .cta-arrow { transform: translateX(4px); }

.cta-ghost {
  border-color: var(--border-strong);
  color: var(--fg-muted);
}

.cta-ghost:hover {
  background: transparent;
  color: var(--fg);
  border-color: var(--fg);
  box-shadow: 0 0 12px var(--neon-glow);
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 4rem 0 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.section-no { display: none; }

.section-head h2 {
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  letter-spacing: -0.005em;
  color: var(--fg);
}

.section-link {
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--fg-muted);
  transition: all 0.25s var(--ease);
  letter-spacing: 0.02em;
}

.section-link:hover {
  color: var(--fg);
  text-shadow: 0 0 10px var(--neon-glow);
}

/* ============================================================
   VIDEO CARDS (streaming-style)
   ============================================================ */

.featured-grid,
.archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.5rem;
}

.featured-card {
  display: block;
  background: var(--surface);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease);
  position: relative;
}

.featured-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.6),
    0 0 30px rgba(220, 20, 30, 0.06),
    0 0 30px rgba(30, 80, 220, 0.04);
}

.featured-thumb {
  aspect-ratio: 16 / 9;
  background: var(--surface-2);
  overflow: hidden;
  position: relative;
}

.featured-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
  transition: all 0.5s var(--ease);
}

.featured-card:hover .featured-thumb img {
  filter: brightness(1.05);
  transform: scale(1.06);
}

.featured-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.5) 100%);
  pointer-events: none;
}

/* play badge */
.featured-thumb::before {
  content: "▶";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  padding-left: 4px;
  opacity: 0;
  transition: all 0.35s var(--ease);
  z-index: 2;
  box-shadow: 0 0 24px var(--neon-glow);
}

.featured-card:hover .featured-thumb::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.featured-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  padding: 1rem 1.25rem 0.5rem;
}

.featured-meta span:last-child { color: var(--red-bright); }

.featured-title {
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.3;
  color: var(--fg);
  padding: 0 1.25rem;
  transition: text-shadow 0.3s var(--ease);
}

.featured-card:hover .featured-title {
  text-shadow: 0 0 10px var(--neon-glow);
}

.featured-desc {
  margin-top: 0.5rem;
  padding: 0 1.25rem 1.25rem;
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================================================
   ARCHIVE controls
   ============================================================ */

.archive-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.search-box { flex-grow: 1; max-width: 380px; }

.search-box input {
  width: 100%;
  padding: 0.85rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--fg);
  font-size: 0.95rem;
  outline: none;
  border-radius: 10px;
  transition: all 0.25s var(--ease);
}

.search-box input:focus {
  border-color: var(--fg);
  box-shadow: 0 0 0 1px var(--fg), 0 0 16px var(--neon-glow);
  background: var(--surface-2);
}

.search-box input::placeholder { color: var(--fg-dim); }

.view-toggle {
  display: flex;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 4px;
}

.view-toggle button {
  padding: 0.5rem 1.1rem;
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--fg-muted);
  border-radius: 7px;
  transition: all 0.25s var(--ease);
}

.view-toggle button:hover { color: var(--fg); }

.view-toggle button[aria-pressed="true"] {
  background: var(--fg);
  color: var(--bg);
  box-shadow: 0 0 12px var(--neon-glow);
}

/* archive list */
.archive-list {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.archive-row {
  display: grid;
  grid-template-columns: 4rem 1fr auto;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  align-items: center;
  transition: all 0.25s var(--ease);
}

.archive-row:last-child { border-bottom: none; }

.archive-row:hover {
  background: var(--surface-2);
}

.archive-row:hover .archive-title {
  color: var(--fg);
  text-shadow: 0 0 10px var(--neon-glow);
}

.archive-no {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--fg-dim);
  letter-spacing: 0.05em;
  transition: color 0.25s var(--ease);
}

.archive-row:hover .archive-no { color: var(--red-bright); }

.archive-main { display: flex; flex-direction: column; gap: 0.3rem; }

.archive-title {
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.3;
  color: var(--fg);
  transition: all 0.25s var(--ease);
}

.archive-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  max-width: 60ch;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.archive-meta {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-align: right;
  white-space: nowrap;
  font-weight: 500;
}

/* empty state */
.empty-state {
  padding: 4rem 2rem;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.empty-state h3 {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

.empty-state p { color: var(--fg-muted); }

/* ============================================================
   WATCH PAGE
   ============================================================ */

.watch { padding: 2rem 0 5rem; }

.watch-back {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--fg-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  transition: all 0.25s var(--ease);
}

.watch-back:hover {
  color: var(--fg);
  text-shadow: 0 0 10px var(--neon-glow);
}

.watch-frame {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(196, 30, 58, 0.08);
}

.watch-frame-meta { display: none; }

.watch-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  width: 100%;
}

.watch-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.watch-header { margin-top: 2.5rem; max-width: 850px; }

.watch-eyebrow {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 1rem;
  text-shadow: 0 0 10px var(--red-glow);
}

.watch-title {
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  color: var(--fg);
  text-shadow: 0 0 16px var(--neon-glow);
}

.watch-desc {
  margin-top: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--fg-muted);
  max-width: 65ch;
  font-weight: 300;
}

/* ============================================================
   LOGIN
   ============================================================ */

.access {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - 200px);
  max-width: 440px;
  margin: 0 auto;
  padding: 3rem 0;
}

.access-title {
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.1;
  margin-bottom: 0.75rem;
  text-shadow: 0 0 20px var(--neon-glow);
}

.access-title em {
  font-style: normal;
  color: var(--red-bright);
  text-shadow: 0 0 20px var(--red-glow);
}

.access-lede {
  color: var(--fg-muted);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
  font-weight: 300;
}

.field { margin-bottom: 1.25rem; }

.field label {
  display: block;
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 0.6rem;
  letter-spacing: 0.02em;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.9rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--fg);
  font-size: 1rem;
  outline: none;
  border-radius: 10px;
  transition: all 0.25s var(--ease);
}

.field input:focus,
.field textarea:focus {
  border-color: var(--fg);
  box-shadow: 0 0 0 1px var(--fg), 0 0 16px var(--neon-glow);
  background: var(--surface-2);
}

.field textarea {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}

.error-msg {
  color: var(--red-bright);
  font-weight: 500;
  font-size: 0.9rem;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(196, 30, 58, 0.08);
  border: 1px solid rgba(196, 30, 58, 0.3);
  border-radius: 8px;
  display: none;
}

.error-msg.show { display: block; }

/* ============================================================
   ADMIN PANEL
   ============================================================ */

.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 3rem 0 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.panel-title {
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.1;
  text-shadow: 0 0 20px var(--neon-glow);
}

.panel-title em {
  font-style: normal;
  color: var(--red-bright);
  text-shadow: 0 0 20px var(--red-glow);
}

.panel-meta {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg-muted);
}

.panel-meta span { color: var(--red-bright); font-weight: 600; }

.logout-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg-muted);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.25s var(--ease);
}

.logout-link:hover {
  color: var(--fg);
  background: rgba(255, 255, 255, 0.06);
}

.panel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 4rem;
}

@media (min-width: 900px) {
  .panel-grid {
    grid-template-columns: 1fr 1.5fr;
    align-items: start;
  }
}

.panel-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
}

.panel-card h3 {
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}

.panel-card .panel-card-sub {
  color: var(--fg-muted);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
  font-weight: 300;
}

.panel-list { }

.panel-row {
  display: grid;
  grid-template-columns: 2.5rem 1fr auto;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}

.panel-row:last-child { border-bottom: none; }

.panel-row-no {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--fg-dim);
}

.panel-row-title {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.3;
  color: var(--fg);
}

.panel-row-meta {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-top: 0.2rem;
  font-weight: 400;
}

.btn-delete {
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--fg-muted);
  padding: 0.5rem 0.95rem;
  border-radius: 8px;
  transition: all 0.25s var(--ease);
  border: 1px solid transparent;
}

.btn-delete:hover {
  color: var(--fg);
  background: rgba(196, 30, 58, 0.15);
  border-color: rgba(196, 30, 58, 0.4);
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  margin-top: 6rem;
  padding: 2.5rem var(--gutter);
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid var(--border);
}

.site-footer-text {
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-weight: 400;
}

.site-footer-sign {
  font-size: 0.85rem;
  color: var(--red-bright);
  font-weight: 500;
  text-shadow: 0 0 10px var(--red-glow);
}

/* ============================================================
   MANIFESTO (home final block)
   ============================================================ */

.manifesto {
  padding: 5rem 0 3rem;
  max-width: 900px;
}

.manifesto p {
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.3;
  color: var(--fg);
}

.manifesto p em {
  font-style: normal;
  color: var(--red-bright);
  text-shadow: 0 0 16px var(--red-glow);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 700px) {
  .site-header { padding: 1rem var(--gutter); }
  .site-nav { gap: 0; }
  .site-nav a { padding: 0.5rem 0.75rem; font-size: 0.85rem; }
  .brand-sub { display: none; }
  .archive-row {
    grid-template-columns: 2.5rem 1fr;
    gap: 1rem;
    padding: 1rem;
  }
  .archive-meta { grid-column: 2; text-align: left; }
  .featured-grid, .archive-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 2rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

:focus-visible {
  outline: 2px solid var(--fg);
  outline-offset: 2px;
}

.hidden { display: none !important; }

/* hide broadcast bar from previous versions */
.broadcast-bar { display: none; }
