body {
  overflow-y: auto;
  height: auto;
}

.tl-main {
  max-width: 700px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 56px) 24px 96px;
}

/* ── Header ──────────────────────────────────────────── */

.tl-header {
  text-align: center;
  margin-bottom: 72px;
}

.tl-header h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.25;
}

.tl-header p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 480px;
  margin: 0 auto;
}

/* ── Timeline grid ───────────────────────────────────── */

.tl {
  display: flex;
  flex-direction: column;
}

.tl-item {
  display: grid;
  grid-template-columns: 110px 32px 1fr;
  min-height: 32px;
}

/* Year label */
.tl-year {
  text-align: right;
  padding-right: 0;
  padding-top: 3px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  line-height: 1.4;
}

/* Line + dot column */
.tl-line {
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}

.tl-line::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--border);
  transform: translateX(-50%);
}

/* Hide the line extension below the last item */
.tl-item:last-child .tl-line::before {
  bottom: auto;
  height: 14px;
}

.tl-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--accent);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* Content */
.tl-body {
  padding: 0 0 48px 20px;
}

.tl-body h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}

.tl-body p {
  font-size: 0.875rem;
  line-height: 1.85;
  color: var(--text-muted);
}

.tl-body em {
  font-style: italic;
  color: var(--text);
}

/* ── Responsive ──────────────────────────────────────── */

@media (max-width: 520px) {
  .tl-item {
    grid-template-columns: 72px 28px 1fr;
  }

  .tl-header h1 { font-size: 1.7rem; }

  .tl-year { font-size: 0.66rem; }

  .tl-body { padding-bottom: 36px; }
}
