/* ============================================
   Wakesurfing Wonderland in Flå, Hallingdal
   Editorial Layer
   Accent: Wave Teal #2E8B9A
   Unique prefix: wake-
   ============================================ */

:root {
  --art-accent: #2E8B9A;
  --art-accent-dark: #24707C;
  --art-accent-glow: rgba(46, 139, 154, 0.4);
  --art-accent-subtle: rgba(46, 139, 154, 0.06);
  --art-link: #2d6a3f;
  --art-link-hover: #2E8B9A;
  --art-link-underline: #2E8B9A;
}


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

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


/* ── Pullquote breathing room ───────────────── */

.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;
  }
}
