#journey {
  background: var(--paper);
}

.timeline {
  position: relative;
  max-width: 640px;
  margin-inline: auto;
  padding-left: var(--space-10);
}

/* Vertical line */
.timeline::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--emerald) 0%, rgba(47, 107, 94, 0.12) 100%);
}

.timeline-item {
  position: relative;
  padding-bottom: var(--space-10);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.timeline-item:last-child { padding-bottom: 0; }

/* Circle node on the line */
.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-10) + 1px);
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--paper);
  border: 2.5px solid var(--emerald);
}

.timeline-item--present::before {
  background: var(--emerald);
  box-shadow: 0 0 0 5px rgba(47, 107, 94, 0.14);
}

.timeline-year {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--emerald);
  letter-spacing: 0.06em;
}

.timeline-role {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}

.timeline-org {
  font-size: var(--text-sm);
  color: var(--gray);
}

@media (max-width: 639px) {
  .timeline { padding-left: var(--space-8); }
  .timeline-item::before { left: calc(-1 * var(--space-8) + 1px); }
}
