.time {
  margin: 0 auto;
}

.time-top {
  display: flex;
  justify-content: space-between;
}

.time-top-left {
  max-width: 500px;
}
.time-top-left .h3 {
  margin-bottom: 24px;
}

.time-subtitle {
  max-width: 310px;
  color: #4D5159;
  line-height: 1.5;
}

.time-top-imgs {
  display: flex;
  align-items: flex-end;
  gap: 32px;
}
.time-top-imgs img {
  border-radius: 4px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.time-img-1 {
  max-width: 200px;
  max-height: 280px;
  aspect-ratio: 200/280;
}

.time-img-2 {
  max-width: 300px;
  aspect-ratio: 300/360;
}

.timeline-swiper {
  position: relative;
  width: 100%;
  height: 190px;
  margin-top: 80px;
}

.timeline-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
}

.time-slide {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 248px;
  width: 248px;
}
.time-slide::after {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  top: 13px;
  z-index: -1;
  border-top: 1px dashed #D3D3D6;
}
.time-slide:last-child::after {
  display: none;
}

.time-circles {
  width: 26px;
  height: 26px;
}

.time-divider {
  width: 1px;
  height: 24px;
  background-color: #D3D3D6;
  margin: 16px 0 16px 11px;
}

.time-date {
  font-size: 24px;
  font-family: Semi;
  line-height: 1.3;
  margin-bottom: 4px;
}

.time-desc {
  max-width: 200px;
  color: #7A7C83;
  line-height: 1.5;
}

.timeline-mob {
  display: none;
}

@media (max-width: 1200px) {
  .time-img-1 {
    display: none;
  }
}
@media (max-width: 900px) {
  .time-top {
    flex-direction: column;
    gap: 24px;
  }
  .time-top-left {
    max-width: unset;
  }
  .time-subtitle {
    max-width: unset;
  }
  .time-img-2 {
    aspect-ratio: 328/220;
    max-width: 480px;
  }
}
@media (max-width: 768px) {
  .time {
    margin: 48px auto;
  }
  .time-top-left .h3 {
    margin-bottom: 16px;
  }
  .time-top-left .time-subtitle {
    font-size: 14px;
    line-height: 1.4;
  }
  .timeline-swiper {
    display: none;
  }
  .timeline-mob {
    display: flex;
    flex-direction: column;
    margin-top: 24px;
  }
  .time-slide-mob {
    display: flex;
    gap: 14px;
    margin-top: 4px;
    overflow: hidden;
  }
  .time-slide-mob:last-child .time-divider {
    display: none;
  }
  .time-circles {
    width: 20px;
    height: 20px;
    margin-top: 6px;
  }
  .time-divider {
    margin: 4px 0 4px 10px;
    height: 100%;
  }
  .time-date {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 2px;
  }
  .time-desc {
    font-size: 14px;
    line-height: 1.4;
    max-width: 280px;
    margin: 4px 0 8px;
  }
}