/* ============================================
   From Pennsylvania, USA to Tingvollvågen
   Editorial Layer
   Accent: Eco Green #4A8C5C
   Unique prefix: ting-
   ============================================ */

:root {
  --art-accent: #4A8C5C;
  --art-accent-dark: #3B7249;
  --art-accent-glow: rgba(74, 140, 92, 0.4);
  --art-accent-subtle: rgba(74, 140, 92, 0.06);
  --art-link: #2d6a3f;
  --art-link-hover: #4A8C5C;
  --art-link-underline: #4A8C5C;
}


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

.art-hero__media img {
  object-position: center 35%;
  animation: tingHeroKB 22s ease-in-out infinite alternate;
}
@keyframes tingHeroKB {
  0%   { transform: scale(1)   translate(0, 0); }
  100% { transform: scale(1.06) translate(-1%, -1%); }
}


/* ── 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 30%;
  }
}


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

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