/* ============================================
   ARNT INGE — Apprentice to Yard Director · VARD
   Editorial Overrides & Unique Components
   Base: article-shared.css
   Prefix: arn-
   ============================================ */

:root {
  --art-accent: var(--color-gold, #d4a574);
  --art-accent-subtle: rgba(212, 165, 116, 0.3);
  --art-link: #2d4a5e;
  --art-link-underline: var(--color-gold, #d4a574);
  --art-link-hover: var(--color-gold, #d4a574);
  --art-ornament: var(--color-gold, #d4a574);
}

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

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

.art-hero__overlay {
  background:
    linear-gradient(to top,
      rgba(10, 22, 40, 0.92) 0%,
      rgba(10, 22, 40, 0.5) 35%,
      rgba(10, 22, 40, 0.1) 65%,
      transparent 100%);
}

/* Hero category badge */
.art-hero__category {
  background: rgba(45, 74, 94, 0.85);
  color: #fff;
}

/* ── Tighter intro spacing ── */
.art-intro__inner {
  padding-bottom: 0;
}

/* ── Intro lead — no dropcap ── */
.art-lead::first-letter {
  float: none;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}

/* ── Career timeline ── */
.arn-timeline {
  max-width: 640px;
  margin: var(--space-2xl) auto;
  position: relative;
  padding-left: 2.5rem;
}

.arn-timeline::before {
  content: '';
  position: absolute;
  left: 0.5rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--color-gold, #d4a574) 0%,
    rgba(212, 165, 116, 0.3) 100%
  );
}

.arn-timeline__step {
  position: relative;
  padding-bottom: var(--space-xl);
}

.arn-timeline__step:last-child {
  padding-bottom: 0;
}

.arn-timeline__step::before {
  content: '';
  position: absolute;
  left: -2.25rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-gold, #d4a574);
  box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.2);
}

.arn-timeline__year {
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--color-gold, #d4a574);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.arn-timeline__role {
  font-family: 'Glacial Indifference', var(--font-body), sans-serif;
  font-size: var(--text-base, 1rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

/* ── Archival photo ── */
.arn-archival {
  max-width: 480px;
  margin: var(--space-2xl) auto;
  padding: 0 var(--space-xl);
}

.arn-archival__frame {
  position: relative;
  border-radius: var(--radius-lg, 0.75rem);
  overflow: hidden;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(0, 0, 0, 0.04);
}

.arn-archival__frame img {
  width: 100%;
  height: auto;
  display: block;
}

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

/* ── Video embed ── */
.arn-video {
  max-width: 960px;
  margin: var(--space-2xl) auto;
  padding: 0 var(--space-xl);
}

.arn-video__wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-xl, 12px);
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(0, 0, 0, 0.04);
}

.arn-video__wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.arn-video figcaption {
  text-align: center;
  margin-top: var(--space-md);
  font-size: var(--text-sm, 0.875rem);
  color: var(--color-text-muted, #666);
  font-style: italic;
}

/* ── Permission notice ── */
.arn-permission {
  font-family: 'Glacial Indifference', var(--font-body), sans-serif;
  font-size: var(--text-sm, 0.875rem);
  color: var(--color-text-muted, #737373);
  font-style: italic;
  text-align: center;
  padding: var(--space-lg) 0;
}

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

  .arn-archival {
    padding: 0 var(--space-lg);
  }

  .arn-video {
    padding: 0 var(--space-lg);
  }

  .arn-timeline {
    padding-left: 2rem;
  }
}

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