/* Deep-dive /story page styles */

/* ============================================
   HERO
   ============================================ */
.story-hero {
  padding: 8rem 2rem 3rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.story-hero-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  color: var(--sky-blue);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.story-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.story-hero-subtitle {
  color: var(--text-secondary);
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================
   TABLE OF CONTENTS
   ============================================ */
.story-toc {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  max-width: 1000px;
  margin: 0 auto 3rem;
  padding: 0 2rem;
}

.story-toc a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--border-color);
  border-radius: 30px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.story-toc a:hover {
  color: var(--text-primary);
  border-color: var(--border-hover);
  background: var(--bg-card);
}

/* ============================================
   SECTIONS
   ============================================ */
.story-section {
  padding: 4rem 2rem;
}

.story-section.alt {
  background: var(--bg-card);
}

.story-section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--gold);
  letter-spacing: 1px;
  max-width: 800px;
  margin: 0 auto 1.5rem;
}

.story-paragraph {
  max-width: 800px;
  margin: 0 auto 1.25rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.05rem;
}

.story-paragraph:last-child {
  margin-bottom: 0;
}

/* ============================================
   ICONIC MOMENTS
   ============================================ */
.story-moments {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.story-moment {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.5rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.story-moment:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

.story-moment-date {
  color: var(--sky-blue);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.story-moment-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: var(--text-primary);
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.story-moment-desc {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ============================================
   TRIVIA GRID
   ============================================ */
.story-trivia-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

.story-trivia-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .story-hero {
    padding: 6rem 1.5rem 2rem;
  }

  .story-hero-title {
    font-size: 2.75rem;
  }

  .story-section {
    padding: 3rem 1.5rem;
  }

  .story-section-title {
    font-size: 2rem;
  }
}
