ol.m-timeline {
  --m-navy: #001428;
  --m-muted: #5a6470;
  --m-paper: #fafaf7;
  --m-marker: 11px;
  --m-gutter: 32px;
  list-style: none;
  margin: 0 auto;
  padding: 36px 28px;
  max-width: 720px;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
}
ol.m-timeline li {
  position: relative;
  padding-left: var(--m-gutter);
  padding-bottom: 32px;
  scroll-margin-top: 80px;
}
ol.m-timeline li:last-child { padding-bottom: 0; }
ol.m-timeline li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: var(--m-marker);
  height: var(--m-marker);
  background: var(--m-navy);
  z-index: 2;
}
ol.m-timeline li:not(:last-child)::after {
  content: '';
  position: absolute;
  left: calc((var(--m-marker) - 1px) / 2);
  top: calc(var(--m-marker) + 4px);
  bottom: -4px;
  width: 1px;
  background: var(--m-navy);
  z-index: 1;
}
ol.m-timeline time {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--m-muted);
  letter-spacing: 0.075em;
  margin-bottom: 4px;
  font-feature-settings: "tnum";
}
ol.m-timeline h3 {
  font-weight: 500;
  line-height: 1.33;
  margin: 0;
}
ol.m-timeline p {
  color: var(--m-muted);
  line-height: 1.45;
  margin: 4px 0 0 0;
  max-width: 60ch;
}
ol.m-timeline li.is-future::before {
  background: transparent;
  box-shadow: inset 0 0 0 1px var(--m-navy);
}
ol.m-timeline li.is-current::before {
  outline: 1px solid var(--m-navy);
  outline-offset: 3px;
}
ol.m-timeline li:target h3 {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
@media (max-width: 480px) {
  ol.m-timeline { padding: 24px 18px; }
}