/* ============================================
   The History of the Norwegian Children's Parade
   Editorial Layer
   Accent: Norwegian Red #BA3232
   Unique prefix: parade-
   ============================================ */

:root {
  --art-accent: #BA3232;
  --art-accent-dark: #982828;
  --art-accent-glow: rgba(186, 50, 50, 0.35);
  --art-accent-subtle: rgba(186, 50, 50, 0.06);
  --art-link: #2d6a3f;
  --art-link-hover: #BA3232;
  --art-link-underline: #BA3232;
}


/* ── Hero ──────────────────────────────────── */

.art-hero__media img {
  object-position: center 25%;
  animation: paradeHeroKB 24s ease-in-out infinite alternate;
}
@keyframes paradeHeroKB {
  0%   { transform: scale(1)   translate(0, 0); }
  100% { transform: scale(1.05) translate(0, -1.5%); }
}


/* ── Images match prose width ──────────────── */

.art-figure.art-figure--spread {
  max-width: 800px;
}


/* ── Quote breathing room ─────────────────── */

.art-quote {
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.art-pullquote {
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}


/* ── Year callout ─────────────────────────── */

.parade-year {
  max-width: 800px;
  margin: var(--space-2xl) auto;
  padding: 0 var(--space-xl);
  text-align: center;
}

.parade-year__number {
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 600;
  line-height: 1;
  color: var(--art-accent);
  letter-spacing: -0.02em;
}

.parade-year__label {
  display: block;
  margin-top: var(--space-sm);
  font-family: 'Glacial Indifference', var(--font-body), sans-serif;
  font-size: var(--text-sm, 0.875rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted, #666);
}


/* ── Responsive ─────────────────────────── */

@media (max-width: 768px) {
  .art-hero__media img {
    object-position: center 20%;
  }
}


/* ── Reduced motion ─────────────────────── */

@media (prefers-reduced-motion: reduce) {
  .art-hero__media img {
    animation: none;
  }
}
