/* ═══════════════════════════════════ */
/* TIMELINE COMPONENT                  */
/* ═══════════════════════════════════ */

.timeline {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* ─── TIMELINE DAY ─── */
.timeline-day {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.timeline-day-header {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(82, 183, 255, 0.15);
}

.timeline-day-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.timeline-day-subtitle {
  font-size: .85rem;
  color: var(--muted);
  font-weight: 400;
}

/* ─── TIMELINE EVENTS ─── */
.timeline-events {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 32px;
  position: relative;
}

/* Vertical line - simple */
.timeline-events::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(82, 183, 255, 0.2);
}

/* ─── TIMELINE EVENT ─── */
.timeline-event {
  display: flex;
  gap: 20px;
  position: relative;
}

/* Time marker */
.timeline-marker {
  position: absolute;
  left: -28px;
  top: 0;
  font-size: .8rem;
  font-weight: 600;
  color: var(--cyan);
  width: 24px;
  text-align: right;
  white-space: nowrap;
}

/* ─── TIMELINE CONTENT ─── */
.timeline-content {
  background: transparent;
  border: none;
  border-left: 2px solid var(--cyan);
  padding: 8px 0 8px 16px;
  flex: 1;
}

.timeline-content:hover {
  background: transparent;
  border-color: var(--cyan);
  transform: none;
  box-shadow: none;
}

.timeline-content h3 {
  font-size: .95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.timeline-content p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .timeline {
    gap: 40px;
  }

  .timeline-events {
    padding-left: 24px;
    gap: 12px;
  }

  .timeline-events::before {
    left: 0;
  }

  .timeline-event {
    flex-direction: column;
    gap: 4px;
  }

  .timeline-marker {
    position: static;
    left: auto;
    font-size: .75rem;
    color: var(--muted);
    width: auto;
    text-align: left;
    margin-bottom: 2px;
  }

  .timeline-day-title {
    font-size: 1.2rem;
  }

  .timeline-content {
    border-left: 2px solid var(--cyan);
    padding: 6px 0 6px 12px;
  }

  .timeline-content h3 {
    font-size: .9rem;
  }

  .timeline-content p {
    font-size: .8rem;
  }
}
