/* ============================================
   Norwegian Fairytales – Asbjørnsen and Moe
   Editorial Layer
   Accent: Enchanted Gold #9B7D2E
   Unique prefix: tale-
   ============================================ */

:root {
  --art-accent: #9B7D2E;
  --art-accent-dark: #7D6424;
  --art-accent-glow: rgba(155, 125, 46, 0.35);
  --art-accent-subtle: rgba(155, 125, 46, 0.06);
  --art-link: #2d6a3f;
  --art-link-hover: #9B7D2E;
  --art-link-underline: #9B7D2E;
}


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

.art-hero__media img {
  object-position: center 30%;
  animation: taleHeroKB 24s ease-in-out infinite alternate;
}
@keyframes taleHeroKB {
  0%   { transform: scale(1)   translate(0, 0); }
  100% { transform: scale(1.06) translate(0.5%, -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);
}


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

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


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

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