/* ============================================================================
   EASTON · NATIVE CLASS-SCHEDULE DISPLAY  (ADR-048 render layer)
   Port of the Claude Design handoff (schedule-view/kit/data.jsx) to real CSS.
   Borderless / hairline idiom on cream. Anton (display) · Oswald (labels) ·
   Barlow (body). Brand red is reserved for the eyebrow square, the Today marker,
   the concurrency keyline and the single CTA — never a program tag.
   Mobile-first = the design's 'm' size; desktop standalone upgrades to 'lg'.
   Consumes design tokens from tokens.css — no raw hex except the 6 program
   accents, which arrive as --eb-pa / --eb-pt inline custom properties per tag.
   ============================================================================ */

.eb-sched {
  --eb-faint: rgba(13, 13, 12, 0.32);
  --eb-gutter: 64px;
  --eb-gutter-gap: 13px;
  background: var(--canvas);
  font-family: var(--font-body);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}
.eb-sched *,
.eb-sched *::before,
.eb-sched *::after { box-sizing: border-box; }

.eb-sched__wrap {
  width: 100%;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.eb-sched--embedded .eb-sched__wrap { max-width: 720px; margin: 0 auto; padding: 0 24px; }

/* Location-page embed integration (ADR-059): the schedule is dropped inside the
   host location section band (.easton-section--alt) + its .easton-container. So
   the embed stays transparent (it inherits the band instead of painting its own
   cream box across the container width) and drops its own side gutter (the
   container already provides one) to avoid a doubled inset on narrow screens.
   Scoped to --embedded only; the standalone /schedule/ page is unaffected. */
.eb-sched--embedded { background: transparent; }
.eb-sched--embedded .eb-sched__wrap { padding-inline: 0; }
/* In the narrow embed column a rare 3–4-coach class would otherwise clip its
   name list at the edge (the coach line is white-space:nowrap by default); let it
   wrap here instead. Scoped to --embedded so the standalone page is untouched. */
.eb-sched--embedded .eb-sched-class__coach { white-space: normal; }

[hidden] { display: none !important; }

/* Horizontal scroll rows with hairline-faded edges, no scrollbar. */
.eb-sched .sk-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.eb-sched .sk-scroll::-webkit-scrollbar { display: none; }

/* Inline SVG icon wrapper. */
.eb-sched-i { display: inline-flex; align-items: center; justify-content: center; }
.eb-sched-i svg { display: block; width: 13px; height: 13px; }

/* ---- Eyebrow ------------------------------------------------------------- */
.eb-sched-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
}
.eb-sched-eyebrow__sq { width: 7px; height: 7px; background: var(--red); flex: 0 0 auto; }
.eb-sched-eyebrow--on-dark { color: #fff; font-size: 11px; }

/* ---- Header (standalone) ------------------------------------------------- */
.eb-sched-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  padding-top: 24px;
}
.eb-sched-head__h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 33px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--ink);
  text-wrap: balance;
}
.eb-sched-head__sub {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
  color: var(--text-muted);
}

/* ---- Filters (sticky on the standalone page) ----------------------------- */
.eb-sched-filters { display: flex; flex-direction: column; gap: 11px; }
.eb-sched--standalone .eb-sched-filters {
  position: sticky;
  top: var(--eb-sched-sticky-top, 0px);
  z-index: 5;
  margin-top: 18px;
  padding: 14px 0 13px;
  background: var(--canvas);
  border-bottom: 1px solid var(--line);
}
.eb-sched--embedded .eb-sched-filters { padding-top: 6px; }

.eb-sched-field { display: flex; flex-direction: column; gap: 7px; }
.eb-sched-flabel {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* Academy chips */
.eb-sched-acads {
  display: flex;
  gap: 8px;
  padding: 2px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 14px, #000 calc(100% - 14px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 14px, #000 calc(100% - 14px), transparent 100%);
}
.eb-sched-acad {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 3px;
  background: var(--paper);
  border: 1.5px solid var(--line);
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.eb-sched-acad:hover:not(.is-active) { border-color: var(--ink); }
.eb-sched-acad__sq { width: 7px; height: 7px; background: var(--line-strong); flex: 0 0 auto; }
.eb-sched-acad.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }
.eb-sched-acad.is-active .eb-sched-acad__sq { background: var(--red); }

/* Academy pin (embedded) */
.eb-sched-pin {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 15px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 3px;
}
.eb-sched-pin__icon { color: var(--red); flex: 0 0 auto; display: inline-flex; }
.eb-sched-pin__icon svg { width: 16px; height: 16px; }
.eb-sched-pin__text { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.eb-sched-pin__k {
  font-family: var(--font-label); font-weight: 600; font-size: 9.5px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-faint);
}
.eb-sched-pin__n {
  font-family: var(--font-label); font-weight: 600; font-size: 15px;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink);
}

/* Day selector */
.eb-sched-days {
  display: flex;
  gap: 8px;
  padding: 2px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 14px, #000 calc(100% - 14px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 14px, #000 calc(100% - 14px), transparent 100%);
}
.eb-sched-day-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 3px;
  background: var(--paper);
  border: 1.5px solid var(--line);
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.eb-sched-day-chip:hover:not(.is-active) { border-color: var(--ink); }
.eb-sched-day-chip.is-today { border-color: var(--line-strong); }
.eb-sched-day-chip.is-dark { color: var(--text-faint); opacity: 0.7; }
.eb-sched-day-chip.is-active { background: var(--ink); border-color: var(--ink); color: #fff; opacity: 1; }
.eb-sched-day-chip__dot { width: 6px; height: 6px; background: var(--red); flex: 0 0 auto; }
.eb-sched-day-chip.is-active .eb-sched-day-chip__dot { background: #fff; }
.eb-sched-day-chip .eb-sched-i--stack svg { width: 14px; height: 14px; color: var(--red); }
.eb-sched-day-chip.is-active .eb-sched-i--stack svg { color: #fff; }
.eb-sched-day-chip__count {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 18px; height: 18px; padding: 0 5px; border-radius: 999px;
  font-family: var(--font-label); font-weight: 700; font-size: 10.5px;
  background: var(--surface-sunken); color: var(--text-muted);
  border: 1px solid transparent;
}
.eb-sched-day-chip.is-active .eb-sched-day-chip__count { background: rgba(255, 255, 255, 0.18); color: #fff; }
.eb-sched-day-chip.is-dark .eb-sched-day-chip__count { background: transparent; color: var(--eb-faint); border-color: var(--line); }

/* Program filter */
.eb-sched-prog { display: flex; flex-direction: column; gap: 10px; }
.eb-sched-prog-toggle {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 13px;
  border-radius: 999px;
  background: var(--paper);
  border: 1.5px solid var(--line);
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.eb-sched-prog-toggle__funnel { display: inline-flex; color: var(--red); }
.eb-sched-prog-toggle__funnel svg { width: 13px; height: 13px; }
.eb-sched-prog-toggle__chev { display: inline-flex; color: var(--text-faint); transition: transform 0.15s ease; }
.eb-sched-prog-toggle__chev svg { width: 12px; height: 12px; }
.eb-sched-prog-toggle[aria-expanded="true"] .eb-sched-prog-toggle__chev { transform: rotate(90deg); }
.eb-sched-prog-toggle.is-filtering { background: rgba(13, 13, 12, 0.05); border-color: var(--ink); }
.eb-sched-prog-toggle__count {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 17px; height: 17px; padding: 0 5px; border-radius: 999px;
  background: var(--ink); color: #fff; font-size: 10.5px; font-weight: 700;
}
.eb-sched-prog-chips { display: flex; gap: 8px; align-items: center; padding: 2px 0; }
.eb-sched-prog-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  min-height: 36px;
  padding: 0 13px;
  border-radius: 999px;
  background: var(--paper);
  border: 1.5px solid var(--line);
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.14s ease, border-color 0.14s ease, color 0.14s ease;
}
.eb-sched-prog-chip:hover:not(.is-active) { border-color: var(--line-strong); }
.eb-sched-prog-chip__sq { width: 8px; height: 8px; background: var(--eb-pa, var(--ink)); flex: 0 0 auto; opacity: 0.55; }
/* "All programs" chip active = ink; program chips active = their accent. */
.eb-sched-prog-chip[data-program="all"].is-active { background: rgba(13, 13, 12, 0.05); border-color: var(--ink); color: var(--ink); }
.eb-sched-prog-chip:not([data-program="all"]).is-active {
  background: color-mix(in srgb, var(--eb-pa) 9%, transparent);
  border-color: var(--eb-pa);
  color: var(--eb-pa);
}
.eb-sched-prog-chip.is-active .eb-sched-prog-chip__sq { opacity: 1; }

.eb-sched-prog--single { display: inline-flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.eb-sched-prog__only {
  font-family: var(--font-label); font-weight: 600; font-size: 11.5px;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--eb-faint);
}

/* ---- Program tag (colour key) ------------------------------------------- */
.eb-sched-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
  padding: 3px 8px 3px 6px;
  border-radius: 2px;
  background: var(--eb-pt, var(--surface-sunken));
  border: 1px solid color-mix(in srgb, var(--eb-pa, var(--ink)) 15%, transparent);
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--eb-pa, var(--ink));
  white-space: nowrap;
}
.eb-sched-tag__sq { width: 7px; height: 7px; background: var(--eb-pa, var(--ink)); flex: 0 0 auto; }

/* ---- Status tags --------------------------------------------------------- */
.eb-sched-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex: 0 0 auto;
  border-radius: 2px;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 10.5px;
  text-transform: uppercase;
  white-space: nowrap;
}
.eb-sched-status--online { padding: 3px 8px 3px 6px; background: rgba(13, 13, 12, 0.05); border: 1px solid var(--line-strong); letter-spacing: 0.1em; color: var(--ink); }
.eb-sched-status--online svg { width: 12px; height: 12px; }
.eb-sched-status--cancelled { padding: 3px 8px; background: rgba(240, 65, 55, 0.07); border: 1px solid rgba(240, 65, 55, 0.4); font-weight: 700; letter-spacing: 0.12em; color: var(--red); }

/* ---- Week + day --------------------------------------------------------- */
.eb-sched-bodies { padding-top: 20px; }
.eb-sched-week { display: flex; flex-direction: column; gap: 30px; }
.eb-sched--embedded .eb-sched-week { gap: 26px; }

.eb-sched-day { display: flex; flex-direction: column; gap: 2px; }
.eb-sched-day__head {
  display: flex;
  align-items: baseline;
  gap: 11px;
  padding: 0 0 12px;
  border-bottom: 2px solid var(--ink);
  margin-bottom: 6px;
}
.eb-sched-day__dot { width: 9px; height: 9px; background: var(--red); flex: 0 0 auto; align-self: center; }
.eb-sched-day__name {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
  flex: 0 0 auto;
}
.eb-sched-day__sub {
  font-family: var(--font-label); font-weight: 600; font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint);
  white-space: nowrap; flex: 0 0 auto;
}
.eb-sched-day__count {
  margin-left: auto; align-self: center;
  font-family: var(--font-label); font-weight: 600; font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--eb-faint);
  white-space: nowrap; flex: 0 0 auto;
}

.eb-sched-groups { display: flex; flex-direction: column; gap: 8px; }

/* Empty-day rest state */
.eb-sched-empty {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  margin-left: calc(var(--eb-gutter) + var(--eb-gutter-gap));
}
.eb-sched-empty__dash { color: var(--eb-faint); display: inline-flex; }
.eb-sched-empty__dash svg { width: 16px; height: 16px; }
.eb-sched-empty__txt {
  font-family: var(--font-body); font-weight: 500; font-size: 13.5px;
  color: var(--text-faint); font-style: italic; white-space: nowrap;
}

/* ---- Time group: shared gutter + keyline + cards ------------------------ */
.eb-sched-group { display: flex; gap: var(--eb-gutter-gap); align-items: stretch; }
.eb-sched-gutter {
  width: var(--eb-gutter);
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-top: 11px;
  text-align: right;
}
.eb-sched-gutter__hm {
  font-family: var(--font-label); font-weight: 700; font-size: 19px; line-height: 1;
  letter-spacing: 0.01em; color: var(--ink); font-variant-numeric: tabular-nums;
}
.eb-sched-gutter__ap {
  font-family: var(--font-label); font-weight: 600; font-size: 11px;
  letter-spacing: 0.16em; color: var(--text-faint); margin-top: 2px;
}
.eb-sched-gutter__conc {
  margin-top: 7px;
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-label); font-weight: 600; font-size: 9.5px;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); white-space: nowrap;
}
.eb-sched-gutter__conc-sq { width: 5px; height: 5px; background: var(--red); flex: 0 0 auto; }
.eb-sched-keyline { width: 1.5px; flex: 0 0 auto; background: var(--line-strong); border-radius: 2px; }
.eb-sched-group.is-concurrent .eb-sched-keyline { width: 2.5px; background: var(--red); }
.eb-sched-cards { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; list-style: none; margin: 0; padding: 0; }

/* ---- Class card (no per-row booking, ever) ------------------------------ */
.eb-sched-class {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}
.eb-sched-class.is-last { border-bottom: none; }
.eb-sched-class.is-cancelled { opacity: 0.66; }
.eb-sched-class__title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.28;
  color: var(--ink);
  letter-spacing: -0.005em;
  text-wrap: pretty;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.eb-sched-class.is-cancelled .eb-sched-class__title {
  text-decoration: line-through;
  text-decoration-color: var(--red);
  text-decoration-thickness: 1.5px;
}
.eb-sched-class__meta { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; row-gap: 6px; }
.eb-sched-class__coach {
  font-family: var(--font-body); font-weight: 500; font-size: 13px;
  color: var(--text-muted); white-space: nowrap;
}
.eb-sched-class__when { display: inline-flex; align-items: center; gap: 8px; }
.eb-sched-class__when-dot { width: 3px; height: 3px; border-radius: 999px; background: var(--eb-faint); flex: 0 0 auto; }
.eb-sched-class__when {
  font-family: var(--font-body); font-weight: 500; font-size: 12.5px;
  color: var(--text-faint); white-space: nowrap;
}

/* ---- Full-schedule link (embedded) -------------------------------------- */
.eb-sched-fulllink { padding-top: 22px; }
.eb-sched-link {
  display: inline-flex; align-items: center; gap: 8px;
  border-bottom: 2px solid var(--line-strong); padding-bottom: 3px;
  text-decoration: none;
  font-family: var(--font-label); font-weight: 600; font-size: 12.5px;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink);
  transition: border-color 0.15s ease;
}
.eb-sched-link:hover { border-color: var(--red); }
.eb-sched-link svg { width: 15px; height: 15px; }

/* ---- The single page CTA ------------------------------------------------ */
.eb-sched-cta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  margin: 32px 0 34px;
  padding: 22px 20px;
  background: var(--ink);
  border-radius: 5px;
}
.eb-sched-cta__copy { display: flex; flex-direction: column; gap: 7px; }
.eb-sched-cta__h {
  font-family: var(--font-display); font-weight: 400; font-size: 25px; line-height: 1.04;
  letter-spacing: 0.01em; text-transform: uppercase; color: #fff;
}
.eb-sched-cta__sub {
  font-family: var(--font-body); font-weight: 500; font-size: 14px; line-height: 1.45;
  color: rgba(255, 255, 255, 0.66); max-width: 420px; text-wrap: pretty;
}
.eb-sched-cta__btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 11px;
  flex: 0 0 auto;
  padding: 16px 24px;
  border-radius: 3px;
  text-decoration: none;
  background: var(--red);
  color: #fff;
  box-shadow: 0 2px 0 var(--red-shadow), 0 8px 20px rgba(240, 65, 55, 0.28);
  font-family: var(--font-label); font-weight: 600; font-size: 14px;
  letter-spacing: 0.1em; text-transform: uppercase; white-space: nowrap;
  transition: filter 0.15s ease, transform 0.15s ease;
}
.eb-sched-cta__btn:hover { filter: brightness(1.05); transform: translateY(-1px); color: #fff; }
.eb-sched-cta__btn:active { transform: translateY(0); }
.eb-sched-cta__btn svg { width: 17px; height: 17px; }

/* ---- Empty-feed fallback (cache not built yet) -------------------------- */
.eb-sched-empty-feed { padding: 48px 0 56px; max-width: 460px; }
.eb-sched-empty-feed__lead {
  margin: 0 0 8px; font-family: var(--font-display); font-weight: 400; font-size: 26px;
  line-height: 1.1; text-transform: uppercase; color: var(--ink);
}
.eb-sched-empty-feed__sub { margin: 0; font-family: var(--font-body); font-size: 15px; line-height: 1.5; color: var(--text-muted); }
.eb-sched-empty-feed__sub a { color: var(--red); }

/* ============================================================================
   DESKTOP — the standalone page upgrades to the design's 'lg' size.
   ============================================================================ */
@media (min-width: 980px) {
  .eb-sched--standalone { --eb-gutter: 92px; --eb-gutter-gap: 18px; }
  .eb-sched--standalone .eb-sched__wrap { max-width: 1180px; margin: 0 auto; padding: 0 56px; }

  .eb-sched--standalone .eb-sched-head { padding-top: 40px; }
  .eb-sched--standalone .eb-sched-eyebrow { font-size: 13px; }
  .eb-sched--standalone .eb-sched-head__h1 { font-size: 54px; }
  .eb-sched--standalone .eb-sched-head__sub { font-size: 16px; }

  .eb-sched--standalone .eb-sched-filters { gap: 13px; margin-top: 24px; padding: 18px 0 16px; }
  .eb-sched--standalone .eb-sched-acad { font-size: 14px; }
  .eb-sched--standalone .eb-sched-day-chip { font-size: 13px; }
  .eb-sched--standalone .eb-sched-prog-toggle,
  .eb-sched--standalone .eb-sched-prog-chip { font-size: 12.5px; }

  .eb-sched--standalone .eb-sched-bodies { padding-top: 26px; }
  .eb-sched--standalone .eb-sched-tag { padding: 4px 9px 4px 7px; font-size: 11.5px; }
  .eb-sched--standalone .eb-sched-tag__sq { width: 8px; height: 8px; }

  .eb-sched--standalone .eb-sched-day { gap: 4px; }
  .eb-sched--standalone .eb-sched-day__head { padding-bottom: 14px; margin-bottom: 8px; }
  .eb-sched--standalone .eb-sched-day__name { font-size: 27px; }
  .eb-sched--standalone .eb-sched-day__sub { font-size: 13px; }
  .eb-sched--standalone .eb-sched-day__count { font-size: 12px; }
  .eb-sched--standalone .eb-sched-groups { gap: 10px; }

  .eb-sched--standalone .eb-sched-gutter { padding-top: 13px; }
  .eb-sched--standalone .eb-sched-gutter__hm { font-size: 23px; }
  .eb-sched--standalone .eb-sched-gutter__ap { font-size: 12px; }

  .eb-sched--standalone .eb-sched-class { padding: 13px 0; }
  .eb-sched--standalone .eb-sched-class__title { font-size: 17px; }
  .eb-sched--standalone .eb-sched-class__coach { font-size: 14px; }
  .eb-sched--standalone .eb-sched-class__when { font-size: 13.5px; }

  /* All-week view: two columns so a dense academy reads top-to-bottom. A single
     selected day (JS sets data-day) collapses to one centred column. */
  .eb-sched--standalone .eb-sched-week[data-day="all"] {
    display: block;
    column-count: 2;
    column-gap: 56px;
  }
  .eb-sched--standalone .eb-sched-week[data-day="all"] .eb-sched-day {
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    margin-bottom: 34px;
  }
  .eb-sched--standalone .eb-sched-week:not([data-day="all"]) { max-width: 860px; }

  /* CTA goes wide: copy left, button right. */
  .eb-sched--standalone .eb-sched-cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin: 44px 0 48px;
    padding: 26px 32px;
  }
  .eb-sched--standalone .eb-sched-cta__h { font-size: 30px; }
  .eb-sched--standalone .eb-sched-cta__sub { font-size: 15px; }
  .eb-sched--standalone .eb-sched-cta__btn { padding: 17px 30px; font-size: 15px; }
  .eb-sched--standalone .eb-sched-eyebrow--on-dark { font-size: 11px; }
}

@media (prefers-reduced-motion: reduce) {
  .eb-sched * { transition: none !important; }
}
