/* ============================================
   SAINT LUCIA DAY — Editorial Overrides
   Base: article-shared.css
   Prefix: luc-
   Accent: Candlelight gold #C4944A
   ============================================ */

:root {
  --art-accent: #C4944A;
  --art-accent-dark: #A67B3A;
  --art-accent-glow: rgba(196, 148, 74, 0.4);
  --art-accent-subtle: rgba(196, 148, 74, 0.06);
  --art-link: #8B6A2F;
  --art-link-hover: #6B5020;
  --art-link-underline: #C4944A;
  --art-ornament: #C4944A;
  --art-subtitle-color: #D4B07A;
  --art-hero-accent-line: #D4B07A;
}


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

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

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

.art-hero__overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 70%, rgba(196, 148, 74, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.art-hero__category {
  background: rgba(196, 148, 74, 0.85);
  color: #fff;
}

.art-hero {
  background: #19120a;
}

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

/* More visible paragraph breaks when text is split into multiple .art-prose blocks */
.art-section .art-prose + .art-prose {
  margin-top: var(--space-lg);
}


/* ============================================
   LUC-SPLIT — Side-by-side image + text
   ============================================ */
.luc-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  max-width: 900px;
  margin: var(--space-xl) auto;
}

.luc-split--reverse {
  direction: rtl;
}

.luc-split--reverse > * {
  direction: ltr;
}

.luc-split__fig {
  margin: 0;
}

.luc-split__img-wrap {
  overflow: hidden;
  border-radius: var(--radius-xl, 12px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.luc-split__img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}


.luc-split 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-xs);
}

.luc-split__text {
  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);
}

.luc-split__text p {
  margin: 0 0 var(--space-md);
}

.luc-split__text p:last-child {
  margin-bottom: 0;
}


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

.luc-spread figure {
  margin: 0;
}

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

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

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


/* ============================================
   LUC-LYRICS — Song lyrics block
   ============================================ */
.luc-lyrics {
  max-width: 500px;
  margin: var(--space-xl) auto;
  padding: var(--space-lg) var(--space-xl);
  background: var(--art-accent-subtle);
  border-radius: var(--radius-xl, 12px);
  text-align: center;
}

.luc-lyrics__title {
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--art-accent-dark);
  margin: 0 0 var(--space-md);
}

.luc-lyrics__verse {
  font-family: 'Glacial Indifference', var(--font-body), sans-serif;
  font-size: var(--text-base, 1rem);
  font-style: italic;
  line-height: 1.8;
  color: var(--color-text-secondary, #4a4a4a);
  margin: 0 0 var(--space-lg);
}

.luc-lyrics__verse:last-child {
  margin-bottom: 0;
}

/* Avoid top-edge crop on portrait figure media in this article */
.art-figure--portrait .art-figure__img-wrap img {
  animation: none;
  transform: none;
}


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

  .luc-split,
  .luc-split--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    max-width: 600px;
  }

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