.timeline {
  margin: 90px 0;
}
@media (max-width: 900px) {
  .timeline {
    margin: 60px 0;
  }
}
.timeline:last-child {
  margin-bottom: 0;
  padding-bottom: 90px;
}
@media (max-width: 900px) {
  .timeline:last-child {
    padding-bottom: 60px;
  }
}
.timeline__head {
  margin-bottom: 40px;
}
.timeline__title {
  margin: 0;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 42px;
  color: #000;
}
@media (max-width: 900px) {
  .timeline__title {
    font-size: 26px;
    line-height: 34px;
  }
}
.timeline__content {
  position: relative;
  min-height: 349px;
}
@media (max-width: 900px) {
  .timeline__content {
    min-height: 0;
  }
}
.timeline__entry {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 525px);
  grid-gap: 40px;
  gap: 40px;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
  pointer-events: none;
}
.timeline__entry.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0s linear 0s;
  pointer-events: auto;
}
@media (max-width: 900px) {
  .timeline__entry {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.timeline__entry-text {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 900px) {
  .timeline__entry-text {
    grid-column: auto;
  }
}
.timeline__entry-year {
  display: inline-block;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 1;
  color: #ff8c00;
}
.timeline__entry-title {
  margin: 0;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 38px;
  color: #1a2520;
}
@media (max-width: 900px) {
  .timeline__entry-title {
    font-size: 24px;
    line-height: 32px;
  }
}
.timeline__entry-desc {
  margin: 0;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #6b7280;
}
.timeline__entry-media {
  grid-column: 2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.timeline__entry-media img {
  display: block;
  width: 100%;
  max-width: 525px;
  aspect-ratio: 525/349;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
@media (max-width: 900px) {
  .timeline__entry-media {
    grid-column: auto;
    justify-content: flex-start;
  }
}
.timeline__axis-wrap {
  position: relative;
  padding: 0 60px;
  margin-bottom: 64px;
}
@media (max-width: 900px) {
  .timeline__axis-wrap {
    padding: 0 44px;
    margin-bottom: 40px;
  }
}
.timeline__axis-line {
  position: absolute;
  left: 60px;
  right: 60px;
  top: 33px;
  height: 1px;
  background: #e5e7eb;
  z-index: 0;
}
@media (max-width: 900px) {
  .timeline__axis-line {
    left: 44px;
    right: 44px;
  }
}
.timeline__swiper {
  position: relative;
  z-index: 1;
  padding: 20px 0;
}
.timeline__slide {
  display: flex;
  justify-content: center;
  height: auto;
}
.timeline__year-btn {
  position: relative;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.timeline__year-dot {
  position: relative;
  display: inline-block;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #d1d5db;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.timeline__year-btn:hover .timeline__year-dot {
  border-color: #ff8c00;
}
.timeline__year-btn.is-active .timeline__year-dot {
  background: #ff8c00;
  border-color: #ff8c00;
  box-shadow: 0 0 0 10px rgba(255, 140, 0, 0.15);
}
.timeline__year-label {
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #6b7280;
  transition: color 0.2s ease;
}
.timeline__year-btn.is-active .timeline__year-label {
  color: #ff8c00;
  font-weight: 700;
}
.timeline__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  background: #ffffff;
  color: #1a1a1a;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.timeline__arrow:hover, .timeline__arrow:focus-visible {
  background: #ff8c00;
  border-color: #ff8c00;
  color: #ffffff;
}
.timeline__arrow.is-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.timeline__arrow.is-disabled:hover {
  background: #ffffff;
  border-color: #e5e7eb;
  color: #1a1a1a;
}
.timeline__arrow--prev {
  left: 0;
}
.timeline__arrow--next {
  right: 0;
}
.timeline__arrow svg {
  display: block;
}
/*# sourceMappingURL=styles.css.map */
