/* ============================================================
   SERENZA · schedule.css
   Event day schedule / cronograma.
   Requires colors_and_type.css (tokens).
   ============================================================ */

/* ---------- SCHEDULE (cronograma del día) ---------- */
.sz-schedule {
  position: relative;
  padding-left: 28px;
}
.sz-schedule::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), var(--paper-deep));
  border-radius: 1px;
}
.sz-schedule__item {
  position: relative;
  padding: 14px 0;
}
.sz-schedule__item + .sz-schedule__item {
  border-top: 1px solid var(--paper-deep);
}
.sz-schedule__item::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 20px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 2.5px solid var(--paper-soft);
  box-shadow: 0 0 0 1px var(--gold);
  transition: transform .2s, box-shadow .2s;
}
.sz-schedule__item:hover::before {
  transform: scale(1.2);
  box-shadow: 0 0 0 1px var(--gold), 0 0 8px rgba(180,154,110,.3);
}
.sz-schedule__item:first-child::before {
  top: 18px;
}
.sz-schedule__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.sz-schedule__title {
  font-family: var(--sans);
  font-weight: var(--fw-medium);
  font-size: 14px;
  color: var(--forest);
  margin: 0;
  line-height: 1.3;
}
.sz-schedule__time {
  font-family: var(--sans);
  font-weight: var(--fw-light);
  font-size: 12.5px;
  color: var(--gold-deep);
  margin-top: 3px;
  letter-spacing: 0.02em;
}
.sz-schedule__desc {
  font-family: var(--sans);
  font-weight: var(--fw-light);
  font-size: 13px;
  color: var(--ink-soft);
  margin: 6px 0 0;
  line-height: 1.5;
}
.sz-schedule__meta {
  font-family: var(--sans);
  font-weight: var(--fw-light);
  font-size: 11.5px;
  color: var(--ink-faint);
  margin-top: 4px;
}
.sz-schedule__actions {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}
