/* ============================================
   Be Safe at Sea
   Editorial Layer
   Accent: Ocean Blue #2E6B9B
   Unique prefix: sea-
   ============================================ */

:root {
  --art-accent: #2E6B9B;
  --art-accent-dark: #245680;
  --art-accent-glow: rgba(46, 107, 155, 0.35);
  --art-accent-subtle: rgba(46, 107, 155, 0.06);
  --art-link: #2d6a3f;
  --art-link-hover: #2E6B9B;
  --art-link-underline: #2E6B9B;
}


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

.art-hero__media img {
  object-position: center 30%;
  animation: seaHeroKB 24s ease-in-out infinite alternate;
}
@keyframes seaHeroKB {
  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);
}


/* ── Safety checklist ─────────────────────── */

.sea-checklist {
  max-width: 800px;
  margin: var(--space-xl) auto;
  padding: 0 var(--space-xl);
  list-style: none;
  counter-reset: safety;
}

.sea-checklist__item {
  counter-increment: safety;
  position: relative;
  padding: var(--space-md) 0 var(--space-md) 3.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-family: 'Glacial Indifference', var(--font-body), sans-serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--color-text, #1a1a1a);
}

.sea-checklist__item:last-child {
  border-bottom: none;
}

.sea-checklist__item::before {
  content: counter(safety);
  position: absolute;
  left: 0;
  top: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--art-accent);
  color: #fff;
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1;
}

.sea-checklist__item strong {
  font-weight: 700;
}


/* ── Video ────────────────────────────────── */

.sea-video {
  max-width: 800px;
  margin: var(--space-2xl) auto;
  padding: 0 var(--space-xl);
}

.sea-video__player {
  width: 100%;
  border-radius: 8px;
  background: #000;
}


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

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

  .sea-checklist__item {
    padding-left: 3rem;
  }

  .sea-checklist__item::before {
    width: 1.75rem;
    height: 1.75rem;
    font-size: 1rem;
  }
}


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

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