/* ============================================
   Bleke – the Unique Ice Age Salmon
   Editorial Layer
   Accent: Deep Fjord Blue #2A6B7C
   Unique prefix: bleke-
   ============================================ */

:root {
  --art-accent: #2A6B7C;
  --art-accent-dark: #1F5562;
  --art-accent-glow: rgba(42, 107, 124, 0.35);
  --art-accent-subtle: rgba(42, 107, 124, 0.06);
  --art-link: #2d6a3f;
  --art-link-hover: #2A6B7C;
  --art-link-underline: #2A6B7C;
}


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

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


/* ── Fact callout (ice age stat) ──────────── */

.bleke-fact {
  max-width: 800px;
  margin: var(--space-2xl) auto;
  padding: var(--space-lg) var(--space-xl);
  border-left: 3px solid var(--art-accent);
  background: var(--art-accent-subtle);
  border-radius: 0 6px 6px 0;
}

.bleke-fact__text {
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-text, #1a1a1a);
}

.bleke-fact__text strong {
  font-weight: 700;
  color: var(--art-accent);
  font-style: normal;
}


/* ── Stat row (key numbers) ───────────────── */

.bleke-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-2xl);
  max-width: 800px;
  margin: var(--space-2xl) auto;
  padding: 0 var(--space-xl);
}

.bleke-stat {
  text-align: center;
  flex: 0 1 auto;
}

.bleke-stat__number {
  display: block;
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: clamp(2.5rem, 7vw, 4rem);
  font-weight: 600;
  line-height: 1;
  color: var(--art-accent);
  letter-spacing: -0.02em;
}

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


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

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

  .bleke-stats {
    flex-direction: column;
    gap: var(--space-xl);
    align-items: center;
  }
}


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

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