.timeline-horizontal-wrapper {
  max-width: 100%;
  margin: 40px auto;
}

.timeline-swiper {
  margin-bottom: 80px;
  overflow: visible;
  width: 100%;
  height: auto;
}

.swiper-wrapper {
  display: flex;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: auto;
  position: relative;
  transition-property: transform;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.timeline-card {
  background: #288CCC;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  width: 100%;
}

.timeline-year {
  font-size: 50px;
  font-weight: 500;
  color: #fff;
  text-align: left;
  padding: 20px 0;
  background: transparent;
}

.timeline-content {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 20px;
  border-radius: 0 0 12px 12px;
}

.timeline-image {
  width: 100%;
  height: 100%;
  align-self: start;
}

.timeline-image img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.timeline-info {
  flex: 1;
}

.timeline-title {
  font-size: 32px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 12px 0;
  line-height: 1.4;
}

.timeline-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
  margin: 0 0 12px 0;
}

.timeline-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 25px;
}

#wrapper .timeline-list li {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  padding: 3px 0 3px 18px;
  position: relative;
  line-height: 1.5;
  margin-left: 0;
}

.timeline-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #fff;
  font-weight: bold;
}

.timeline-navigation {
  position: relative;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  top: calc(50% + 25px);
  left: 0;
  right: 0;
  height: 1px;
  background: #288CCC;
  transform: translateY(-50%);
}

.timeline-dots {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.timeline-dot-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #2B7EC0;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 0 rgba(43, 126, 192, 0);
  margin-bottom: 0;
  margin-top: 16px;
}

.timeline-dot-wrapper.active .timeline-dot {
  width: 20px;
  height: 20px;
  background: #2B7EC0;
  border-width: 4px;
  box-shadow: 0 0 0 6px rgba(43, 126, 192, 0.2);
}

.timeline-year-label {
  font-size: 32px;
  font-weight: 400;
  color: #7BBAE2;
  line-height: 1;
  transition: all 0.3s ease;
}

.timeline-dot-wrapper.active .timeline-year-label {
  color: #2B7EC0;
}

@media (max-width: 768px) {
  .timeline-content {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .timeline-image {
    width: 100%;
    height: 200px;
  }

  .timeline-year {
    font-size: 36px;
    padding: 0;
  }

  .timeline-title {
    font-size: 18px;
  }

  .timeline-description {
    font-size: 13px;
  }

  .timeline-dots {
    gap: 10px;
    overflow-x: scroll;
    padding-bottom: 10px;
  }

  .timeline-year-label {
    font-size: 12px;
    white-space: nowrap;
    min-width: 100px;
    text-align: center;
  }

  .timeline-image img {
    min-height: unset;
  }

  .timeline-dot-wrapper.active .timeline-year-label {
    font-size: 14px;
  }

  .timeline-info {
    padding: 25px;
  }

  .timeline-line {
    top: calc(50% + 10px);
  }

  .timeline-swiper {
    margin-bottom: 40px;
  }
}