section.timeline div.timeline-points {
  position: relative;
  padding: 60px 0 60px;
}
section.timeline div.timeline-points span.stroke {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 30px;
  height: 100%;
  width: 2px;
  background: var(--default-color);
}
section.timeline div.timeline-points span.stroke i {
  height: 0;
  width: 100%;
  max-height: 100%;
  position: absolute;
  inset: 0 0 auto 0;
  background: var(--active-color);
}
section.timeline div.timeline-points i.dot {
  height: 2px;
  width: 30px;
  position: absolute;
  left: 15px;
  background: var(--default-color);
  z-index: 1;
  transition: background 0.2s ease;
}
section.timeline div.timeline-points i.dot:first-of-type {
  top: 0;
}
section.timeline div.timeline-points i.dot:last-of-type {
  bottom: 0;
}
section.timeline div.timeline-points i.dot.on {
  background: var(--active-color);
}
section.timeline .timeline-point {
  position: relative;
  display: flex;
  margin-bottom: 60px;
  padding-left: 80px;
  flex-direction: column-reverse;
}
section.timeline .timeline-point:last-of-type {
  margin-bottom: 0;
}
section.timeline .timeline-point::before {
  content: "";
  display: block;
  height: 30px;
  width: 30px;
  position: absolute;
  top: 0;
  left: 15px;
  border-radius: 50%;
  background-image: url("assets/point.svg");
}
section.timeline .timeline-point > * {
  flex: 1;
}

section.content-block section.timeline .container {
  width: 100%;
  padding: 0;
  margin-block: clamp(40px, 3.47vi + 13.33px, 80px);
}

[data-type="acf/timeline"] section.timeline div.container div.timeline-points .timeline-point:last-of-type {
  margin-bottom: 120px;
}