.timeline-block {
  background: #f9fafb;
  padding-top: 48px;
}
@media (min-width: 768px) {
  .timeline-block {
    padding-top: 96px;
  }
}
.timeline-block.padding-top-reduced {
  padding-top: 48px;
}
.timeline-block {
  padding-bottom: 48px;
}
@media (min-width: 768px) {
  .timeline-block {
    padding-bottom: 96px;
  }
}
.timeline-block.padding-bottom-reduced {
  padding-bottom: 48px;
}
.timeline-block > .container {
  width: 100%;
}
.timeline-block .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: min(1280px, 100%);
  margin: 0 auto;
}
@media (min-width: 768px) {
  .timeline-block .inner {
    gap: 48px;
  }
}
.timeline-block .timeline-heading {
  color: #000;
  text-align: center;
}
.timeline-block .timeline-rows {
  --timeline-row-height: 350px;
  --timeline-dot-size: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(1011px, 100%);
}
.timeline-block .timeline-rows[data-count="1"] .timeline-track-line {
  display: none;
}
.timeline-block .timeline-track-line {
  display: none;
  position: absolute;
  left: calc(50% - 2px);
  top: calc(var(--timeline-row-height) / 2);
  width: 4px;
  height: calc((var(--timeline-count, 1) - 1) * var(--timeline-row-height));
  background: #80d7f5;
  border-radius: 2px;
  z-index: 1;
  pointer-events: none;
}
@media (min-width: 1024px) {
  .timeline-block .timeline-track-line {
    display: block;
  }
}
.timeline-block .timeline-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  width: 100%;
  min-height: 0;
}
@media (min-width: 1024px) {
  .timeline-block .timeline-row {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 48px;
    align-items: center;
    min-height: var(--timeline-row-height);
  }
}
.timeline-block .timeline-row + .timeline-row {
  margin-top: 0;
}
.timeline-block .timeline-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  padding: 24px 24px 28px;
  background: #ffffff;
  border-bottom: 4px solid #1ab7ed;
  border-radius: 10px;
  min-width: 0;
}
.timeline-block .timeline-year {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0 12px;
  border-radius: 9999px;
  background: #e6f7fd;
  color: #101828;
  line-height: 1.6;
}
.timeline-block .timeline-item-title {
  color: #00202d;
  line-height: 1.6;
}
.timeline-block .timeline-item-text {
  color: #323232;
  line-height: 1.6;
}
.timeline-block .timeline-item-link {
  color: #1ab7ed;
  text-decoration: underline;
  text-underline-offset: 2px;
  line-height: 1.6;
}
.timeline-block .timeline-item-link:hover, .timeline-block .timeline-item-link:focus-visible {
  color: #006186;
}
.timeline-block .timeline-rail {
  display: none;
  align-items: center;
  justify-content: center;
  width: 24px;
  align-self: stretch;
  min-height: var(--timeline-row-height);
  position: relative;
  z-index: 2;
}
@media (min-width: 1024px) {
  .timeline-block .timeline-rail {
    display: flex;
  }
}
.timeline-block .timeline-rail-dot {
  display: block;
  flex-shrink: 0;
  width: var(--timeline-dot-size);
  height: var(--timeline-dot-size);
  border: 4px solid #ffffff;
  border-radius: 50%;
  background: #006186;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 10px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}
.timeline-block .timeline-media {
  position: relative;
  width: 100%;
  min-width: 0;
  height: 220px;
  border: 1px solid #e0e1e2;
  border-radius: 16px;
  overflow: hidden;
  background: #e0e1e2;
}
@media (min-width: 1024px) {
  .timeline-block .timeline-media {
    height: 303px;
  }
}
.timeline-block .timeline-media picture,
.timeline-block .timeline-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1023px) {
  .timeline-block .timeline-row-image-right .timeline-card {
    order: 2;
  }
  .timeline-block .timeline-row-image-right .timeline-media {
    order: 1;
  }
}
@media (max-width: 1023px) {
  .timeline-block .timeline-row-image-left .timeline-card {
    order: 2;
  }
  .timeline-block .timeline-row-image-left .timeline-media {
    order: 1;
  }
}
.timeline-block .timeline-mobile-connector {
  display: none;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
@media (max-width: 1023px) {
  .timeline-block .timeline-mobile-connector {
    display: flex;
  }
}
.timeline-block .timeline-mobile-spacer {
  display: block;
  width: 4px;
  height: 15px;
  flex-shrink: 0;
}
.timeline-block .timeline-mobile-line {
  display: block;
  width: 4px;
  height: 20px;
  flex-shrink: 0;
  background: #80d7f5;
  border-radius: 2px;
}
.timeline-block .timeline-mobile-dot {
  display: block;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 4px solid #ffffff;
  border-radius: 50%;
  background: #006186;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 10px 15px rgba(0, 0, 0, 0.1);
}