.programme-page {
  padding: var(--space-12) 0;
}

.timeline {
  position: relative;
  padding-left: var(--space-12);
  max-width: 700px;
  margin-inline: auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--color-red) 8%, var(--color-red) 92%, transparent);
  box-shadow: 0 0 8px var(--color-red-glow);
}

.timeline-event {
  position: relative;
  margin-bottom: var(--space-8);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-red);
  padding: var(--space-5) var(--space-6);
  border-radius: var(--radius);
  transition: box-shadow var(--transition);
}

.timeline-event:hover {
  box-shadow: var(--shadow), -3px 0 16px rgba(227, 0, 15, 0.12);
}

.timeline-event:last-child {
  margin-bottom: 0;
}

.timeline-event::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-12) + 14px);
  top: var(--space-5);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-red);
  box-shadow: 0 0 10px rgba(227, 0, 15, 0.7), 0 0 0 3px rgba(227, 0, 15, 0.12);
}

.timeline-date-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.12em;
  text-transform: capitalize;
  margin-bottom: var(--space-1);
}

.timeline-time {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-red);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: var(--space-2);
  text-shadow: 0 0 6px var(--color-red-glow);
}

.timeline-title {
  font-size: 1.05rem;
  font-family: var(--font-display);
  color: var(--color-white);
  margin-bottom: var(--space-2);
}

.timeline-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.timeline-error {
  color: var(--color-text-muted);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: var(--space-16) 0;
}

@media (max-width: 640px) {
  .timeline {
    padding-left: var(--space-8);
  }

  .timeline::before {
    left: 12px;
  }

  .timeline-event::before {
    left: calc(-1 * var(--space-8) + 6px);
  }

  .timeline-event {
    padding: var(--space-4) var(--space-4);
  }

  .event-add-wrapper {
    padding: var(--space-6) 0 0;
  }
}
