/* ===== Story Timeline ===== */
.story {
  background: var(--white);
  overflow: hidden;
}

.timeline-wrapper {
  position: relative;
  margin-top: 48px;
}

.timeline-track {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 24px;
}

.timeline-track::-webkit-scrollbar { display: none; }

.timeline-line {
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--cream-deep);
  z-index: 0;
}

.timeline-item {
  flex: 0 0 320px;
  min-width: 320px;
  padding: 0 24px;
  position: relative;
}

.timeline-dot {
  width: 20px;
  height: 20px;
  background: var(--white);
  border: 3px solid var(--green);
  border-radius: 50%;
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}

.timeline-dot.active {
  background: var(--green);
}

.timeline-year {
  font-family: 'Nunito', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.2;
}

.timeline-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 8px;
}

.timeline-text {
  font-size: 0.88rem;
  line-height: 1.9;
  color: var(--text-light);
}

.timeline-text li {
  padding: 2px 0 2px 16px;
  position: relative;
  list-style: none;
}

.timeline-text li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
}

.timeline-media {
  margin-top: 16px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--cream-deep);
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.timeline-media-label {
  font-size: 0.78rem;
  color: var(--text-lighter);
  text-align: center;
  padding: 12px;
}

.timeline-media-label svg {
  display: block;
  margin: 0 auto 6px;
  width: 32px;
  height: 32px;
  opacity: 0.3;
}

.timeline-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}

.timeline-nav-btn {
  width: 44px;
  height: 44px;
  border: 2px solid var(--cream-deep);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.timeline-nav-btn:hover {
  border-color: var(--green);
  background: var(--green-light);
}

.timeline-nav-btn svg {
  width: 18px;
  height: 18px;
  stroke: var(--text);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
