/* ==========================================================================
   Virginia City Grand Prix — history-styles.css
   Page-specific styles for the History subpage.
   Load after styles.css and subpage-styles.css.
   ========================================================================== */

/* ---------- Vertical era timeline ---------- */
.timeline {
  position: relative;
  margin: 2.4em 0 1em;
  padding-left: 46px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, var(--ochre) 0%, #e7e0d2 90%);
}
.timeline-item {
  position: relative;
  margin-bottom: 2.2em;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -46px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--ochre);
}
.timeline-item.is-gap::before { border-color: var(--ink-soft); }
.timeline-year {
  display: block;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  color: var(--rust);
  margin-bottom: 4px;
}
.timeline-item h3 {
  margin-top: 0;
  margin-bottom: 0.35em;
  font-size: 1.15rem;
  color: var(--ink);
}
.timeline-item p { margin-bottom: 0; }

@media (max-width: 640px) {
  .timeline { padding-left: 38px; }
  .timeline-item::before { left: -38px; }
}