/* Schedule & Results — 2026 redesign */

[hidden] { display: none !important; }

:root {
  --sch-bg: #f3f4f6;
  --sch-card: #fff;
  --sch-card-shadow: 0 2px 4px -2px rgba(0, 0, 0, 0.12);
  --sch-border: #f1f2f3;
  --sch-border-strong: #ccc;
  --sch-text: #1a1a1a;
  --sch-text-secondary: #4d4d4d;
  --sch-muted: #666;
  --sch-accent: #1a1a1a;
  --sch-brand: #f97316;
  --sch-brand-hover: #ea580c;
  --sch-ft: #d5202b;
  --sch-live: #093;
  --sch-win: #14ae5c;
  --sch-loss: #d5202b;
  --sch-odd: #7842ff;
  --sch-upcoming: #2563eb;
  --sch-league-color: #f97316;
  --sch-row-accent: var(--sch-league-color);
  --sch-radius: 8px;
  --sch-sticky-offset: 160px;
  --sch-font: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --sch-font-display: 'Bebas Neue', 'Inter', ui-sans-serif, system-ui, sans-serif;
  --sch-filter-chevron: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 4.5L6 8l3.5-3.5' stroke='%23666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  --sch-fs-2xs: .625rem;
  --sch-fs-xs: .6875rem;
  --sch-fs-sm: .75rem;
  --sch-fs-base: .875rem;
  --sch-fs-md: .875rem;
  --sch-fs-lg: 1.25rem;
  --sch-fs-xl: 1.125rem;
  --sch-fs-2xl: 1.25rem;
  --sch-fs-page-title: 2.25rem;
  --sch-fs-page-sub: 1rem;
  --sch-fs-filter-label: 0.6875rem;
  --sch-fs-filter-value: 1rem;
  --sch-fs-day-head: 1.25rem;
  --sch-fs-day-badge: 0.875rem;
  --sch-fs-card-meta: 1rem;
  --sch-fs-team-name: 1.125rem;
  --sch-fs-team-meta: 0.875rem;
  --sch-fs-card-display: 2.25rem;
  --sch-fs-card-venue: 0.875rem;
  --sch-fs-card-status: 0.6875rem;
  --sch-fs-card-action: 1rem;
  --sch-fs-score: 2.25rem;
  --sch-fs-time: 2.25rem;
  --sch-bc-h: 25px;
  --sch-team-logo: 72px;
  --sch-team-logo-pad: calc(var(--sch-team-logo) * 8 / 72);
  --sch-toolbar-pill-h: 30px;
  --sch-page-max: 1080px;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--sch-font);
  background: var(--sch-bg);
  color: var(--sch-text);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

.sch-page {
  max-width: var(--sch-page-max);
  margin: 0 auto;
  padding: 40px 48px 80px;
}

.sch-main { min-height: 40vh; }

/* ── League schedule header ─────────────────────────────────────── */
.sch-page-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin-bottom: 16px;
}

.sch-page-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
}

.sch-page-header-text {
  flex: 1;
  min-width: 0;
}

.sch-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: auto;
}

.sch-title {
  margin: 0;
  font-family: var(--sch-font);
  font-size: var(--sch-fs-page-title);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.22;
  text-transform: none;
  color: var(--sch-text);
}

.sch-league-logo {
  width: 64px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

html.sch-hide-logo .sch-league-logo { display: none !important; }

/* ── Toolbar (filters) ──────────────────────────────────────────── */
.sch-sticky-controls {
  position: sticky;
  top: 0;
  z-index: 30;
  margin-bottom: 16px;
  padding: 0;
  background: var(--sch-bg);
  box-shadow: none;
}

.sch-sticky-controls.is-stuck {
  padding-top: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--sch-border);
  box-shadow: none;
}

.sch-toolbar {
  display: block;
  width: 100%;
  margin-bottom: 0;
  padding: 0 12px 10px;
  border-bottom: 1px solid var(--sch-border);
}

.sch-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-sizing: border-box;
  height: var(--sch-toolbar-pill-h);
  min-height: var(--sch-toolbar-pill-h);
  padding: 0 10px;
  border-radius: 999px;
  border: 0.5px solid var(--sch-border-strong);
  background: #fff;
  font-size: .8125rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--sch-text);
  text-decoration: none;
  white-space: nowrap;
  transition: border-color .12s, color .12s, background .12s;
}

.sch-action-btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.sch-action-btn:hover {
  border-color: var(--sch-text-secondary);
  color: var(--sch-text);
}

.sch-action-btn--ghost {
  border-color: transparent;
  background: transparent;
  padding: 0 10px;
}

.sch-action-btn--ghost:hover {
  background: rgba(0, 0, 0, 0.04);
}

/* ── Filter bar ─────────────────────────────────────────────────── */
.sch-filter-bar {
  display: flex;
  align-items: stretch;
  flex: 1;
  min-width: 0;
  gap: 16px;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.sch-filter-bar-icon { display: none; }

.sch-filter-mobile-toggle { display: none; }

.sch-filter-mobile-top {
  display: contents;
}

@media (min-width: 641px) {
  .sch-filter-panel { order: 1; }

  .sch-filter-item--group {
    order: 2;
    flex: 0 0 5.75rem;
    min-width: 5.75rem;
    max-width: 5.75rem;
    margin-left: 32px;
    padding-inline: 0;
  }

  .sch-filter-item--group select {
    padding-right: 16px;
  }

  .sch-filter-item--venue {
    flex: 2 1 12rem;
    max-width: min(22rem, 34vw);
  }

  .sch-filter-item--team {
    flex: 1.35 1 10rem;
    max-width: min(18rem, 26vw);
  }

  .sch-filter-item--season {
    flex: 0 1 5.5rem;
    max-width: 6.5rem;
  }

  .sch-filter-reset { order: 3; }
}

.sch-filter-panel {
  display: flex;
  flex: 1;
  min-width: 0;
  gap: 16px;
  align-items: flex-end;
}

.sch-filter-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 0 1 240px;
  max-width: 240px;
  min-width: 0;
  padding: 2px 12px;
  min-height: 40px;
  justify-content: center;
  background: transparent;
  border: none;
  border-bottom: 0.5px solid var(--sch-border-strong);
  border-radius: 0;
  cursor: default;
}

.sch-filter-item--season {
  flex: 0 1 240px;
  max-width: 240px;
}

.sch-filter-item--group {
  flex: 0 0 auto;
  min-width: 5.75rem;
  max-width: 5.75rem;
  border-bottom: none;
  padding-left: 0;
  padding-right: 0;
  cursor: default;
}

.sch-filter-item--group .sch-sort-inline {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: 100%;
  height: var(--sch-toolbar-pill-h);
  min-height: var(--sch-toolbar-pill-h);
  padding: 2px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  background: #fff;
  box-sizing: border-box;
}

.sch-filter-item--group .sch-sort-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  font-size: .8125rem;
  font-weight: 500;
  min-height: 0;
}

.sch-filter-item-label {
  font-size: var(--sch-fs-filter-label);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--sch-muted);
  line-height: 1.3;
}

.sch-filter-control {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  width: 100%;
}

.sch-filter-control select {
  flex: 1;
  width: auto;
}

.sch-filter-bar select,
.sch-filter-custom-trigger {
  width: 100%;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  font-size: var(--sch-fs-filter-value);
  font-family: inherit;
  font-weight: 600;
  color: var(--sch-text);
  padding: 0 18px 0 0;
  cursor: pointer;
  line-height: 1.25;
  appearance: none;
  background-image: var(--sch-filter-chevron);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 12px 12px;
}

.sch-filter-custom { position: relative; width: 100%; min-width: 0; flex: 1; }

.sch-filter-custom-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  text-align: left;
  background-image: var(--sch-filter-chevron);
}

.sch-filter-clear {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border: none;
  border-radius: 999px;
  background: #eee;
  color: var(--sch-text);
  cursor: pointer;
  transition: background .12s, color .12s;
}

.sch-filter-clear:hover {
  background: #e4e4e4;
  color: var(--sch-text);
}

.sch-filter-custom-value { flex: 1; min-width: 0; }

.sch-filter-custom-native {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.sch-filter-custom-menu {
  position: absolute;
  z-index: 60;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  max-height: 220px;
  overflow-y: auto;
  margin: 0;
  padding: 4px 0;
  list-style: none;
  background: #fff;
  border: 1px solid var(--sch-border);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.sch-filter-custom-menu [role="option"] {
  padding: 8px 12px;
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
}

.sch-filter-custom-menu [role="option"]:hover,
.sch-filter-custom-menu [role="option"].is-selected {
  background: rgba(0, 0, 0, 0.05);
  color: var(--sch-text);
}

.sch-filter-bar select.is-active,
.sch-filter-item:has(select.is-active) .sch-filter-custom-value {
  color: var(--sch-text);
}

.sch-competition-filter { display: none !important; }
html[data-league="nbl1"] .sch-competition-filter,
html[data-league="bigv"] .sch-competition-filter { display: flex !important; }

.sch-filter-reset {
  align-self: flex-end;
  margin-left: 8px;
  padding: 0 0 8px;
  border: none;
  border-bottom: 1px solid transparent;
  background: transparent;
  font-size: var(--sch-fs-sm);
  font-weight: 600;
  color: var(--sch-muted);
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}

.sch-filter-reset:hover {
  color: var(--sch-text);
}

/* ── Day groups ─────────────────────────────────────────────────── */
.sch-day-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 16px 0 16px;
  padding-top: 16px;
  scroll-margin-top: calc(var(--sch-sticky-offset) + 8px);
}

.sch-day-head:first-child {
  margin-top: 0;
  padding-top: 16px;
}

.sch-day-heading {
  margin: 0;
  font-size: var(--sch-fs-day-head);
  font-weight: 600;
  color: var(--sch-text);
  letter-spacing: 0;
  line-height: 1.4;
}

.sch-day-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 4px;
  border-radius: 4px;
  background: var(--sch-live);
  color: #fff;
  font-size: var(--sch-fs-day-badge);
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 1.2;
}

.sch-day-badge::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
}

.sch-day-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 4px;
}

/* ── Match card ─────────────────────────────────────────────────── */
.sch-card {
  background: var(--sch-card);
  border: none;
  border-radius: var(--sch-radius);
  overflow: hidden;
  box-shadow: var(--sch-card-shadow);
  scroll-margin-top: calc(var(--sch-sticky-offset) + 12px);
}

.sch-card-meta {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 8px 16px;
  border-bottom: 0.3px solid var(--sch-border);
  font-size: var(--sch-fs-card-meta);
  font-weight: 600;
  line-height: 1.2;
  color: var(--sch-text);
}

.sch-card-meta-date { justify-self: start; }

.sch-card-meta-date-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-self: start;
  gap: 1px;
  min-width: 0;
}

.sch-card-meta-time {
  display: none;
  font-size: var(--sch-fs-sm);
  font-weight: 600;
  color: var(--sch-text);
  line-height: 1.2;
}

.sch-card-meta-bc {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sch-card-meta-bc img {
  height: var(--sch-bc-h);
  width: auto;
  max-width: 96px;
  object-fit: contain;
}

.sch-bc {
  display: inline-flex;
  align-items: center;
  font-size: var(--sch-fs-xs);
  font-weight: 700;
  line-height: 1;
}

.sch-bc img {
  height: var(--sch-bc-h);
  width: auto;
  max-width: 96px;
  object-fit: contain;
}

.sch-card-meta-round {
  justify-self: end;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--sch-text-secondary);
}

.sch-card-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(9rem, 11rem) minmax(0, 1fr);
  gap: 28px;
  padding: 12px 16px;
  align-items: center;
}

.sch-card-team {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
  width: 100%;
}

.sch-card-team--home {
  align-items: flex-start;
}

.sch-card-team--away {
  align-items: flex-end;
}

.sch-card-team-row {
  display: grid;
  align-items: center;
  gap: 12px;
  min-width: 0;
  max-width: 100%;
  width: 100%;
  min-height: 108px;
}

.sch-card-team--home .sch-card-team-row {
  grid-template-columns: auto minmax(0, 1fr);
  justify-items: start;
}

.sch-card-team--away .sch-card-team-row {
  grid-template-columns: minmax(0, 1fr) auto;
  justify-items: end;
}

.sch-card-team--home .sch-card-team-brand {
  justify-self: start;
}

.sch-card-team--away .sch-card-team-brand {
  justify-self: end;
}

.sch-card-team--home .sch-card-team-copy {
  justify-self: start;
}

.sch-card-team--away .sch-card-team-copy {
  justify-self: end;
}

.sch-card-team-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}

.sch-card-team-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex: 0 1 auto;
  max-width: min(145px, 100%);
}

.sch-card-team--home .sch-card-team-copy {
  align-items: flex-start;
}

.sch-card-team--away .sch-card-team-copy {
  align-items: flex-end;
}

.sch-card-team-stat {
  display: none;
  flex-shrink: 0;
  margin-left: auto;
}

.sch-card-team-score {
  font-size: var(--sch-fs-xl);
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
}

.sch-card-team-score.is-winner { color: var(--sch-text); }
.sch-card-team-score.is-loser { color: var(--sch-muted); font-weight: 700; }

.sch-card-team-stat--pregame {
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.sch-card-team-extra {
  display: none;
}

.sch-card-odd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 43px;
  height: 17px;
  padding: 2px 8px;
  border-radius: 12px;
  background: var(--sch-odd);
  color: #fff;
  font-size: .625rem;
  font-weight: 600;
  line-height: 1.2;
}

.sch-card-team-brand .sch-card-odd {
  margin-top: 2px;
}

.sch-card-logo {
  width: var(--sch-team-logo);
  height: var(--sch-team-logo);
  padding: var(--sch-team-logo-pad);
  box-sizing: border-box;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
}

.sch-card-name {
  font-size: var(--sch-fs-team-name);
  font-weight: 600;
  line-height: 1.2;
  min-width: 0;
  max-width: 145px;
}

.sch-team-name-code {
  display: none;
}

.sch-team-standing-inline {
  font-weight: 500;
  color: var(--sch-muted);
}

@media (max-width: 900px) {
  .sch-team-name-full {
    display: none;
  }

  .sch-team-name-code {
    display: inline;
  }
}

.sch-card-team--home .sch-card-name,
.sch-card-team--home .sch-card-form {
  text-align: left;
  align-self: flex-start;
}

.sch-card-team--away .sch-card-name,
.sch-card-team--away .sch-card-form {
  text-align: right;
  align-self: flex-end;
}

.sch-card-record {
  font-size: var(--sch-fs-team-meta);
  color: var(--sch-text-secondary);
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

.sch-card-form {
  display: inline-flex;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
}

.sch-card-form span {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .55rem;
  font-weight: 800;
  color: #fff;
}

.sch-card-form--text {
  gap: 0;
  font-size: var(--sch-fs-team-meta);
  font-weight: 600;
  line-height: 1.2;
}

.sch-card-form--text span {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  font-size: inherit;
  font-weight: inherit;
}

.sch-card-form--text .sch-form-w { color: var(--sch-win); }
.sch-card-form--text .sch-form-l { color: var(--sch-loss); }

.sch-form-w { background: var(--sch-win); }
.sch-form-l { background: var(--sch-loss); }

.sch-card-scores {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  font-family: var(--sch-font-display);
}

.sch-card-scores .sch-card-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-height: 22px;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--sch-accent);
  color: #fff;
  font-family: var(--sch-font);
  font-size: .625rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
  white-space: nowrap;
}

.sch-card-scores .sch-card-status::before {
  content: '•';
  margin-right: 4px;
  font-weight: 700;
}

.sch-card-scores .sch-card-status.is-live {
  background: var(--sch-live);
}

.sch-card-scores .sch-card-status.is-live::before {
  content: '';
  width: 5px;
  height: 5px;
  margin-right: 5px;
  border-radius: 50%;
  background: currentColor;
}

.sch-card-score {
  font-size: var(--sch-fs-score);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

.sch-card-score.is-winner { color: var(--sch-text); font-weight: 400; }
.sch-card-score.is-loser { color: var(--sch-text-secondary); font-weight: 400; }

.sch-card-scores-sep {
  font-family: var(--sch-font-display);
  font-size: var(--sch-fs-score);
  font-weight: 400;
  line-height: 1;
  color: var(--sch-text);
}

.sch-card-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  min-width: 0;
  padding: 0;
  justify-content: flex-end;
}

.sch-card-time {
  font-family: 'Bebas Neue', sans-serif;
  font-size: var(--sch-fs-time);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
}

.sch-card--upcoming .sch-card-meta-time {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.sch-card-status {
  font-size: var(--sch-fs-card-status);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sch-muted);
  line-height: 1.3;
}

/* Legacy: status only appears inside .sch-card-scores on v2 cards */
.sch-card-center > .sch-card-status {
  display: none;
}

.sch-card-venue {
  font-size: var(--sch-fs-card-venue);
  font-weight: 400;
  color: var(--sch-text);
  line-height: 1.4;
  max-width: 168px;
}

.sch-card-sponsor {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 20px;
  margin-top: 2px;
}

.sch-card-sponsor img {
  width: 49px;
  height: auto;
  max-height: 26px;
  object-fit: contain;
}

.sch-card-live {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: var(--sch-fs-2xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--sch-live);
}

.sch-card-live::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sch-live);
}

.sch-card-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 0.3px solid var(--sch-border-strong);
  border-bottom: 0.3px solid var(--sch-border-strong);
}

.sch-card-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 12px 4px;
  font-size: var(--sch-fs-card-action);
  font-weight: 500;
  line-height: 1.2;
  color: var(--sch-text);
  text-decoration: none;
  background: #fff;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background .12s;
}

.sch-card-action svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--sch-text);
}

.sch-card-action + .sch-card-action {
  border-left: 1px solid var(--sch-border);
}

.sch-card-action:hover {
  background: rgba(0, 0, 0, 0.03);
}

.sch-card-action.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

/* ── Empty state ────────────────────────────────────────────────── */
.sch-empty {
  margin-top: 8px;
  padding: 56px 24px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--sch-border);
  border-radius: var(--sch-radius);
}

.sch-empty-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sch-muted);
  font-size: 1.1rem;
  font-weight: 700;
}

.sch-empty-title {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 800;
}

.sch-empty-text {
  margin: 0 0 20px;
  color: var(--sch-muted);
  font-size: .92rem;
}

.sch-empty-clear {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: none;
  border-radius: 999px;
  background: var(--sch-brand);
  color: #fff;
  font-size: .88rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background .12s;
}

.sch-empty-clear:hover { background: var(--sch-brand-hover); }

/* ── League picker ──────────────────────────────────────────────── */
.sch-page--pick {
  max-width: 1200px;
  padding-top: 32px;
  padding-bottom: 48px;
}

.sch-pick-hero {
  text-align: center;
  margin-bottom: 32px;
}

.sch-pick-hero-logo {
  width: min(180px, 60vw);
  height: auto;
  margin: 0 auto 20px;
  display: block;
}

.sch-pick-title {
  margin: 0;
  font-family: var(--sch-font);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.sch-pick-sub {
  margin: 12px auto 0;
  max-width: 520px;
  font-size: .95rem;
  color: var(--sch-muted);
  line-height: 1.5;
}

.sch-pick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.sch-pick-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--sch-border);
  border-radius: var(--sch-radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: transform .15s, box-shadow .15s, border-color .15s;
}

.sch-pick-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
  border-color: rgba(0, 0, 0, 0.14);
}

.sch-pick-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
}

.sch-pick-card-media--nbl {
  background-image: linear-gradient(135deg, rgba(17, 24, 39, 0.35), rgba(249, 115, 22, 0.55)),
    radial-gradient(circle at 30% 20%, #fdba74, #ea580c 45%, #7c2d12);
}

.sch-pick-card-media--wnbl {
  background-image: linear-gradient(135deg, rgba(17, 24, 39, 0.35), rgba(132, 204, 22, 0.55)),
    radial-gradient(circle at 70% 30%, #bef264, #65a30d 50%, #365314);
}

.sch-pick-card-media--nbl1 {
  background-image: linear-gradient(135deg, rgba(17, 24, 39, 0.35), rgba(20, 184, 166, 0.55)),
    radial-gradient(circle at 40% 60%, #5eead4, #0d9488 50%, #134e4a);
}

.sch-pick-card-media--bigv {
  background-image: linear-gradient(135deg, rgba(17, 24, 39, 0.35), rgba(234, 179, 8, 0.55)),
    radial-gradient(circle at 60% 40%, #fde047, #ca8a04 50%, #713f12);
}

.sch-pick-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
}

.sch-pick-badge--season { background: #f97316; }
.sch-pick-badge--pre { background: #84cc16; }
.sch-pick-badge--off { background: #0d9488; }

.sch-pick-card-mark {
  position: absolute;
  left: 12px;
  bottom: -18px;
  width: 48px;
  height: 48px;
  padding: 6px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  object-fit: contain;
}

.sch-pick-card-mark--text {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .04em;
  color: var(--sch-text);
}

.sch-pick-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 28px 16px 16px;
}

.sch-pick-card-name {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.sch-pick-card-tagline {
  margin: 4px 0 0;
  font-size: .78rem;
  font-weight: 700;
}

.sch-pick-card-tagline--nbl { color: #ea580c; }
.sch-pick-card-tagline--wnbl { color: #65a30d; }
.sch-pick-card-tagline--nbl1 { color: #0d9488; }
.sch-pick-card-tagline--bigv { color: #ca8a04; }

.sch-pick-card-desc {
  margin: 10px 0 0;
  font-size: .82rem;
  color: var(--sch-muted);
  line-height: 1.45;
  flex: 1;
}

.sch-pick-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 999px;
  background: var(--sch-brand);
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
}

.sch-pick-card:hover .sch-pick-card-cta {
  background: var(--sch-brand-hover);
}

.sch-pick-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--sch-border);
  font-size: .78rem;
  color: var(--sch-muted);
}

.sch-pick-footer-nav {
  display: flex;
  gap: 16px;
}

.sch-pick-footer-nav a {
  color: var(--sch-muted);
  text-decoration: none;
}

.sch-pick-footer-nav a:hover { color: var(--sch-text); }

/* ── Skeleton ───────────────────────────────────────────────────── */
@keyframes sch-shimmer {
  0% { background-position: -600px 0; }
  100% { background-position: 600px 0; }
}

.skel {
  background: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 50%, #e5e7eb 75%);
  background-size: 600px 100%;
  animation: sch-shimmer 1.4s ease-in-out infinite;
  border-radius: 8px;
}

.sch-header-skel { margin-bottom: 16px; }

.sch-skel-toolbar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.sch-skel-filter-item {
  height: 34px;
  border-radius: 4px;
  background: transparent;
}

.sch-skeleton-wrap { display: none; }
.sch-skeleton-wrap[aria-hidden="true"]:not([hidden]) { display: block; }

.sch-skel-cards-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sch-skel-card-v2 {
  background: var(--sch-card);
  border: none;
  border-radius: var(--sch-radius);
  overflow: hidden;
  box-shadow: var(--sch-card-shadow);
}

.sch-skel-card-v2-meta { height: 36px; margin: 0; border-radius: 0; }
.sch-skel-card-v2-body {
  display: grid;
  grid-template-columns: 1fr minmax(8rem, 11rem) 1fr;
  gap: 12px;
  padding: 16px;
}
.sch-skel-card-v2-team { height: 88px; }
.sch-skel-card-v2-center { height: 88px; }
.sch-skel-card-v2-foot { height: 46px; border-radius: 0; }

/* ── Utilities ──────────────────────────────────────────────────── */
.sch-muted-text { color: var(--sch-muted); }

.sch-error {
  text-align: center;
  padding: 48px 16px;
  color: var(--sch-ft);
}

.sch-loading {
  text-align: center;
  padding: 48px 16px;
  color: var(--sch-muted);
}

/* ── Scroll shortcuts ─────────────────────────────────────────────── */
.sch-scroll-fabs {
  position: fixed;
  right: max(16px, env(safe-area-inset-right, 0px));
  bottom: max(20px, env(safe-area-inset-bottom, 0px));
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  pointer-events: none;
}

.sch-scroll-fabs:not([hidden]) { pointer-events: auto; }

.sch-scroll-fab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--sch-border);
  background: #fff;
  font-size: .78rem;
  font-weight: 700;
  font-family: inherit;
  color: var(--sch-text);
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.12);
}

/* ── Date / round strips ──────────────────────────────────────────── */
.sch-strip-tools {
  margin-top: 12px;
  width: 100%;
  padding: 0 12px;
}

.sch-sort-btn {
  padding: 5px 10px;
  border-radius: 999px;
  border: none;
  background: transparent;
  font-size: .72rem;
  font-weight: 600;
  color: var(--sch-muted);
  cursor: pointer;
  font-family: inherit;
  transition: background .1s, color .1s;
}

.sch-sort-btn:hover {
  color: var(--sch-text);
}

.sch-sort-btn.is-active {
  background: var(--sch-accent);
  color: #fff;
}

.sch-strip-wrap-label {
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--sch-muted);
  margin: 0;
  flex: 0 0 auto;
  min-width: 2.25rem;
}

.sch-round-strip-wrap,
.sch-date-strip-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0 0 3px;
}

.sch-date-strip-inner {
  display: flex;
  align-items: center;
  gap: 3px;
  flex: 1;
  min-width: 0;
  min-height: 28px;
}

.sch-date-nav {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  background: transparent;
  color: var(--sch-muted);
  cursor: pointer;
  transition: border-color .12s, color .12s, background .12s;
}

.sch-date-nav:hover:not(:disabled) {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.16);
  color: var(--sch-text);
}

.sch-date-nav:disabled {
  opacity: .35;
  cursor: default;
}

.sch-strip-all-pinned {
  flex-shrink: 0;
  height: 24px;
  padding: 0 7px;
  margin-right: 2px;
  border: none;
  border-radius: 999px;
  background: transparent;
  font-size: .6875rem;
  font-weight: 600;
  color: var(--sch-text);
  cursor: pointer;
  font-family: inherit;
}

.sch-strip-all-pinned:hover { background: rgba(0, 0, 0, 0.05); }
.sch-strip-all-pinned.is-active {
  background: var(--sch-accent);
  color: #fff;
}

.sch-date-strip,
.sch-round-strip {
  flex: 1;
  min-width: 0;
  display: flex;
  gap: 4px;
  overflow: hidden;
}

.sch-date-strip {
  justify-content: space-between;
}

.sch-round-strip {
  justify-content: flex-start;
  align-items: stretch;
}

.sch-date-pill,
.sch-round-pill {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  min-width: 0;
  padding: 1px 2px;
  border: none;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  color: var(--sch-muted);
  transition: background .12s;
}

.sch-date-pill:hover,
.sch-round-pill:hover { background: rgba(0, 0, 0, 0.05); }

.sch-round-pill {
  flex: 1 1 0;
  overflow: hidden;
}

.sch-round-pill-label,
.sch-round-pill-num,
.sch-round-pill-solo {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sch-round-pill--named {
  justify-content: center;
  padding-inline: 4px;
}

.sch-round-pill-solo {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.15;
  text-transform: uppercase;
  text-align: center;
}

.sch-date-pill.is-today { color: var(--sch-upcoming); }

.sch-date-pill.is-active,
.sch-round-pill.is-active {
  background: var(--sch-accent);
  color: #fff;
  padding: 2px 5px;
  border-radius: 999px;
}

.sch-date-pill.is-today.is-active { background: var(--sch-upcoming); }

.sch-date-pill-day,
.sch-round-pill-label {
  font-size: .5rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1;
}

.sch-date-pill-num,
.sch-round-pill-num {
  font-size: .75rem;
  font-weight: 800;
  line-height: 1;
}

.sch-date-pill-month {
  font-size: .5rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1;
}

.sch-pill-num-line {
  position: relative;
  display: inline-block;
  line-height: 1;
}

.sch-pill-num-line .sch-pill-count {
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 1px;
  font-size: .55rem;
  font-weight: 600;
  opacity: 0.72;
}

.sch-skel-strip-row {
  height: 36px;
  margin-top: 14px;
  border-radius: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: transparent;
}

@media (max-width: 640px) {
  .sch-date-strip-inner { gap: 4px; }
  .sch-date-pill,
  .sch-round-pill { padding: 5px 2px; }
  .sch-date-pill-num,
  .sch-round-pill-num { font-size: .85rem; }
  .sch-round-pill--named { padding-inline: 6px; }
  .sch-round-pill-solo { font-size: .52rem; }
  .sch-round-pill.is-active { padding: 4px 6px; }
}

@media (max-width: 1024px) {
  .sch-pick-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 901px) {
  .sch-page-header {
    flex-wrap: nowrap;
  }

  .sch-header-actions {
    width: auto;
    margin-left: auto;
    flex-wrap: nowrap;
  }

  .sch-filter-mobile-toggle {
    display: none !important;
  }

  .sch-filter-panel {
    display: flex !important;
    flex-wrap: nowrap;
  }

  .sch-card-meta {
    grid-template-columns: 1fr auto 1fr;
  }

  .sch-card-meta-time {
    display: none !important;
  }

  .sch-card-meta-time::before {
    content: none !important;
  }

  .sch-card-meta-bc {
    grid-column: auto;
    order: unset;
  }

  .sch-card-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(7.5rem, 10rem) minmax(0, 1fr);
    flex-direction: unset;
  }

  .sch-card-team--home,
  .sch-card-team--away {
    order: unset;
    width: 100%;
  }

  .sch-card-team--home .sch-card-team-row {
    padding: 0;
  }

  .sch-card-team--away .sch-card-team-row {
    padding: 0;
  }

  .sch-card-name {
    flex: unset;
  }

  .sch-card-team-stat,
  .sch-card-team-stat--pregame {
    display: none !important;
  }

  .sch-card-scores {
    display: flex !important;
  }

  .sch-card-center {
    order: unset;
    border-top: none;
    margin-top: 0;
    padding-top: 0;
  }

  .sch-card-center .sch-card-time {
    display: block;
  }
}

@media (max-width: 900px) and (min-width: 641px) {
  .sch-league-logo {
    width: 56px;
  }

  .sch-title {
    font-size: 1.35rem;
  }

  .sch-action-btn {
    height: var(--sch-toolbar-pill-h);
    min-height: var(--sch-toolbar-pill-h);
    padding: 0 8px;
    font-size: .75rem;
  }

  .sch-filter-panel {
    flex-wrap: nowrap;
    gap: 8px 12px;
  }

  .sch-filter-item {
    flex: 1 1 0;
    min-width: 0;
  }

  .sch-filter-item--venue {
    flex: 2 1 0;
    max-width: none;
  }

  .sch-filter-item--team {
    flex: 1.35 1 0;
    max-width: none;
  }

  .sch-filter-item--season {
    flex: 0 1 5.5rem;
    max-width: 6.5rem;
  }

  .sch-filter-item--group {
    flex: 0 0 5.75rem;
    min-width: 5.75rem;
    max-width: 5.75rem;
    margin-left: 24px;
  }

  .sch-filter-item-label {
    font-size: .58rem;
  }

  .sch-filter-bar select,
  .sch-filter-custom-trigger {
    font-size: .88rem;
  }

  .sch-card-body {
    grid-template-columns: minmax(0, 1fr) minmax(7rem, 9.5rem) minmax(0, 1fr);
    gap: 16px;
    padding: 8px 10px;
  }

  .sch-card-score,
  .sch-card-scores-sep,
  .sch-card-time {
    font-size: clamp(1.75rem, 3.6vw, 2.25rem);
  }

  .sch-card-name {
    font-size: clamp(1rem, 2vw, var(--sch-fs-team-name));
  }

  .sch-card-team--away .sch-card-team-row {
    flex-direction: row;
    justify-content: flex-end;
  }

  .sch-card-team-stat,
  .sch-card-team-stat--pregame {
    display: none !important;
  }

  .sch-card-scores {
    display: flex !important;
  }

  .sch-card-center {
    border-top: none;
    padding-top: 0;
  }

  .sch-card-center .sch-card-time {
    display: block;
  }

  .sch-card-meta-time {
    display: none !important;
  }

  .sch-card-meta-time::before {
    content: none !important;
  }
}

@media (max-width: 640px) {
  .sch-page {
    padding: 24px 16px 56px;
    --sch-team-logo: 42px;
    --sch-bc-h: 20px;
  }

  .sch-page-header {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 16px;
    padding-top: 0;
  }

  .sch-league-logo {
    width: 40px;
  }

  .sch-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    letter-spacing: 0;
    line-height: 1.15;
  }

  .sch-header-actions {
    width: 100%;
    margin-left: 0;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px;
  }

  .sch-header-actions .sch-action-btn {
    flex: 1 1 auto;
    justify-content: center;
    height: var(--sch-toolbar-pill-h);
    min-height: var(--sch-toolbar-pill-h);
    padding: 0 8px;
    font-size: .75rem;
  }

  .sch-header-actions .sch-action-btn svg {
    width: 12px;
    height: 12px;
  }

  .sch-sticky-controls {
    padding: 8px 2px 8px;
    margin-bottom: 8px;
  }

  .sch-strip-tools {
    margin-top: 10px;
  }

  .sch-pick-grid { grid-template-columns: 1fr; }

  .sch-pick-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .sch-filter-bar {
    display: block;
    position: relative;
  }

  .sch-filter-mobile-top {
    display: flex;
    gap: 8px;
    align-items: stretch;
  }

  .sch-filter-mobile-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
    width: auto;
    padding: 10px 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background: transparent;
    font: inherit;
    font-size: .88rem;
    cursor: pointer;
    text-align: left;
  }

  .sch-filter-toggle-label {
    flex-shrink: 0;
    font-weight: 600;
  }

  .sch-filter-toggle-summary {
    display: none;
  }

  .sch-filter-bar.is-expanded .sch-filter-toggle-summary {
    display: none;
  }

  .sch-filter-toggle-chevron {
    flex-shrink: 0;
    margin-left: auto;
    color: var(--sch-muted);
    transition: transform .15s ease;
  }

  .sch-filter-bar.is-expanded .sch-filter-toggle-chevron {
    transform: rotate(180deg);
  }

  .sch-filter-bar.has-active-filters .sch-filter-toggle-label {
    color: var(--sch-upcoming);
  }

  .sch-filter-bar-icon { display: flex; color: var(--sch-muted); }

  .sch-filter-item--group {
    flex: 0 0 auto;
    width: auto;
    min-width: 7.5rem;
    max-width: 42%;
    padding: 0;
    border-bottom: none;
    justify-content: center;
  }

  .sch-filter-item--group .sch-filter-item-label {
    display: none;
  }

  .sch-filter-item--group .sch-filter-control {
    height: 100%;
  }

  .sch-filter-item--group select {
    height: 100%;
    min-height: 42px;
    padding: 10px 28px 10px 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background-color: transparent;
    font-size: .88rem;
    font-weight: 500;
  }

  .sch-filter-panel { display: none; }

  .sch-filter-bar.is-expanded .sch-filter-panel {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
    gap: 10px 14px;
  }

  .sch-filter-bar.is-expanded .sch-filter-item,
  .sch-filter-bar.is-expanded .sch-filter-item--season {
    flex: 1 1 calc(50% - 8px);
    max-width: none;
    min-width: calc(50% - 8px);
  }

  .sch-filter-reset {
    margin: 10px 0 0;
    width: 100%;
  }

  .sch-day-head {
    margin: 12px 0 10px;
    gap: 6px;
  }

  .sch-day-heading {
    font-size: var(--sch-fs-md);
  }

  .sch-day-badge {
    padding: 3px 8px;
    font-size: var(--sch-fs-2xs);
  }

  .sch-day-list {
    gap: 6px;
    padding-top: 4px;
  }

  .sch-card-meta {
    grid-template-columns: 1fr auto 1fr;
    padding: 8px 12px;
    font-size: var(--sch-fs-2xs);
    gap: 6px;
  }

  .sch-card-meta-date-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .sch-card-meta-time {
    display: none !important;
  }

  .sch-card-meta-time::before {
    content: none !important;
  }

  .sch-card-meta-bc {
    grid-column: auto;
    order: unset;
    justify-self: center;
    gap: 4px;
    padding-top: 0;
  }

  .sch-card-meta-bc img,
  .sch-bc img {
    height: var(--sch-bc-h);
    width: auto;
    max-width: 56px;
  }

  .sch-card-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(5.25rem, 6.75rem) minmax(0, 1fr);
    gap: 10px;
    padding: 10px 12px;
    align-items: center;
  }

  .sch-card-team-row {
    min-height: 56px;
    gap: 8px;
  }

  .sch-card-name {
    font-size: clamp(.75rem, 3vw, .875rem);
    max-width: min(118px, 100%);
    flex: unset;
    white-space: nowrap;
  }

  .sch-card-team-copy {
    max-width: min(118px, 100%);
    gap: 5px;
  }

  .sch-card-record,
  .sch-card-form--text {
    font-size: var(--sch-fs-2xs);
  }

  .sch-card-team-stat,
  .sch-card-team-stat--pregame {
    display: none !important;
  }

  .sch-card-scores {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px 6px;
  }

  .sch-card-scores .sch-card-score,
  .sch-card-scores .sch-card-scores-sep {
    display: inline;
  }

  .sch-card-score,
  .sch-card-scores-sep,
  .sch-card-time {
    font-size: clamp(1.125rem, 5vw, 1.625rem);
  }

  .sch-card-scores .sch-card-status {
    min-height: 18px;
    padding: 2px 6px;
    font-size: .5625rem;
  }

  .sch-card-center {
    order: unset;
    border-top: none;
    margin-top: 0;
    padding-top: 0;
    gap: 4px;
  }

  .sch-card-center .sch-card-time {
    display: block;
  }

  .sch-card-venue {
    font-size: var(--sch-fs-2xs);
    max-width: 100%;
    line-height: 1.25;
  }

  .sch-card-sponsor img {
    width: 40px;
  }

  .sch-card-action {
    padding: 10px 8px;
    font-size: var(--sch-fs-team-meta);
    gap: 4px;
  }

  .sch-card-action svg {
    width: 12px;
    height: 12px;
  }

  .sch-skel-toolbar { grid-template-columns: 1fr 1fr; }
}
