:root {
  --sidebar-width: 31rem;
  --layout-gap: 4rem;
  --wp--style--block-gap: clamp(3.5rem, 2.737rem + 1.404vw, 4rem);
}

@media (min-width: 1300px) {
  :root {
    --sidebar-width: 34rem;
    --layout-gap: 6rem;
  }
}
.timeline-split {
  position: relative;
}
* + .timeline-split {
  margin-top: var(--wp--preset--spacing--l) !important;
}
@media (min-width: 1024px) {
  * + .timeline-split {
    margin-top: var(--wp--preset--spacing--xl) !important;
  }
}
.timeline-split__event-block {
  display: block;
  width: 100%;
  position: relative;
  padding-left: 4rem;
  padding-bottom: var(--wp--preset--spacing--xl);
}
.timeline-split__event-block:last-child {
  padding-bottom: 0;
}
.timeline-split__event-block:after {
  content: "";
  width: 4px;
  background-color: rgba(174, 182, 198, 0.2);
  border-radius: 10px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 5px;
  z-index: 1;
}
.timeline-split__event-block .divider {
  display: block;
  width: 4px;
  background-color: #86F1A7;
  border-radius: 10px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 5px;
  z-index: 2;
  transform: scaleY(0);
  transform-origin: top center;
  pointer-events: none;
}
.timeline-split__event-block:before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #FFF;
  border: 2px solid #004DBC;
  z-index: 10;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.timeline-split__event-block.active:before {
  background-color: #22CB68;
}
.timeline-split .event {
  width: 100%;
  margin-bottom: 3rem;
  padding: 2.5rem;
  background: linear-gradient(116deg, rgba(0, 77, 188, 0.1) 5%, rgba(0, 77, 188, 0.025) 90%);
  border-radius: 10px;
}
.timeline-split .event:last-child {
  margin-bottom: 0;
}
.timeline-split .timeline-split__date {
  margin-bottom: 4rem;
  padding-top: 6px;
}
.timeline-split .timeline-split__date h2 {
  font-size: var(--wp--preset--font-size--font-23);
  font-weight: 300;
  margin: 0;
  color: #61A1FF;
}
@media (min-width: 782px) {
  .timeline-split__event-block {
    padding-left: 0;
    padding-top: 8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .timeline-split__event-block:after, .timeline-split__event-block .divider {
    left: 50% !important;
    margin-left: -1px;
  }
  .timeline-split__event-block:before {
    left: 50% !important;
    margin-left: -6px;
    top: 64px;
  }
  .timeline-split__date {
    width: 100%;
    text-align: center;
    margin-bottom: 4rem;
    position: absolute;
    top: 0;
    z-index: 5;
  }
  .timeline-split__date .inner {
    display: inline-block;
    max-width: 500px;
    background: #AEB6C6;
    padding: 6px 18px;
    border-radius: 4px;
  }
  .timeline-split__date h2 {
    font-size: var(--wp--preset--font-size--font-18) !important;
    color: #000A24 !important;
  }
  .timeline-split__events {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 10rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
  }
  .timeline-split .event {
    background: transparent;
    padding: 2.5rem 0 0 0;
    border-radius: 0;
    border-top: 1px solid rgba(174, 182, 198, 0.2);
  }
  .timeline-split .event--left {
    grid-column: 1;
    justify-self: end;
    width: 100%;
    max-width: 450px;
  }
  .timeline-split .event--right {
    grid-column: 2;
    text-align: left;
    justify-self: start;
    width: 100%;
    max-width: 450px;
    margin-top: 8rem;
  }
}
