/* =========================================================
   STADIUM DAYLIGHT — Today page (/) styles
   Match-card BEM lives in match_card.css (shared with Fixtures).
   Tokens: tokens.css. Conventions: BEM, mobile-first.
   ========================================================= */

.today-page {
  padding: var(--space-lg) var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.today-page__header {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.today-page__heading {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  font-variation-settings: "SOFT" 100, "opsz" 96;
}

.today-page__matches {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

/* ----- No-matches empty state ------------------------------- */

.no-matches {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

/* Hero card: centered countdown panel anchored visually inside the
   full-width page. Bounded width keeps the eyebrow + countdown reading
   line short; the surrounding page chrome stays full-width. */
.no-matches__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-2xl) var(--space-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
}
.no-matches__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta-deep);
  margin: 0;
}
.no-matches__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 4vw, 24px);
  font-weight: 500;
  color: var(--ink);
  margin: 0;
}
.no-matches__countdown {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: clamp(40px, 9vw, 72px);
  font-weight: 600;
  color: var(--pitch-deep);
  letter-spacing: -0.01em;
}

.no-matches__upcoming {
  width: 100%;
}
.no-matches__upcoming-heading {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  margin: 0 0 var(--space-md) 0;
}
/* Responsive grid hosting the shared `matches/_card` partial — same
   card the Fixtures index and the live /today list use. Auto-fits as
   many ~280px columns as fit (~3-4 on a 1280 viewport, collapsing to
   one on mobile). */
.no-matches__upcoming-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
}
