/* Extra programma-informatie; de oorspronkelijke dagindeling blijft intact. */
.program-day-detail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 0 0 42px 154px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.program-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  border-top: 3px solid var(--orange);
}

.program-type {
  margin: 0 0 6px;
  color: var(--orange);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.program-card h3 {
  margin: 0 0 18px;
  font-size: 1.2rem;
  font-weight: 800;
}

.program-times {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.program-times li,
.program-activities > div {
  font-size: 0.79rem;
  font-weight: 700;
}

.program-times li {
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.08);
}

.program-activities {
  display: grid;
  gap: 1px;
  margin: 0;
  background: rgba(255, 255, 255, 0.15);
}

.program-activities > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 10px;
  background: var(--navy);
}

.program-activities dt {
  color: #ffb08f;
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.program-activities dd {
  margin: 0;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .program-day-detail {
    padding-left: 124px;
  }
}

@media (max-width: 700px) {
  .program-day-detail {
    grid-template-columns: 1fr;
    padding-left: 0;
  }
}

@media (max-width: 560px) {
  .program-card {
    padding: 20px;
  }

  .program-activities > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }
}
