.current {
  color: green;
}

.timeline-section {
  overflow: visible;
}

.timeline {
  position: relative;
  padding: 1.25rem 0.25rem 0.25rem;
  box-sizing: border-box;
}

.timeline-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}
.timeline-line .timeline-line-solid {
  fill: none;
  stroke: #4FA3FF;
  stroke-width: 3;
  stroke-linecap: round;
}
.timeline-line .timeline-line-dashed {
  fill: none;
  stroke: #A8B3C7;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 2 10;
}

.timeline-plane {
  position: absolute;
  top: 0;
  left: 0;
  width: 1.6rem;
  height: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  color: #4FA3FF;
  font-size: 1.2rem;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.25));
  transition: left 0.3s ease, top 0.3s ease;
  z-index: 2;
}
.timeline-plane::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-color: #FFFFFF;
  border: 2px solid #4FA3FF;
  z-index: -1;
}

.timeline-points {
  --timeline-cols: 2;
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(var(--timeline-cols), 1fr);
  column-gap: 0.75rem;
  row-gap: 1.75rem;
  z-index: 1;
}

@media (min-width: 600px) {
  .timeline-points {
    --timeline-cols: 3;
  }
}
@media (min-width: 900px) {
  .timeline-points {
    --timeline-cols: 5;
  }
}
@media (min-width: 1200px) {
  .timeline-points {
    --timeline-cols: 7;
  }
}
.timeline-point {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.2rem;
  min-width: 0;
}
.timeline-point:nth-child(odd) {
  transform: translateY(-0.2rem);
}
.timeline-point:nth-child(even) {
  transform: translateY(0.2rem);
}
.timeline-point .timeline-marker {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: #FFFFFF;
  border: 2px solid #4FA3FF;
  box-sizing: border-box;
}
.timeline-point .timeline-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  background-color: #FFFFFF;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.timeline-point .timeline-label {
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.15;
}
.timeline-point .timeline-location {
  font-size: 0.72rem;
  font-weight: 500;
  color: #2F9E44;
}
.timeline-point .timeline-location i {
  color: #4FA3FF;
  margin-right: 0.2rem;
}
.timeline-point .timeline-date {
  font-size: 0.65rem;
  font-weight: 400;
  color: #0B1F3A;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background-color: #FFFFFF;
  padding: 0.05rem 0.3rem;
  border-radius: 3px;
}
.timeline-point.is-past .timeline-marker {
  background-color: #A8B3C7;
  border-color: #A8B3C7;
  opacity: 0.6;
}
.timeline-point.is-past .timeline-label {
  color: #A8B3C7;
}
.timeline-point.is-past .timeline-location {
  color: #A8B3C7;
}
.timeline-point.is-past .timeline-location i {
  color: #A8B3C7;
}
.timeline-point.is-current .timeline-marker {
  width: 0.95rem;
  height: 0.95rem;
  background-color: #4FA3FF;
  box-shadow: 0 0 0 4px rgba(79, 163, 255, 0.25);
}
.timeline-point.is-current .timeline-label {
  font-weight: 700;
}

@media (max-width: 500px) {
  .timeline-label {
    font-size: 0.7rem;
  }
}

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