.timeline {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding-left: 160px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 130px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  padding-bottom: 56px;
}

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

.timeline-date {
  position: absolute;
  left: -160px;
  top: 4px;
  width: 120px;
  text-align: right;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--accent);
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -36px;
  top: 12px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--secondary);
  border: 3px solid var(--bg-alt);
  box-shadow: 0 0 0 1px var(--border);
}

.timeline-title {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--ink);
  margin: 0 0 10px 0;
  line-height: 1.15;
}

.timeline-subtitle {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin-bottom: 8px;
}

.timeline-desc {
  font-size: 1rem;
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0;
  line-height: 1.65;
}

.timeline-desc a {
  color: var(--accent);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}

.timeline-desc a:hover {
  border-bottom-color: var(--accent);
}

@media (max-width: 900px) {
  .timeline {
    padding-left: 40px;
  }
  .timeline::before {
    left: 10px;
  }
  .timeline-date {
    position: static;
    text-align: left;
    width: auto;
    margin-bottom: 8px;
  }
  .timeline-item::before {
    left: -36px;
    top: 4px;
  }
}

/*# sourceMappingURL=timeline.css.map */