/* ============================================
   SEVEN TYPES OF SNOW — Editorial Overrides
   Base: article-shared.css
   Prefix: snw-
   Accent: Winter blue #6A9BC3
   ============================================ */

:root {
  --art-accent: #6A9BC3;
  --art-accent-dark: #5483A8;
  --art-accent-glow: rgba(106, 155, 195, 0.4);
  --art-accent-subtle: rgba(106, 155, 195, 0.06);
  --art-link: #3d7ba8;
  --art-link-hover: #2d6090;
  --art-link-underline: #6A9BC3;
  --art-ornament: #6A9BC3;
  --art-subtitle-color: #9DC1DE;
  --art-hero-accent-line: #9DC1DE;
}


/* ── Hero overrides ── */
.art-hero__media img {
  object-position: center 35%;
  animation: snwHeroKB 30s ease-out forwards;
}

@keyframes snwHeroKB {
  0%   { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.art-hero__overlay {
  background:
    linear-gradient(180deg,
      rgba(15, 25, 35, 0.15) 0%,
      rgba(15, 25, 35, 0) 20%,
      rgba(15, 25, 35, 0.35) 55%,
      rgba(15, 25, 35, 0.88) 80%,
      rgba(15, 25, 35, 1) 100%
    );
}

.art-hero__overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 70%, rgba(106, 155, 195, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.art-hero__category {
  background: rgba(106, 155, 195, 0.85);
  color: #fff;
}

.art-hero {
  background: #0f1923;
}

/* ── Tighten intro → first section gap ── */
.art-intro + .art-section {
  padding-top: var(--space-md);
}


/* ============================================
   SNW-TYPE — Snow type card
   ============================================ */
.snw-type {
  max-width: 680px;
  margin: var(--space-xl) auto;
  padding: var(--space-lg) var(--space-xl);
  background: var(--art-accent-subtle);
  border-radius: var(--radius-xl, 12px);
  border-left: 3px solid var(--art-accent);
}

.snw-type__name {
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--art-accent-dark);
  margin: 0 0 var(--space-2xs);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.snw-type__english {
  font-family: 'Glacial Indifference', var(--font-body), sans-serif;
  font-size: var(--text-sm, 0.875rem);
  color: var(--color-text-muted, #888);
  margin: 0 0 var(--space-md);
  display: block;
}

.snw-type__desc {
  font-family: 'Glacial Indifference', var(--font-body), sans-serif;
  font-size: var(--text-lg, 1.125rem);
  line-height: 1.9;
  color: var(--color-text-secondary, #4a4a4a);
  margin: 0;
}

.snw-type__desc em {
  font-style: italic;
}


/* ============================================
   SNW-SPREAD — Full-width image break
   ============================================ */
.snw-spread {
  max-width: 1100px;
  margin: var(--space-2xl) auto;
}

.snw-spread figure {
  margin: 0;
}

.snw-spread__img-wrap {
  overflow: hidden;
  border-radius: var(--radius-xl, 12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.snw-spread__img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.snw-spread figcaption {
  font-family: 'Glacial Indifference', var(--font-body), sans-serif;
  font-size: var(--text-xs, 0.75rem);
  color: var(--color-text-muted, #888);
  font-style: italic;
  margin-top: var(--space-sm);
  text-align: center;
}


/* ── Responsive — Tablet (768px) ── */
@media (max-width: 768px) {
  .art-hero__media img {
    object-position: center 35%;
  }

  .snw-type {
    padding: var(--space-md) var(--space-lg);
  }

  .snw-spread {
    margin-left: var(--space-md);
    margin-right: var(--space-md);
  }

  .art-card-grid__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .art-card-grid {
    padding: var(--space-xl) var(--space-lg);
  }
}


/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .art-hero__media img {
    animation: none;
    transform: none;
  }
}
