/* =======================================================================
 * Single Game CPT — UHND.com (goldendome)
 *
 * Reference comp: references/game-cpt/UHND Game Recap - Header Treatments
 *                 - standalone.html ("band" treatment — matchup-only navy).
 * Parent pattern: assets/css/style.css §video-band block (sibling
 * implementations: single-video.php / .video-band wraps each content
 * region in <div class="page"> rather than dropping .page on <main>).
 *
 * Loaded on is_singular('game_entry') via goldendome_enqueue_game_css()
 * in functions.php at priority 90. Depends on goldendome-tokens and
 * goldendome-cpt-rough; the rough sheet still owns .matchup-row /
 * .team / .score-col / .scoreline / .status-pill / .game-meta-strip /
 * .cpt-tabs / .cpt-layout — this file only adds the navy-band chrome
 * around those primitives and the white-ink overrides on top.
 *
 * Layout shape (completed-game path):
 *   <main id="primary">
 *     <article class="cpt-article">
 *       <div class="page"> breadcrumbs (light bg, default style) </div>
 *       <section class="game-band">                ← full-width navy band
 *         <div class="page">                       ← page-max inside band
 *           <header class="matchup-header">…</header>
 *         </div>
 *       </section>
 *       <div class="game-tabs-wrap">               ← light bg, hairline below
 *         <div class="page">
 *           <nav class="cpt-tabs">…</nav>          ← _shared/tab-strip.php
 *         </div>
 *       </div>
 *       <div class="page">
 *         <div class="cpt-layout cpt-layout--rail …">…</div>
 *       </div>
 *     </article>
 *   </main>
 * ===================================================================== */

/* ===== Navy band ===================================================== */

.game-band {
	background: var(--bg-video-band);
	color: var(--video-band-ink);
	padding: 28px 0 30px;
}

/* ===== Matchup-header ink flips ====================================== *
 * The base typography + grid for .matchup-row / .team / .score-col /
 * .scoreline / .status-pill / .game-meta-strip stays in cpt-rough.css —
 * we only override the colors here so the same primitive reads on navy.
 * Selectors are scoped under .game-band so the Opponent-CPT series
 * header (.matchup-header--series) and any future light-background uses
 * of the same vocabulary are untouched. */

.game-band .matchup-header {
	/* Inside the band the header doesn't need its own vertical padding —
	 * the band owns top/bottom rhythm. */
	padding: 0;
}

.game-band .matchup-row .team-name {
	color: var(--video-band-ink);
}
.game-band .matchup-header--final .team:not(.team--winner) .team-name {
	color: var(--video-band-ink-3);
}

.game-band .matchup-row .team-record {
	color: var(--video-band-ink-3);
}

.game-band .matchup-row .rank-line {
	color: var(--video-band-ink-2);
}
.game-band .matchup-row .rank-line .rank-src {
	color: var(--video-band-ink-4);
}

.game-band .matchup-row .score {
	color: var(--video-band-ink);
}
.game-band .matchup-row .scoreline .score--loser {
	color: var(--video-band-ink-3);
}
.game-band .matchup-row .scoreline .dash {
	color: var(--video-band-ink-4);
}

/* Status pill — on navy, the default --pill-final-bg (= --bg-muted, a
 * light grey) reads muddy against the band. Two prior treatments were
 * tried (translucent gold per the comp; solid gold) — both read either
 * too low-contrast or too prominent. Final treatment 2026-05-19:
 * color the "Final" pill by ND's outcome — green for a win, red for a
 * loss, using the same --nd-green / --danger tokens that .wl-tag--win
 * and .wl-tag--loss use in the Series Meetings row. Non-ND games and
 * ties fall through to a neutral on-dark chip. Pill text stays "Final"
 * — the color carries the W/L semantic. */
.game-band .status-pill--final {
	/* Neutral fallback — non-ND games or ties */
	background-color: color-mix(in srgb, var(--video-band-ink) 14%, transparent);
	color: var(--video-band-ink);
	border: 1px solid var(--video-band-line-strong);
}
.game-band .status-pill--final.status-pill--win {
	background-color: var(--nd-green);
	color: #fff;
	border: none;
}
.game-band .status-pill--final.status-pill--loss {
	background-color: var(--danger);
	color: #fff;
	border: none;
}
.game-band .status-pill--scheduled {
	background-color: transparent;
	color: var(--video-band-ink);
	border: 1px solid var(--video-band-line-strong);
}

/* ===== Upcoming-game "vs" lockup =================================== *
 * For unplayed games the score column holds no scoreline, leaving the
 * 3-col matchup-row centre empty and the two teams stranded at the band
 * edges (responsive audit P1-1, Frank 2026-06-05). A large "vs" fills
 * the centre so the band reads as a matchup; the Upcoming pill sits
 * beneath it. Kickoff / venue stay in the .game-meta-strip below.
 * The score-col flex column already centres + stacks these, so the
 * markup is just `.vs-lockup` above `.status-pill--scheduled`. */
.game-band .score-col--preview {
	gap: 12px;
}
.game-band .score-col--preview .vs-lockup {
	font-family: var(--font-serif);
	font-style: italic;
	font-size: clamp(34px, 5vw, 56px);
	font-weight: 600;
	line-height: 1;
	letter-spacing: -0.02em;
	color: var(--video-band-ink-2);
}
/* Upcoming games size the team logos up a notch — without a scoreline to
 * anchor the centre, the logos carry the band's visual weight. */
.game-band .matchup-header--preview .matchup-row .team-logo {
	width: 92px;
	height: 92px;
}
.game-band .matchup-header--preview .matchup-row .team-mark {
	width: 92px;
	height: 92px;
	font-size: 24px;
}

/* Game meta strip — date / venue / network row under the matchup. Lives
 * inside the band per Frank's 2026-05-19 call, so flip the hairline and
 * ink colors to the on-dark ramp. */
.game-band .game-meta-strip {
	color: var(--video-band-ink-2);
	border-top-color: var(--video-band-line);
}
.game-band .game-meta-strip .meta-sep {
	color: var(--video-band-ink-4);
}

/* ===== Tab row wrap (light bg, below the band) ======================= */

.game-tabs-wrap {
	background: var(--bg);
	border-bottom: 1px solid var(--line);
	padding-top: 24px;
}
/* The existing .cpt-tabs rule in cpt-rough.css already owns the tab
 * geometry (gap, active-state navy underline). The wrap above just adds
 * band-edge breathing room above the tabs + the hairline below the row. */

/* ===== Page heading (visible <h1>, light bg, atop content) =========== *
 * The navy band has no single headline by design (it sets the two teams
 * against each other), so the page's one crawlable <h1> lives here, at the
 * top of the content column below the tab strip (template-parts/cpt/game/
 * page-heading.php). Mirrors the utility-header__title register — serif,
 * navy — one notch smaller since it sits under the band rather than leading
 * the page. Added 2026-06-01. */
.game-page-heading {
	font-family: var(--font-serif);
	font-size: clamp(1.5rem, 2.2vw, 2.125rem);
	font-weight: 600;
	letter-spacing: -0.015em;
	line-height: 1.12;
	color: var(--nd-navy);
	margin: 0 0 18px;
	text-wrap: pretty;
}

/* ===== Compare-table full variant (Team Stats + Advanced tabs) ======= *
 * Added 2026-05-21 per "Game CPT design pass". The full team-stats /
 * advanced tables now opt into `.data-table` for canonical thead + body
 * primitives, plus `.compare-table--full` for the alignment scheme
 * Frank specified:
 *   - Left team column   → right-aligned mono number
 *   - STAT (middle) col  → center-aligned sans label
 *   - Right team column  → left-aligned mono number
 *
 * The recap-only `.compare-table` (8-row curated) and `.compare-table--full`
 * (full team-stats / advanced) share the home-val/stat-label/away-val
 * structure; this block adds the canonical-table-compatible alignment
 * rules that mirror cpt-rough.css §"Compare table" L912-920 but apply
 * to the `data-table`-marked tables on the Team Stats / Advanced tabs. */
/* The team-stats + advanced tables ship as
 * `<table class="data-table compare-table compare-table--full">` —
 * `.compare-table` (cpt-rough.css) provides cell decoration
 * (team-h serif heads, home-val/away-val mono numeric, stat-label sans,
 * leader background wash). `.compare-table--full` only needs the
 * delta from the curated 8-row `.compare-table`: warm-tan head band on
 * team-h cells. Phase 3a (2026-05-22) collapsed the redundant cell
 * decoration. */
.compare-table--full thead th.team-h {
	background: var(--bg-header-row);
}

/* ===== Box Score 2-column grid (Box Score tab) ======================= *
 * Added 2026-05-21 per "Game CPT design pass". Box Score splits into
 * a side-by-side grid — Notre Dame Stats column | Opponent Stats column —
 * each carrying its own per-category sub-tables. Mobile stacks to a
 * single column at ≤760px. */
.box-score-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
}
.box-score-col__head {
	font-family: var(--font-serif);
	font-size: 20px;
	font-weight: 700;
	color: var(--nd-navy);
	margin: 0 0 16px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--line);
	letter-spacing: -.005em;
}
.box-score-col__category {
	font-family: var(--font-mono);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: var(--type-micro-tracking);
	text-transform: uppercase;
	color: var(--ink-3);
	margin: 24px 0 8px;
}
.box-score-col__category:first-of-type {
	margin-top: 0;
}
.box-score-col__empty {
	font-family: var(--font-sans);
	font-size: 13px;
	color: var(--ink-3);
}
.box-score-table th[scope="row"] {
	font-weight: 600;
	color: var(--text);
}

/* ===== Recent form ("Last 5 played") ================================
 * Preview + recap module (template-parts/cpt/game/recent-form.php). Two
 * team columns side by side, each a stack of W/L rows. Pills reuse
 * .wl-tag from cpt-rough.css. Added 2026-06-05 with the upcoming-game
 * enrichment (recent-form + series tally from cfbd-sync). */
.cpt-module--recent-form .form-cols {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}
.form-col {
	min-width: 0;
}
/* Single divider between the two tables — no box around each. */
.form-col + .form-col {
	border-left: 1px solid var(--line-soft);
	padding-left: 22px;
}
.form-team {
	display: flex;
	align-items: center;
	gap: 8px;
	padding-bottom: 10px;
	margin-bottom: 6px;
	border-bottom: 1px solid var(--line-soft);
}
.form-team-logo {
	width: 28px;
	height: 28px;
	object-fit: contain;
	flex: 0 0 auto;
}
.form-team-name {
	font-family: var(--font-sans);
	font-size: 15px;
	font-weight: 700;
	color: var(--nd-navy);
	line-height: 1.1;
}
.form-team-record {
	margin-left: auto;
	font-family: var(--font-mono);
	font-size: 13px;
	font-weight: 600;
	color: var(--ink-3);
	font-variant-numeric: tabular-nums;
}
.form-games {
	list-style: none;
	margin: 0;
	padding: 0;
}
.form-game {
	display: grid;
	grid-template-columns: 22px auto 1fr;
	gap: 10px;
	align-items: center;
	padding: 7px 0;
	border-bottom: 1px solid var(--line-soft);
}
.form-game:last-child {
	border-bottom: 0;
}
.form-score {
	font-family: var(--font-mono);
	font-size: 13px;
	font-weight: 600;
	color: var(--text);
	font-variant-numeric: tabular-nums;
}
.form-opp {
	display: flex;
	align-items: center;
	gap: 6px;
	min-width: 0;
	justify-self: end;
}
.form-opp-flag {
	font-family: var(--font-mono);
	font-size: 11px;
	color: var(--ink-4);
	letter-spacing: var(--tracking-mono-tight);
	text-transform: lowercase;
}
.form-opp-logo {
	width: 18px;
	height: 18px;
	object-fit: contain;
	flex: 0 0 auto;
}
.form-opp-name {
	font-family: var(--font-sans);
	font-size: 13px;
	font-weight: 600;
	color: var(--ink-2);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.form-empty {
	font-family: var(--font-sans);
	font-size: 13px;
	color: var(--ink-3);
	margin: 6px 0 0;
}

/* ===== Series History — rail widget ================================
 * series-tally.php renders in the upcoming-game rail (2026-06-07) under the
 * canonical `.rail-section` / `.rail-section-head` chrome (style.css, gold
 * underline) so it matches matchup-history and the other rail sections. The
 * tally body reuses the shared `.series-tally` / `.tally-*` / `.series-mark`
 * primitives (cpt-rough.css) — this `.rail-series` scope only sizes them
 * down from the old content-column tally to fit the ~300px rail. The
 * rail-section-head's gold underline is the divider, so the tally drops its
 * own bottom rule + bottom margin (rail-gap handles spacing to the next
 * section). */
.rail-series .series-tally {
	gap: 14px;
	padding: 12px 0 2px;
	border-bottom: 0;
	margin-bottom: 0;
}
.rail-series .series-mark { width: 40px; height: 40px; }
.rail-series .tally-record { font-size: 26px; }
.rail-series .tally-frame { letter-spacing: 0.14em; }

/* ===== Stat Comparison (upcoming-game matchup preview) ==============
 * template-parts/cpt/game/matchup-preview.php. Reuses the canonical
 * `.compare-table` register (cpt-rough.css: team-h heads, home-val/
 * away-val mono cells, stat-label centre column, `.leader` wash). This
 * `--matchup` delta adds only what that register doesn't carry: a logo
 * beside each team head, a national-rank sub-line under each value, and
 * a unit caption under each category label. Added 2026-06-07 with the
 * game_matchup_preview_json enrichment. */
.compare-table--matchup .mv-team {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.compare-table--matchup .mv-team-logo {
	width: 26px;
	height: 26px;
	object-fit: contain;
	flex: 0 0 auto;
}
/* Value + rank stack within each numeric cell; the register already sets
 * the mono face, tabular figures, and right/left padding on home/away. */
.compare-table--matchup .home-val,
.compare-table--matchup .away-val {
	line-height: 1.2;
}
.compare-table--matchup .mv-value {
	display: block;
}
.compare-table--matchup .mv-rank {
	display: block;
	margin-top: 2px;
	font-size: 11px;
	font-weight: 600;
	color: var(--ink-4);
}
/* Restore the `.leader` wash inside the preview's `.cpt-layout` shell: the
 * shared `.cpt-layout .compare-table tbody td { background: transparent }`
 * reset (cpt-rough.css) out-specifies the register's own `.leader` rule and
 * would otherwise strip the winning side's highlight. This scoped rule
 * (3 classes) wins it back. */
.cpt-layout .compare-table--matchup .leader {
	background-color: var(--winner-bg);
}
/* On the leading side the cell flips to winner-fg; keep the rank legible
 * against the wash by inheriting that colour at a softer weight. */
.compare-table--matchup .leader .mv-rank {
	color: inherit;
	opacity: .72;
}
/* Category label + unit caption stack in the centre column. */
.compare-table--matchup .mv-cat {
	display: block;
}
.compare-table--matchup .mv-unit {
	display: block;
	margin-top: 2px;
	font-family: var(--font-mono);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: var(--tracking-mono-loose);
	text-transform: uppercase;
	color: var(--ink-4);
}
.cpt-module--matchup .matchup-foot {
	margin: 12px 0 0;
	font-family: var(--font-sans);
	font-size: 12px;
	color: var(--ink-3);
}

/* ===== Mobile (≤760px) ============================================== */

@media (max-width: 760px) {
	.game-band {
		padding: 22px 0 24px;
	}
	.game-tabs-wrap {
		padding-top: 16px;
	}
	.box-score-grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 28px;
	}
	.compare-table--full .home-val { padding-right: 12px; }
	.compare-table--full .away-val { padding-left: 12px; }
	.compare-table--matchup .home-val { padding-right: 12px; }
	.compare-table--matchup .away-val { padding-left: 12px; }
	.compare-table--matchup .mv-team-logo { width: 22px; height: 22px; }

	/* Recent form stacks to a single column on mobile; the divider flips
	 * from a vertical rule between columns to a horizontal one between rows. */
	.cpt-module--recent-form .form-cols {
		grid-template-columns: minmax(0, 1fr);
	}
	.cpt-module--recent-form .form-col + .form-col {
		border-left: 0;
		border-top: 1px solid var(--line-soft);
		padding-left: 0;
		padding-top: 16px;
		margin-top: 10px;
	}
}

/* ===== Tooltip primitive (design-system §14.5) =====
 * Folded in from the former standalone tooltip.css (2026-06-05 Phase 3
 * consolidation) — it only ever loaded on game_entry singles alongside
 * this sheet, so a separate request bought nothing. tooltip.js is still
 * enqueued conditionally.
 * .tooltip-trigger: inline ⓘ button, keyboard-focusable.
 * .tooltip-popover: absolutely-positioned popover created by tooltip.js,
 * appended to <body> so it breaks out of overflow containers. */
.tooltip-trigger {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	padding: 0 0 0 5px;
	cursor: pointer;
	color: var(--ink-4);
	font-size: 12px;
	line-height: 1;
	vertical-align: middle;
	transition: color .12s;
}
.tooltip-trigger:hover,
.tooltip-trigger:focus-visible {
	color: var(--ink-2);
	outline: none;
}
.tooltip-trigger:focus-visible {
	outline: 2px solid var(--nd-navy);
	outline-offset: 2px;
	border-radius: 2px;
}

.tooltip-popover {
	position: absolute;
	z-index: 200;
	max-width: 240px;
	background: var(--nd-navy);
	color: #fff;
	font-family: var(--font-sans);
	font-size: 12px;
	font-weight: 400;
	line-height: 1.45;
	padding: 8px 12px;
	border-radius: var(--radius);
	pointer-events: none;
	box-shadow: 0 2px 8px rgba(12, 35, 64, 0.25);
}
.tooltip-popover[hidden] {
	display: none;
}

/* =====================================================================
   GAME PREVIEW REDESIGN (2026-09-01) — port of the approved sandbox
   `sandbox/UHND Game Preview.html` (CSS authoritative; companion .md).
   Everything scoped under `.gp` (the preview <article> wrapper) so the
   completed-game recap surface is untouched.

   `--opp` / `--opp-ink` are per-game inline custom properties on the
   wrapper (opponent primary + darkened ink; neutral grays fallback).
   Deliberate deviations from the sandbox, logged in decisions.md:
   --radius-card for its deprecated --r-card, --win for --success, the
   real 44px --utility-h via --rail-sticky-top, and no responsive
   --page-pad. The navy-band internal whites and the #112d50 vignette
   hue are sandbox-authoritative values on the band, mirroring the
   masthead precedent — not tokens.
   ===================================================================== */

.gp .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

/* ── Matchup header — navy band, identity only ─────────────────────── */
.gp .matchup { background: var(--nd-navy); background-image: radial-gradient(115% 130% at 50% -10%, #112d50 0%, var(--nd-navy) 58%); color: #fff; border-bottom: 3px solid var(--nd-gold); }
.gp .matchup-inner { max-width: var(--page-max); margin: 0 auto; padding: 0 var(--page-pad); }
.gp .mh-teams { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 40px; padding: 34px 0 30px; }
.gp .mh-team { display: flex; align-items: center; gap: 22px; min-width: 0; }
.gp .mh-team.home { justify-content: flex-end; text-align: right; }
.gp .mh-team .crest { border-radius: 6px; box-shadow: 0 2px 10px rgba(0, 0, 0, .3), 0 0 0 1px rgba(0, 0, 0, .14) inset; }
.gp img.crest { width: 72px; height: 72px; object-fit: contain; flex-shrink: 0; }
.gp .mh-team .meta { min-width: 0; }
.gp .mh-team .rankline { display: flex; align-items: center; gap: 9px; margin-bottom: 7px; }
.gp .mh-team.home .rankline { justify-content: flex-end; }
.gp .mh-team .rk { font-family: var(--font-mono); font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--nd-gold); }
.gp .mh-team .rk.dim { color: rgba(255, 255, 255, .42); }
.gp .mh-team .name { font-family: var(--font-serif); font-size: clamp(1.7rem, 2.7vw, 2.4rem); font-weight: 700; line-height: 1.04; letter-spacing: -.02em; margin: 0; color: #fff; }
.gp .mh-team .sub { font-family: var(--font-mono); font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: rgba(255, 255, 255, .55); margin-top: 9px; display: flex; align-items: center; gap: 9px; font-weight: 600; }
.gp .mh-team.home .sub { justify-content: flex-end; }
.gp .mh-team .sub .rec { color: rgba(255, 255, 255, .9); }
.gp .mh-team .sub .dot { color: rgba(255, 255, 255, .28); }
.gp .mh-vs { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.gp .mh-vs .vs { font-family: var(--font-serif); font-style: italic; font-size: 30px; font-weight: 400; color: rgba(255, 255, 255, .36); letter-spacing: .02em; line-height: 1; }
.gp .mh-vs .status { font-family: var(--font-mono); font-size: 9px; letter-spacing: .18em; text-transform: uppercase; font-weight: 700; color: rgba(255, 255, 255, .7); border: 1px solid rgba(255, 255, 255, .28); padding: 5px 10px; border-radius: 2px; white-space: nowrap; }
.gp .mh-kick { border-top: 1px solid rgba(255, 255, 255, .12); display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px 16px; padding: 18px 0 24px; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .09em; color: rgba(255, 255, 255, .68); font-weight: 500; text-align: center; }
.gp .mh-kick b { color: #fff; font-weight: 700; }
.gp .mh-kick .dot { color: rgba(255, 255, 255, .26); }
.gp .mh-kick .net { color: rgba(255, 255, 255, .92); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: 10.5px; background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .2); padding: 3px 9px; border-radius: 2px; }

/* ── Shared: white card + in-box card head ─────────────────────────── */
.gp .proj-card, .gp .venue-card, .gp .pp-card, .gp .form-card { background: var(--bg-elevated); border: 1px solid var(--line); border-radius: var(--radius-card); box-shadow: var(--shadow-card); overflow: hidden; }
.gp .card-head { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; padding: 14px 20px 13px; border-bottom: 1px solid var(--line-soft); }
.gp .card-head h3 { font-family: var(--font-serif); font-size: 18px; font-weight: 600; letter-spacing: -.005em; color: var(--nd-navy); margin: 0; }
.gp .card-head .note { font-family: var(--font-mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-4); font-weight: 600; white-space: nowrap; }
.gp .sw-nd { background: var(--nd-green); }
.gp .sw-opp { background: var(--opp, #8A8A8A); }

/* ── Projection band ───────────────────────────────────────────────── */
.gp .projection { background: var(--bg-sunk); border-bottom: 1px solid var(--line); }
.gp .proj-grid { display: grid; grid-template-columns: minmax(0, 360px) minmax(0, 1fr); gap: 24px; padding: 32px 0 34px; align-items: stretch; }
.gp .proj-grid--solo { grid-template-columns: minmax(0, 1fr); }
.gp .proj-grid--solo .proj-card[data-module="win-probability"] { max-width: 420px; margin: 0 auto; width: 100%; }
/* Freshness note at the band's foot — post_modified = last cfbd-sync push. */
.gp .proj-updated { font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-4); font-weight: 600; margin: -14px 0 0; padding: 0 0 24px; }
.gp .proj-card { display: flex; flex-direction: column; }
.gp .gauge { display: flex; flex-direction: column; align-items: center; justify-content: center; flex: 1; padding: 14px 20px 16px; }
.gp .gauge svg { width: 100%; max-width: 270px; height: auto; overflow: visible; }
.gp .gauge .g-num { font-family: var(--font-serif); font-size: 64px; font-weight: 700; fill: var(--nd-navy); letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.gp .gauge .g-team { font-family: var(--font-mono); font-size: 10.5px; font-weight: 600; fill: var(--ink-3); letter-spacing: .18em; text-transform: uppercase; }
.gp .gauge-ends { display: flex; justify-content: space-between; width: 100%; max-width: 270px; margin-top: -4px; }
.gp .gauge-end { display: flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 12px; font-weight: 700; color: var(--ink-2); }
.gp .gauge-end .sw { width: 10px; height: 10px; border-radius: 2px; }
.gp .gauge-end.r { flex-direction: row-reverse; }
.gp .gauge-cap { font-family: var(--font-mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-4); font-weight: 600; margin-top: 12px; }
.gp .line-figs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; border-bottom: 1px solid var(--line-soft); }
.gp .line-fig { padding: 16px 20px; border-left: 1px solid var(--line-soft); display: flex; flex-direction: column; gap: 6px; }
.gp .line-fig:first-child { border-left: 0; }
.gp .line-fig .lf-lbl { font-family: var(--font-mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; }
.gp .line-fig .lf-val { font-family: var(--font-serif); font-size: 34px; font-weight: 700; color: var(--nd-navy); letter-spacing: -.015em; line-height: 1; font-variant-numeric: tabular-nums; display: flex; align-items: baseline; gap: 7px; }
.gp .line-fig .lf-val .u { font-family: var(--font-mono); font-size: 13px; font-weight: 500; color: var(--ink-3); letter-spacing: .04em; text-transform: uppercase; }
.gp .line-fig .lf-note { font-family: var(--font-mono); font-size: 10.5px; color: var(--ink-4); letter-spacing: .04em; font-weight: 500; }
.gp .line-fig .lf-note .mv { color: var(--nd-green); font-weight: 700; }
.gp .books { padding: 12px 20px 16px; flex: 1; }
.gp .books table { width: 100%; border-collapse: collapse; font-variant-numeric: tabular-nums; }
.gp .books th { font-family: var(--font-mono); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-4); font-weight: 600; text-align: right; padding: 0 0 8px; }
.gp .books th:first-child { text-align: left; }
.gp .books td { font-family: var(--font-mono); font-size: 12.5px; color: var(--ink-2); text-align: right; padding: 7px 0; border-top: 1px solid var(--line-soft); font-weight: 500; }
.gp .books td:first-child { text-align: left; font-family: var(--font-sans); font-size: 13px; font-weight: 600; color: var(--text); }
.gp .books tbody tr { transition: background .12s ease; }
.gp .books tbody tr:hover { background: oklch(0.975 0.006 82); }
.gp .books td .op { color: var(--ink-4); font-size: 10.5px; }

/* ── Venue & Conditions ────────────────────────────────────────────── */
.gp .venue { padding-block: 40px 0; }
.gp .venue-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 16px; padding: 24px 28px 20px; border-bottom: 1px solid var(--line-soft); }
.gp .venue-head .vh-name { font-family: var(--font-serif); font-size: 26px; font-weight: 600; letter-spacing: -.01em; color: var(--nd-navy); margin: 0; line-height: 1.1; }
.gp .venue-head .vh-loc { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3); margin-top: 8px; font-weight: 600; }
.gp .venue-head .vh-flag { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; color: var(--opp-ink, #5F5F5F); background: color-mix(in srgb, var(--opp, #8A8A8A) 9%, transparent); border: 1px solid color-mix(in srgb, var(--opp, #8A8A8A) 26%, transparent); padding: 5px 10px; border-radius: 2px; }
.gp .venue-groups { display: grid; grid-template-columns: 1fr .82fr 1.28fr; }
.gp .venue-groups--2 { grid-template-columns: 1fr 1fr; }
.gp .venue-groups--1 { grid-template-columns: 1fr; }
.gp .vgroup { padding: 22px 28px 24px; border-left: 1px solid var(--line-soft); }
.gp .vgroup:first-child { border-left: 0; }
.gp .vgroup > h3 { font-family: var(--font-mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; margin: 0 0 18px; display: flex; align-items: center; gap: 8px; }
.gp .vgroup > h3 svg { color: var(--ink-4); }
.gp .vfacts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px 14px; }
.gp .vfact .k { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-4); font-weight: 600; margin-bottom: 7px; }
.gp .vfact .v { font-family: var(--font-serif); font-size: 26px; font-weight: 700; color: var(--nd-navy); letter-spacing: -.015em; font-variant-numeric: tabular-nums; line-height: 1.05; display: flex; align-items: baseline; gap: 5px; flex-wrap: wrap; }
.gp .vfact .v small { font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-3); font-weight: 500; letter-spacing: .04em; text-transform: uppercase; }
.gp .vfact .v.txt { font-size: 19px; letter-spacing: -.01em; }
.gp .vgroup.wx .vfacts { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.gp .vgroup.cast .vfacts { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* ── Two-column body ───────────────────────────────────────────────── */
.gp .body-grid { display: grid; grid-template-columns: minmax(0, 1fr) var(--rail-w); gap: 56px; padding: 40px 0 56px; }
.gp .modules { display: flex; flex-direction: column; gap: 52px; min-width: 0; }
/* Shared `.cpt-module` partials (Latest Coverage, Game Notes) render in the
 * `.gp` shell outside the `.cpt-layout .cpt-content` wrap that normally
 * neutralizes cpt-rough's dashed placeholder chrome — neutralize it here. */
.gp .cpt-module { border: 0; padding: 0; margin-block: 0; }
/* Coverage band — full container width under the matchup header/tab strip
 * (2026-09-02). Homepage hero-region layout (spec §4): overlay hero left,
 * kicker-free horizontal feature cards center; the `--ad` variant adds a
 * 300px third column carrying the shared rail 300×250 unit. Feature-card
 * geometry mirrors homepage.css's ≤1100px variant; the hero share stays
 * slimmer than the homepage's 1.85fr so its 16:9 height sits level with
 * the 2-card stack. */
.gp .cpt-module--coverage { padding: 26px 0 34px; }
.gp .cov-hero-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 20px; align-items: stretch; }
.gp .cov-hero-grid--ad { grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) 300px; }
.gp .cov-hero-grid__ad { display: flex; flex-direction: column; justify-content: flex-start; }
/* Snack sidebar placements are size-flexible (can serve 300×600 — the
 * global `:has(> [id^="snack-"])` rule in style.css relaxes the frame
 * for exactly that), which is fine in the rail's vertical flow but
 * inflates this grid row. Hard-cap the BAND's frame to the 250px window
 * and top-crop anything taller; the rail keeps its grow behavior.
 * Real fix is a size-capped placement from Snack for this slot. */
.gp .cov-hero-grid__ad .ad-frame,
.gp .cov-hero-grid__ad .ad-frame:has(> [id^="snack-"]) { height: 250px; min-height: 250px; overflow: hidden; display: grid; place-items: start center; }
/* Single-related-article state: the middle column carries the hero
 * article's excerpt instead of feature cards — same hairline frame as
 * the features column so the composition holds. */
.gp .cov-hero-grid__excerpt { display: flex; flex-direction: column; gap: 14px; justify-content: center; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); padding: 18px 2px; min-width: 0; }
.gp .cov-hero-grid__excerpt p { font-family: var(--font-serif); font-size: 15.5px; line-height: 1.68; color: var(--ink-2); margin: 0; text-wrap: pretty; }
.gp .cov-hero-grid__excerpt .more { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--nd-navy); text-decoration: none; }
.gp .cov-hero-grid__excerpt .more:hover { color: var(--nd-green-hover); }
/* The overlay's type is sized for the homepage's ~750px hero
 * (--type-card-hero-size clamps on viewport, not container), so in this
 * ~450px card it reads unchanged. Scale the overlay to the card — same
 * move as cards.css's own narrow-viewport override. */
.gp .cov-hero-grid__hero .hero-card-overlay__overlay { padding: 18px 20px; gap: 10px; }
.gp .cov-hero-grid__hero .hero-card-overlay__headline { font-size: 1.5rem; line-height: 1.12; }
.gp .cov-hero-grid__hero .hero-card-overlay__meta { font-size: 12px; }
/* No explicit height on the hero card — forcing height:100% makes the
 * photo's aspect-ratio compute width FROM height and the two columns
 * feed back into each other (degenerate narrow-features layout on
 * desktop, viewport overflow stacked). The homepage hero region ships
 * with the same content-driven height and near-enough bottom alignment. */
.gp .cov-hero-grid__features { display: flex; flex-direction: column; justify-content: space-between; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.gp .cov-hero-grid__features .feature-card { display: grid; grid-template-columns: 128px 1fr; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line-soft); align-items: center; }
.gp .cov-hero-grid__features .feature-card:last-child { border-bottom: 0; }
.gp .cov-hero-grid__features .feature-card__thumb { aspect-ratio: 4 / 3; border-radius: var(--radius-media); }
.gp .cov-hero-grid__features .feature-card__body { gap: 8px; justify-content: center; }
.gp .cov-hero-grid__features .feature-card__title { font-size: 1.0625rem; line-height: 1.22; }
.gp .cov-hero-grid__features .feature-card__deck { display: none; }
.gp .gp-rail { display: flex; flex-direction: column; gap: 26px; min-width: 0; }
@media (min-width: 1025px) {
	.gp .gp-rail .rail-sticky { position: sticky; top: var(--rail-sticky-top); }
}

/* ── Stat Comparison — diverging bars ──────────────────────────────── */
.gp .sc-legend { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 16px; padding: 16px 0 10px; }
.gp .sc-legend .t { display: flex; align-items: center; gap: 9px; font-family: var(--font-sans); font-size: 14px; font-weight: 700; color: var(--nd-navy); letter-spacing: .01em; }
.gp .sc-legend .t.r { justify-content: flex-end; flex-direction: row-reverse; }
.gp .sc-legend .sw { width: 16px; height: 16px; border-radius: 3px; display: grid; place-items: center; font-family: var(--font-sans); font-size: 7.5px; font-weight: 700; color: #fff; font-style: normal; }
.gp .sc-legend .mid { font-family: var(--font-mono); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-4); font-weight: 600; }
.gp .sc-rows { border-top: 1px solid var(--line); }
.gp .sc-row { display: grid; grid-template-columns: 58px minmax(0, 1fr) 176px minmax(0, 1fr) 58px; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line-soft); transition: background .12s ease; }
.gp .sc-row:hover { background: oklch(0.975 0.006 82); }
.gp .sc-num { font-family: var(--font-mono); font-size: 15px; font-weight: 700; color: var(--nd-navy); font-variant-numeric: tabular-nums; line-height: 1.15; }
.gp .sc-num.l { text-align: right; }
.gp .sc-num .rk { display: block; font-size: 9.5px; font-weight: 600; color: var(--ink-4); letter-spacing: .06em; margin-top: 2px; }
.gp .sc-num.dim { color: var(--ink-3); }
.gp .sc-track { display: flex; min-width: 0; }
.gp .sc-track.l { justify-content: flex-end; }
.gp .sc-bar { height: 11px; border-radius: 2px; transition: opacity .12s ease; }
.gp .sc-bar.nd { background: var(--nd-green); border-radius: 2px 0 0 2px; }
.gp .sc-bar.opp { background: var(--opp, #8A8A8A); border-radius: 0 2px 2px 0; }
.gp .sc-bar.fade { opacity: .24; }
.gp .sc-cat { text-align: center; align-self: stretch; padding: 2px 12px; border-left: 1px solid var(--line-soft); border-right: 1px solid var(--line-soft); display: flex; flex-direction: column; justify-content: center; }
.gp .sc-cat .c { font-family: var(--font-sans); font-size: 12.5px; font-weight: 600; color: var(--ink-2); letter-spacing: .01em; line-height: 1.25; }
.gp .sc-cat .u { font-family: var(--font-mono); font-size: 8.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-4); font-weight: 600; margin-top: 3px; }
.gp .sc-foot { font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em; color: var(--ink-4); margin-top: 14px; text-transform: uppercase; font-weight: 600; }

/* ── Program Profile ───────────────────────────────────────────────── */
.gp .pp-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; margin-top: 20px; }
.gp .pp-card .pp-head { display: flex; align-items: center; gap: 11px; padding: 15px 18px; border-bottom: 1px solid var(--line-soft); }
.gp .pp-card.nd .pp-head { background: var(--nd-navy); border-bottom-color: var(--nd-navy); }
.gp .pp-card.opp .pp-head { background: var(--opp, #8A8A8A); border-bottom-color: var(--opp, #8A8A8A); }
.gp .pp-head .crest-s { border-radius: 4px; }
.gp img.crest-s { object-fit: contain; flex-shrink: 0; }
.gp .pp-head .who { min-width: 0; }
.gp .pp-head .who .n { display: block; font-family: var(--font-sans); font-size: 14.5px; font-weight: 700; color: #fff; letter-spacing: .01em; line-height: 1.2; }
.gp .pp-head .who .c { display: block; font-family: var(--font-mono); font-size: 9px; letter-spacing: .15em; text-transform: uppercase; color: rgba(255, 255, 255, .62); font-weight: 600; margin-top: 3px; }
.gp .pp-coach { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding: 14px 18px; border-bottom: 1px solid var(--line-soft); background: var(--bg-sunk); }
.gp .pp-coach .cn { font-family: var(--font-serif); font-size: 17px; font-weight: 600; color: var(--nd-navy); letter-spacing: -.005em; }
.gp .pp-coach .cs { font-family: var(--font-mono); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-4); font-weight: 600; margin-top: 4px; }
.gp .pp-coach .cr { font-family: var(--font-mono); font-size: 14px; font-weight: 700; color: var(--ink-2); font-variant-numeric: tabular-nums; white-space: nowrap; }
.gp .pp-metrics { padding: 4px 18px 16px; }
.gp .pp-metric { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 12px; padding: 13px 0; border-bottom: 1px solid var(--line-soft); }
.gp .pp-metric:last-child { border-bottom: 0; }
.gp .pp-metric .m-k { font-family: var(--font-sans); font-size: 12.5px; font-weight: 600; color: var(--ink-2); }
.gp .pp-metric .m-k span { display: block; font-family: var(--font-mono); font-size: 8.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-4); font-weight: 600; margin-top: 3px; }
.gp .pp-metric .m-v { text-align: right; }
.gp .pp-metric .m-v .val { font-family: var(--font-serif); font-size: 23px; font-weight: 700; color: var(--nd-navy); font-variant-numeric: tabular-nums; line-height: 1.05; letter-spacing: -.015em; }
.gp .pp-metric .m-v .rank { font-family: var(--font-mono); font-size: 9.5px; font-weight: 500; color: var(--ink-4); letter-spacing: .06em; margin-top: 5px; }
.gp .pp-metric .m-v .rank.good { color: var(--nd-green); }
.gp .pp-meter { grid-column: 1 / -1; height: 4px; background: var(--bg-muted); border-radius: 2px; overflow: hidden; margin-top: 11px; }
.gp .pp-meter i { display: block; height: 100%; border-radius: 2px; }
.gp .pp-card.nd .pp-meter i { background: var(--nd-green); }
.gp .pp-card.opp .pp-meter i { background: var(--opp, #8A8A8A); }

/* ── Last Five Games ───────────────────────────────────────────────── */
.gp .form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; margin-top: 20px; }
.gp .form-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 13px 16px; border-bottom: 1px solid var(--line); }
.gp .form-head .fh-l { display: flex; align-items: center; gap: 10px; font-family: var(--font-sans); font-size: 13.5px; font-weight: 700; color: var(--nd-navy); }
.gp .form-head .crest-s { border-radius: 3px; }
.gp .form-head .fh-rec { font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: .1em; color: var(--ink-3); }
.gp .form-row { display: grid; grid-template-columns: 22px 62px 1fr; align-items: center; gap: 12px; padding: 11px 16px; border-bottom: 1px solid var(--line-soft); text-decoration: none; color: inherit; transition: background .12s ease; }
.gp .form-row:last-child { border-bottom: 0; }
.gp a.form-row:hover { background: oklch(0.975 0.006 82); text-decoration: none; }
.gp .form-row .wl { width: 22px; height: 22px; border-radius: 3px; display: grid; place-items: center; font-family: var(--font-sans); font-size: 11px; font-weight: 700; color: #fff; }
.gp .form-row .wl.w { background: var(--win); }
.gp .form-row .wl.l { background: var(--loss); }
.gp .form-row .wl.t { background: var(--ink-4); }
.gp .form-row .sc { font-family: var(--font-mono); font-size: 13.5px; font-weight: 600; color: var(--ink-2); font-variant-numeric: tabular-nums; }
.gp .form-row .opp-n { font-family: var(--font-sans); font-size: 12.5px; font-weight: 600; color: var(--ink-2); display: flex; align-items: center; gap: 7px; justify-content: flex-end; }
.gp .form-row .opp-n .at { font-family: var(--font-mono); font-size: 10px; color: var(--ink-4); font-weight: 600; }

/* ── Series History rail card ──────────────────────────────────────── */
.gp .series { background: var(--bg-elevated); border: 1px solid var(--line); border-top: 3px solid var(--nd-gold); border-radius: var(--radius-card); box-shadow: var(--shadow-card); overflow: hidden; }
.gp .series h2 { font-family: var(--font-serif) !important; font-size: 18px !important; font-weight: 600; text-transform: none; letter-spacing: -.005em; color: var(--nd-navy); margin: 0; padding: 14px 16px 13px; border-bottom: 1px solid var(--line-soft); }
.gp .series-tally { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; padding: 20px 16px; }
.gp .series-tally .crest-s { border-radius: 4px; }
.gp .series-tally .mid { text-align: center; }
.gp .series-tally .mid .lbl { display: block; font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-4); font-weight: 600; }
.gp .series-tally .mid .rec { display: block; font-family: var(--font-serif); font-size: 30px; font-weight: 700; color: var(--nd-navy); letter-spacing: -.015em; margin-top: 4px; font-variant-numeric: tabular-nums; }
.gp .series-bar { display: flex; height: 6px; margin: 0 16px 4px; border-radius: 3px; overflow: hidden; background: var(--bg-muted); }
.gp .series-bar i { display: block; height: 100%; }
.gp .series-bar .w { background: var(--nd-green); }
.gp .series-bar .t { background: var(--ink-4); }
.gp .series-bar .l { background: var(--opp, #8A8A8A); }
.gp .series-key { display: flex; justify-content: space-between; padding: 8px 16px 14px; font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-4); font-weight: 600; }
.gp .series-list { border-top: 1px solid var(--line-soft); }
.gp .series-list .slh { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 12px 16px 10px; }
.gp .series-list .slh .t { font-family: var(--font-mono); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-4); font-weight: 600; }
.gp .series-list .slh a { font-family: var(--font-sans); font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--nd-navy); }
.gp .sg { display: grid; grid-template-columns: 38px 20px 16px 1fr; align-items: center; gap: 8px; padding: 8px 16px; border-top: 1px solid var(--line-soft); text-decoration: none; color: inherit; font-family: var(--font-mono); font-size: 11.5px; font-variant-numeric: tabular-nums; transition: background .12s ease; }
.gp a.sg:hover { background: oklch(0.975 0.006 82); text-decoration: none; }
.gp .sg .yr { color: var(--ink-2); font-weight: 600; }
.gp .sg .at { color: var(--ink-4); font-size: 9.5px; letter-spacing: .06em; text-transform: uppercase; }
.gp .sg .r { font-weight: 700; font-size: 11px; }
.gp .sg .r.w { color: var(--win); }
.gp .sg .r.l { color: var(--loss); }
.gp .sg .r.t { color: var(--ink-4); }
.gp .sg .sc { text-align: right; color: var(--ink-2); font-weight: 500; }

/* ── Disclaimer (scoped restyle of the shared partial) ─────────────── */
.gp .stats-disclaimer { border-top: 1px solid var(--line); padding: 22px 0 46px; font-family: var(--font-serif); font-size: 13.5px; line-height: 1.6; color: var(--ink-3); max-width: 88ch; text-wrap: pretty; }

/* ── Responsive (module rules only — chrome stays the theme's) ─────── */
@media (max-width: 1180px) {
	.gp .body-grid { grid-template-columns: minmax(0, 1fr) 280px; gap: 36px; }
	.gp .proj-grid { gap: 32px; }
	.gp .sc-row { grid-template-columns: 54px minmax(0, 1fr) 146px minmax(0, 1fr) 54px; gap: 8px; }
}
@media (max-width: 1024px) {
	.gp .body-grid { grid-template-columns: minmax(0, 1fr); gap: 44px; }
	.gp .gp-rail { max-width: 520px; }
	.gp .proj-grid { grid-template-columns: minmax(0, 1fr); gap: 24px; }
	.gp .venue-groups, .gp .venue-groups--2 { grid-template-columns: 1fr; }
	.gp .vgroup { border-left: 0; border-top: 1px solid var(--line-soft); }
	.gp .vgroup:first-child { border-top: 0; }
	/* Coverage band: the 300px ad column doesn't fit — drop it to a
	 * centered full-width row below hero + cards. */
	.gp .cov-hero-grid--ad { grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); }
	.gp .cov-hero-grid__ad { grid-column: 1 / -1; align-items: center; }
}
@media (max-width: 760px) {
	.gp .mh-teams { grid-template-columns: 1fr; gap: 0; padding: 22px 0 20px; }
	.gp .mh-team { gap: 14px; }
	.gp .mh-team.home { justify-content: flex-start; text-align: left; }
	.gp .mh-team.home .rankline, .gp .mh-team.home .sub { justify-content: flex-start; }
	.gp .mh-team.away { flex-direction: row-reverse; justify-content: flex-end; }
	.gp .mh-team .team-mark, .gp img.crest { width: 52px; height: 52px; }
	.gp .mh-team .name { font-size: 1.6rem; }
	.gp .mh-vs { flex-direction: row; gap: 12px; padding: 14px 0; justify-content: flex-start; }
	.gp .mh-vs .vs { font-size: 18px; }
	.gp .mh-kick { font-size: 10.5px; gap: 6px 10px; padding: 14px 0 20px; justify-content: flex-start; text-align: left; }
	.gp .line-figs { grid-template-columns: 1fr; gap: 0; }
	.gp .line-fig { padding: 16px 20px; border-left: 0; border-top: 1px solid var(--line-soft); }
	.gp .line-fig:first-child { border-top: 0; }
	.gp .books { overflow-x: auto; padding: 14px 18px 18px; }
	.gp .books table { min-width: 420px; }
	.gp .venue { padding-block: 28px 0; }
	.gp .venue-head { padding: 20px 18px 18px; }
	.gp .venue-head .vh-name { font-size: 22px; }
	.gp .vgroup { padding: 18px; }
	.gp .vfacts, .gp .vgroup.wx .vfacts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.gp .sc-row { grid-template-columns: 46px minmax(0, 1fr) minmax(0, 1fr) 46px; grid-template-areas: "cat cat cat cat" "ln lt rt rn"; gap: 4px 8px; padding: 12px 0; }
	.gp .sc-cat { grid-area: cat; text-align: left; margin-bottom: 2px; border: 0; padding: 0; align-self: auto; display: block; }
	.gp .sc-cat .u { display: inline; margin-left: 8px; }
	.gp .sc-row > .sc-num.l { grid-area: ln; }
	.gp .sc-row > .sc-track.l { grid-area: lt; }
	.gp .sc-row > .sc-track.r { grid-area: rt; }
	.gp .sc-row > .sc-num.r { grid-area: rn; }
	.gp .sc-num { font-size: 13.5px; }
	.gp .pp-grid, .gp .form-grid { grid-template-columns: 1fr; }
}
/* Coverage sampler stacks like the homepage hero region ≤720px: hero on
 * top, feature cards below with the compact 104px thumb, band ad last.
 * The `--ad` rule repeats because its ≤1024 two-column override outranks
 * the base selector here. */
@media (max-width: 760px) {
	.gp .cov-hero-grid, .gp .cov-hero-grid--ad { grid-template-columns: 1fr; gap: 18px; }
	.gp .cov-hero-grid__features .feature-card { grid-template-columns: 104px 1fr; gap: 14px; }
	.gp .cpt-module--coverage { padding: 20px 0 26px; }
	/* Stacked, the 75-word teaser runs long — clamp it; the link carries on. */
	.gp .cov-hero-grid__excerpt p { display: -webkit-box; -webkit-line-clamp: 8; -webkit-box-orient: vertical; overflow: hidden; }
}
