.info-intro {
  margin-bottom: 50px;
  flex-shrink: 0;
}

.info-intro__title {
  font-family: 'Manrope', sans-serif;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -1.04px;
  margin-bottom: 14px;
}

.info-intro__text {
  font-size: 18px;
  line-height: 1.55;
  color: var(--muted);
  width: 780px;
}

.timeline {
  position: relative;
  padding: 12px 0 40px;
}

.timeline__line {
  position: absolute;
  left: 50%;
  top: 12px;
  bottom: 40px;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(31, 95, 191, 0.35) 0%, rgba(31, 95, 191, 0.35) 75%, rgba(217, 65, 65, 0.35) 85%, rgba(217, 65, 65, 0.35) 100%);
  border-radius: 999px;
}

.timeline__line::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(31, 95, 191, 0.12);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 44px 1fr;
  align-items: start;
  margin-bottom: 28px;
  min-height: 200px;
  gap: 22px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 36px;
  height: 2px;
  background: rgba(31, 95, 191, 0.6);
  z-index: 1;
}

.timeline-item--left::before {
  right: 50%;
  width: 44px;
}

.timeline-item--right::before {
  left: 50%;
  width: 44px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item__card {
  width: 100%;
  max-width: 436px;
  padding: 22px 26px;
  background: var(--white-96);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.timeline-item--left .timeline-item__card {
  grid-column: 1;
  justify-self: end;
}

.timeline-item--right .timeline-item__card {
  grid-column: 3;
  justify-self: start;
}

.timeline-item__dot {
  grid-column: 2;
  justify-self: center;
  width: 22px;
  height: 22px;
  margin-top: 26px;
  background: #fff;
  border: 4px solid var(--blue);
  border-radius: 11px;
  box-shadow: 0 0 0 6px rgba(31, 95, 191, 0.1), 0 4px 12px rgba(31, 95, 191, 0.18);
  position: relative;
  z-index: 2;
}

.timeline-item__dot::after {
  content: '';
  position: absolute;
  inset: 5px;
  background: var(--blue);
  border-radius: 3px;
}

.timeline-item--red .timeline-item__dot {
  border-color: var(--red);
  box-shadow: 0 0 0 6px rgba(217, 65, 65, 0.1);
}

.timeline-item--red::before {
  background: rgba(217, 65, 65, 0.6);
}

.timeline-item--red .timeline-item__dot::after {
  background: var(--red);
}

.timeline-item--gold .timeline-item__dot {
  border-color: #b7791f;
  box-shadow: 0 0 0 6px rgba(183, 121, 31, 0.15);
}

.timeline-item--gold::before {
  background: rgba(183, 121, 31, 0.6);
}

.timeline-item--gold .timeline-item__dot::after {
  background: #b7791f;
}

.timeline-item__tag {
  display: inline-flex;
  height: 26px;
  align-items: center;
  padding: 0 14px;
  background: var(--blue-light);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.76px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.timeline-item--red .timeline-item__tag {
  background: #fff0f0;
  color: var(--red);
}

.timeline-item--gold .timeline-item__tag {
  background: #fff4dc;
  color: #8c5a14;
}

.timeline-item__year {
  font-family: 'Manrope', sans-serif;
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -0.84px;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 8px;
}

.timeline-item--red .timeline-item__year {
  color: var(--red);
}

.timeline-item--gold .timeline-item__year {
  color: #b7791f;
}

.timeline-item__accent {
  width: 42px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue), transparent);
  margin-bottom: 14px;
}

.timeline-item--red .timeline-item__accent {
  background: linear-gradient(90deg, var(--red), transparent);
}

.timeline-item--today .timeline-item__card {
  background: linear-gradient(120.53deg, #EAF2FF 0%, rgba(255, 255, 255, 0.96) 70%),
              radial-gradient(64.52% 62.5% at 100% 0%, rgba(217, 65, 65, 0.06) 0%, rgba(217, 65, 65, 0) 70%);
}

.timeline-item--today .timeline-item__year {
  width: fit-content;
  background: linear-gradient(93.98deg, #1F5FBF 0%, #D94141 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.timeline-item__text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
}

.info-page .kiosk__content {
  padding-bottom: 28px;
  display: flex;
  flex-direction: column;
}

.info-page .kiosk__scroll {
  flex: 1;
  min-height: 0;
}

.info-page .bottom-cards {
  margin-top: 16px;
}
