.program-timeline-container {
  margin-top: 40px;
}

.day-header {
  font-family: "Space Mono", monospace;
  font-size: 22px;
  font-weight: 700;
  color: #a984b6;
  margin-top: 40px;
  margin-bottom: 24px;
  border-bottom: 2px dashed #616161;
  padding-bottom: 8px;
  letter-spacing: 1px;
}

.day-date {
  font-family: "Source Code Pro", monospace;
  font-size: 16px;
  font-weight: 400;
  color: inherit;
  margin-left: 2px;
  letter-spacing: -0.4px;
  word-spacing: -2px;
}

.timeline {
  position: relative;
  margin-bottom: 60px;
  padding-left: 0;
}

.timeline-item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 16px;
  bottom: -34px;
  left: 100px;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    #616161,
    #616161 6px,
    transparent 6px,
    transparent 12px
  );
  z-index: 5;
}

.timeline-item {
  position: relative;
  display: flex;
  margin-bottom: 28px;
  min-height: 48px;
}

.timeline-time {
  width: 80px;
  text-align: right;
  font-family: "Space Mono", monospace;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  color: #00fefc;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

.timeline-marker {
  position: absolute;
  left: 95px;
  top: 7px;
  width: 12px;
  height: 12px;
  background: #0d1821;
  border: 2px solid #00fefc;
  z-index: 10;
}

.timeline-content {
  margin-left: 45px;
  flex-grow: 1;
}

.program-event-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}

.program-event-speaker,
.program-event-subtitle {
  font-family: "Space Mono", monospace;
  font-size: 13px;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.program-event-speaker {
  color: #a984b6;
  font-weight: 700;
}

.program-event-subtitle {
  color: #5b8db8;
  font-weight: 400;
}

.event-meta {
  font-family: "Space Mono", monospace;
  font-size: 11px;
  color: #5b8db8;
  margin-top: 2px;
}

.program-event-description {
  margin-top: 12px;
}

.program-event-description p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.program-event-description p:last-child {
  margin-bottom: 0;
}

/* Pause / Break styling */
.timeline-item.pause .timeline-marker {
  border-color: #616161;
  background: #0d1821;
}
.timeline-item.pause .timeline-time {
  color: #616161;
}
.timeline-item.pause .program-event-title {
  color: #616161;
}

@media (max-width: 768px) {
  .day-header {
    font-size: 22px;
    margin-top: 35px;
    margin-bottom: 20px;
  }
  
  .timeline::before {
    display: none;
  }
  
  .timeline-item:not(:last-child)::before {
    left: 15px;
    top: 15px;
    bottom: -29px;
  }
  
  .timeline-marker {
    left: 10px;
    top: 6px;
  }
  
  .timeline-item {
    flex-direction: column;
    padding-left: 35px;
    margin-bottom: 24px;
    min-height: auto;
  }
  
  .timeline-time {
    width: auto;
    text-align: left;
    padding-top: 0;
    margin-bottom: 2px;
    font-size: 14px;
  }
  
  .timeline-content {
    margin-left: 0;
  }
  
  .timeline-item:hover .timeline-content {
    transform: none;
  }
}
