/* ============================================
   LORDEHYTTA — Editorial Overrides
   Base: article-shared.css
   Prefix: lrd-
   Accent: Highland slate #6B7F5E (muted forest green)
   ============================================ */

:root {
  --art-accent: #6B7F5E;
  --art-accent-dark: #566A4B;
  --art-accent-glow: rgba(107, 127, 94, 0.4);
  --art-accent-subtle: rgba(107, 127, 94, 0.06);
  --art-link: #4a6b3f;
  --art-link-hover: #3a5530;
  --art-link-underline: #6B7F5E;
  --art-ornament: #6B7F5E;
  --art-subtitle-color: #9AAF8D;
  --art-hero-accent-line: #9AAF8D;
}


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

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

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

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

.art-hero__category {
  background: rgba(107, 127, 94, 0.85);
  color: #fff;
}

.art-hero {
  background: #141612;
}

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


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

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

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

.lrd-split__fig {
  margin: 0;
}

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

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

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

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

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

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


/* ============================================
   LRD-BLEED — Full-width dramatic image
   ============================================ */
.lrd-bleed {
  max-width: 1100px;
  margin: var(--space-2xl) auto;
}

.lrd-bleed figure {
  margin: 0;
}

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

.lrd-bleed__img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

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


/* ============================================
   LRD-FACT — Historical fact callout
   ============================================ */
.lrd-fact {
  max-width: 680px;
  margin: var(--space-xl) auto;
  padding: var(--space-lg) var(--space-xl);
  background: var(--art-accent-subtle);
  border-left: 3px solid var(--art-accent);
  border-radius: 0 var(--radius-xl, 12px) var(--radius-xl, 12px) 0;
}

.lrd-fact__icon {
  font-size: 1.5rem;
  margin-bottom: var(--space-xs);
}

.lrd-fact__text {
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-style: italic;
  line-height: 1.7;
  color: var(--color-text-secondary, #4a4a4a);
}


/* ============================================
   LRD-STATS — Key numbers
   ============================================ */
.lrd-stats {
  max-width: 680px;
  margin: var(--space-xl) auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-xl);
  background: var(--art-accent-subtle);
  border-radius: var(--radius-xl, 12px);
}

.lrd-stats__item {
  text-align: center;
}

.lrd-stats__number {
  display: block;
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--art-accent);
}

.lrd-stats__label {
  display: block;
  margin-top: var(--space-xs);
  font-family: 'Glacial Indifference', var(--font-body), sans-serif;
  font-size: var(--text-sm, 0.875rem);
  color: var(--color-text-muted, #888);
  line-height: 1.4;
}

.lrd-inline-cta {
  margin: var(--space-2xl) auto;
}

.lrd-inline-cta .art-link-card {
  background: var(--n-cream, #F1EBE3);
}

.lrd-inline-cta .art-link-card__body {
  background: var(--n-cream, #F1EBE3);
}


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

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

  .lrd-stats {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    gap: var(--space-lg);
  }

  .lrd-bleed {
    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;
  }
}
