.forum-program {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.25rem;
  overflow-x: clip;
  box-sizing: border-box;
  font-family:
    "Euclid Circular A",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif !important;
  -webkit-font-smoothing: antialiased;
}

.forum-program *,
.forum-program *::before,
.forum-program *::after {
  box-sizing: border-box;
  font-family: inherit !important;
}

.forum-program__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.5rem;
}

.forum-program__column {
  position: relative;
  min-width: 0;
}

.forum-program__line {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 1rem;
  width: 1px;
  background: linear-gradient(
    to bottom,
    rgb(255 255 255 / 60%),
    rgb(255 255 255 / 10%),
    transparent
  );
  background: linear-gradient(
    to bottom,
    oklch(1 0 0 / 60%),
    oklch(1 0 0 / 10%),
    transparent
  );
}

.forum-program__list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.forum-program__entry {
  position: relative;
  min-width: 0;
  padding-left: 3rem;
}

.forum-program__marker {
  position: absolute;
  top: 0.5rem;
  left: 0.625rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 9999px;
  background: #ffffff;
  background: oklch(1 0 0);
  box-shadow: 0 0 0 4px rgb(255 255 255 / 20%);
  box-shadow: 0 0 0 4px oklch(1 0 0 / 20%);
}

.forum-program__time {
  display: block;
  color: #ffffff;
  color: oklch(1 0 0);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.75rem;
}

.forum-program__card {
  margin-top: 0.25rem;
  padding: 0.75rem;
  border: 1px solid rgb(8 0 99 / 10%);
  border: 1px solid oklch(0.22 0.16 268 / 10%);
  border-radius: 0.75rem;
  background: #ffffff;
  background: oklch(1 0 0);
  box-shadow: 0 4px 20px -8px rgb(8 0 99 / 12%);
  box-shadow: 0 4px 20px -8px oklch(0.22 0.16 268 / 12%);
}

.forum-program__title {
  margin: 0;
  color: #080063;
  color: oklch(0.22 0.16 268);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.25rem;
  overflow-wrap: anywhere;
}

.forum-program__description {
  margin: 0;
  margin-top: 0.25rem;
  color: #48566c;
  color: oklch(0.45 0.04 260);
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.program-reveal {
  opacity: 0;
  will-change: opacity, transform;
  transition:
    opacity 0.6s ease,
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--program-delay, 0ms);
}

.program-reveal--left {
  transform: translateX(-28px);
}

.program-reveal--right {
  transform: translateX(28px);
}

.program-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (min-width: 640px) {
  .forum-program__title {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .forum-program__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .program-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
