/* =============================================================
   SENIOR WARRIORS — BIG V (2026 season rebuild)
   Drop-in replacement for assets/css/page-big-v.css
   Self-sufficient: works with or without senior-warriors-shared.css
   ============================================================= */

.bv26 {
	--bv-red:    var(--wba-red, #C1272D);
	--bv-orange: var(--wba-orange, #F7931E);
	--bv-dark:   var(--wba-dark, #1A1A1A);
	--bv-white:  var(--wba-white, #FFFFFF);
	--bv-cream:  var(--wba-cream, #F8F8F6);
	--bv-border: var(--wba-border, #E6E6E2);
	--bv-muted:  var(--wba-muted, #888888);
	background: var(--bv-white);
	color: var(--bv-dark);
}

/* ---------- primitives (sitewide inner-page conventions) ---------- */
.bv-wrap {
	max-width: 1240px;
	margin: 0 auto;
}
.bv-section { padding: 110px var(--gutter-d, 48px); }
.bv-section--cream { background: var(--bv-cream); }
.bv-section--dark  { background: var(--bv-dark); color: rgba(255,255,255,0.88); }

.bv-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--bv-muted);
	margin-bottom: 16px;
}
.bv-eyebrow svg, .bv-eyebrow .wba-icon { width: 15px; height: 15px; }
.bv-eyebrow--light { color: rgba(255,255,255,0.6); }

.bv-h2 {
	font-size: clamp(1.7rem, 4.5vw, 2.6rem);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.015em;
	margin: 0 0 18px;
	text-transform: lowercase;
}
.bv-h2 em { font-weight: 300; font-style: italic; }
.bv-h2--light { color: var(--bv-white); }

.bv-lede {
	max-width: 640px;
	font-size: 0.95rem;
	line-height: 1.75;
	margin: 0 0 34px;
}
.bv-lede--light { color: rgba(255,255,255,0.72); }

.bv-note {
	margin-top: 20px;
	font-size: 0.74rem;
	color: var(--bv-muted);
	font-style: italic;
}

/* Buttons — sitewide pattern (red-led on this page) */
.bv-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 15px 28px;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: lowercase;
	text-decoration: none;
	border-radius: 4px;
	border: 1px solid transparent;
	transition: transform 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
	cursor: pointer;
	font-family: inherit;
}
.bv-btn svg, .bv-btn .wba-icon { width: 14px; height: 14px; }
.bv-btn--primary {
	background: var(--bv-red);
	color: var(--bv-white);
	border-color: var(--bv-red);
	font-weight: 800;
}
.bv-btn--primary:hover {
	background: var(--bv-dark);
	color: var(--bv-white);
	border-color: var(--bv-dark);
	transform: translateY(-2px);
}
.bv-btn--ghost {
	background: transparent;
	color: var(--bv-dark);
	border-color: var(--bv-border);
}
.bv-btn--ghost:hover {
	background: var(--bv-cream);
	border-color: var(--bv-dark);
}

.bv-tag {
	display: inline-block;
	padding: 3px 10px;
	border-radius: 99px;
	font-size: 0.6rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	white-space: nowrap;
}
.bv-tag--home    { background: rgba(193,39,45,0.08); color: var(--bv-red); }
.bv-tag--away    { background: var(--bv-cream); color: var(--bv-muted); border: 1px solid var(--bv-border); }
.bv-tag--played  { background: transparent; color: var(--bv-muted); border: 1px solid var(--bv-border); }
.bv-tag--next    { background: var(--bv-red); color: var(--bv-white); }
.bv-tag--feature { background: var(--bv-orange); color: var(--bv-dark); margin-left: 8px; }
.bv-tag--junior  { background: var(--bv-white); color: var(--bv-muted); border: 1px solid var(--bv-border); margin-left: 6px; }

/* =============================================================
   1. HERO — sitewide inner-page hero pattern (58vh, red glow)
   ============================================================= */
.bv-hero {
	position: relative;
	height: 58vh;
	min-height: 480px;
	background-size: cover;
	background-position: center 30%;
	background-repeat: no-repeat;
	background-color: var(--bv-dark);
	color: var(--bv-white);
	display: flex;
	align-items: center;
	overflow: hidden;
}
.bv-hero__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient( 105deg, rgba(26,26,26,0.92) 0%, rgba(26,26,26,0.72) 50%, rgba(26,26,26,0.40) 100% ),
		radial-gradient( circle at 78% 50%, rgba(193,39,45,0.32) 0%, transparent 55% );
	z-index: 1;
}
.bv-hero__inner {
	position: relative;
	z-index: 2;
	max-width: 1240px;
	margin: 0 auto;
	padding: 34px var(--gutter-d, 48px);
	width: 100%;
}
.bv-hero__brand {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 14px;
}
.bv-hero__warriors {
	height: 54px;
	width: auto;
	object-fit: contain;
}
.bv-hero__comp {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 5px 12px;
	border: 1px solid rgba(255,255,255,0.18);
	border-radius: 999px;
	font-size: 0.56rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: lowercase;
	color: rgba(255,255,255,0.75);
	background: rgba(255,255,255,0.05);
}
.bv-hero__comp img {
	height: 20px;
	width: auto;
	border-radius: 3px;
	object-fit: contain;
	background: var(--bv-white);
	padding: 2px;
}
.bv-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 0.64rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.85);
	padding: 7px 15px;
	border: 1px solid rgba(193,39,45,0.5);
	border-radius: 999px;
	margin-bottom: 18px;
	background: rgba(193,39,45,0.12);
}
.bv-hero__eyebrow svg, .bv-hero__eyebrow .wba-icon { width: 12px; height: 12px; color: var(--bv-red); }
.bv-hero__headline {
	font-size: clamp(2.4rem, 5.5vw, 4.6rem);
	font-weight: 800;
	line-height: 0.95;
	letter-spacing: -0.025em;
	margin: 0 0 14px;
	color: var(--bv-white);
	text-transform: lowercase;
}
.bv-hero__qualifier {
	display: block;
	font-style: italic;
	font-weight: 300;
	color: var(--bv-red);
	letter-spacing: -0.012em;
	margin-top: 4px;
}
.bv-hero__tagline {
	max-width: 560px;
	font-size: clamp(0.92rem, 1.2vw, 1.05rem);
	line-height: 1.5;
	color: rgba(255,255,255,0.85);
	margin: 0 0 24px;
}
.bv-hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.bv-hero .bv-btn--ghost {
	color: var(--bv-white);
	border-color: rgba(255,255,255,0.4);
}
.bv-hero .bv-btn--ghost:hover {
	background: rgba(255,255,255,0.1);
	border-color: var(--bv-white);
}

/* =============================================================
   2. STICKY ANCHOR NAV — sitewide pattern (3px accent top border,
      underline hover, right-aligned CTA pill)
   ============================================================= */
.bv-anchors {
	position: sticky;
	top: 0;
	z-index: 30;
	background: var(--bv-white);
	border-bottom: 1px solid var(--bv-border);
	border-top: 3px solid var(--bv-red);
}
.bv-anchors__inner {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 var(--gutter-d, 48px);
	display: flex;
	gap: 28px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	align-items: center;
}
.bv-anchors__inner::-webkit-scrollbar { display: none; }
.bv-anchors__inner a {
	position: relative;
	padding: 18px 2px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: lowercase;
	color: var(--bv-dark);
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.2s;
}
.bv-anchors__inner a:not(.is-cta)::after {
	content: "";
	position: absolute;
	left: 0; right: 0; bottom: -1px; height: 2px;
	background: var(--bv-red);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.25s;
}
.bv-anchors__inner a:not(.is-cta):hover { color: var(--bv-red); }
.bv-anchors__inner a:not(.is-cta):hover::after { transform: scaleX(1); }
.bv-anchors__inner a.is-cta {
	margin-left: auto;
	padding: 9px 18px;
	background: var(--bv-red);
	color: var(--bv-white);
	border-radius: 4px;
	font-weight: 800;
	transition: background 0.2s, transform 0.2s;
}
.bv-anchors__inner a.is-cta:hover {
	background: var(--bv-dark);
	color: var(--bv-white);
	transform: translateY(-1px);
}

/* =============================================================
   AT A GLANCE — asymmetric 1 hero + 5 supporting
   ============================================================= */
.bv-glance {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 14px;
}
.bv-glance__hero {
	grid-column: span 6;
	grid-row: span 2;
	background: var(--bv-dark);
	background-image: radial-gradient(circle at 80% 20%, rgba(193,39,45,0.4), transparent 60%);
	border-radius: 14px;
	padding: 36px 32px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 10px;
}
.bv-glance__hero-label {
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.55);
}
.bv-glance__hero-value {
	font-size: clamp(2.2rem, 5vw, 3.4rem);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.02em;
	color: var(--bv-white);
}
.bv-glance__hero-sub {
	font-size: 0.82rem;
	line-height: 1.6;
	color: rgba(255,255,255,0.72);
}
.bv-glance__hero-tag {
	display: inline-block;
	margin-left: 8px;
	padding: 2px 10px;
	border-radius: 99px;
	background: var(--bv-orange);
	color: var(--bv-dark);
	font-size: 0.58rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	vertical-align: middle;
}
.bv-glance__cell {
	grid-column: span 3;
	background: var(--bv-white);
	border: 1px solid var(--bv-border);
	border-radius: 13px;
	padding: 22px 20px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	transition: transform 0.2s, box-shadow 0.2s;
}
.bv-glance__cell:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 26px rgba(26,26,26,0.07);
}
.bv-glance__value {
	font-size: 1.5rem;
	font-weight: 800;
	letter-spacing: -0.015em;
	line-height: 1.05;
	overflow-wrap: anywhere;
}
.bv-glance__label {
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	color: var(--bv-muted);
	text-transform: lowercase;
}

/* =============================================================
   PATHWAY — 4 steps, peak highlighted
   ============================================================= */
.bv-path {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 26px;
}
.bv-path__step { position: relative; display: flex; }
.bv-path__card {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 8px;
	background: var(--bv-white);
	border: 1px solid var(--bv-border);
	border-radius: 13px;
	padding: 26px 22px;
	text-decoration: none;
	color: var(--bv-dark);
	transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
a.bv-path__card:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 26px rgba(26,26,26,0.08);
	border-color: var(--bv-red);
}
.bv-path__num {
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	color: var(--bv-muted);
}
.bv-path__label {
	font-size: 0.95rem;
	font-weight: 800;
	letter-spacing: -0.01em;
	text-transform: lowercase;
}
.bv-path__sub {
	font-size: 0.72rem;
	line-height: 1.5;
	color: var(--bv-muted);
	text-transform: lowercase;
}
.bv-path__step--peak .bv-path__card {
	background: var(--bv-red);
	border-color: var(--bv-red);
	color: var(--bv-white);
}
.bv-path__step--peak .bv-path__num,
.bv-path__step--peak .bv-path__sub { color: rgba(255,255,255,0.72); }
.bv-path__arrow {
	position: absolute;
	right: -23px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--bv-muted);
	display: flex;
	z-index: 1;
}

/* =============================================================
   STORY — copy + pull-quote split
   ============================================================= */
.bv-story {
	display: grid;
	grid-template-columns: 7fr 5fr;
	gap: 56px;
	align-items: center;
}
.bv-story__copy p {
	font-size: 0.92rem;
	line-height: 1.8;
	margin: 0 0 18px;
}
.bv-story__quote {
	margin: 0;
	padding: 34px 32px;
	border-left: 3px solid var(--bv-red);
	background: var(--bv-cream);
	border-radius: 0 14px 14px 0;
}
.bv-story__quote p {
	margin: 0;
	font-size: 1.02rem;
	font-weight: 300;
	font-style: italic;
	line-height: 1.75;
}

/* =============================================================
   FIXTURE TABLE — CSS grid table, season-aware states
   ============================================================= */
.bv-fixtable {
	border: 1px solid var(--bv-border);
	border-radius: 14px;
	overflow: hidden;
	background: var(--bv-white);
}
.bv-fixtable__head,
.bv-fixtable__row {
	display: grid;
	grid-template-columns: 110px 90px 1fr 240px 150px;
	gap: 14px;
	align-items: center;
	padding: 13px 22px;
}
.bv-fixtable__head {
	background: var(--bv-cream);
	border-bottom: 1px solid var(--bv-border);
	font-size: 0.6rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--bv-muted);
}
.bv-fixtable__row {
	border-bottom: 1px solid var(--bv-border);
	font-size: 0.8rem;
	transition: background 0.15s;
}
.bv-fixtable__row:last-child { border-bottom: 0; }
.bv-fixtable__row:hover { background: var(--bv-cream); }
.bv-fixtable__date { font-weight: 700; white-space: nowrap; }
.bv-fixtable__match { font-weight: 600; }
.bv-fixtable__venue { color: var(--bv-muted); font-size: 0.74rem; }
.bv-fixtable__right { text-align: right; }

.bv-fixtable__row.is-played { color: var(--bv-muted); }
.bv-fixtable__row.is-played .bv-fixtable__date,
.bv-fixtable__row.is-played .bv-fixtable__match { font-weight: 500; }
.bv-fixtable__row.is-next {
	background: rgba(193,39,45,0.05);
	box-shadow: inset 3px 0 0 var(--bv-red);
}

/* =============================================================
   SQUAD — dark section, jersey numeral watermark cards
   ============================================================= */
.bv-squad {
	list-style: none;
	margin: 0 0 46px;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
	gap: 14px;
}
.bv-player {
	position: relative;
	overflow: hidden;
	background: #212121;
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 13px;
	padding: 22px 20px 20px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-height: 128px;
	transition: transform 0.2s, border-color 0.2s;
}
.bv-player:hover {
	transform: translateY(-3px);
	border-color: rgba(193,39,45,0.55);
}
.bv-player__num {
	position: absolute;
	right: 8px;
	top: -14px;
	font-size: 76px;
	font-weight: 800;
	line-height: 1;
	color: rgba(255,255,255,0.05);
	pointer-events: none;
}
.bv-player__jersey {
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--bv-red);
}
.bv-player__name {
	font-size: 0.94rem;
	font-weight: 800;
	color: var(--bv-white);
	letter-spacing: -0.01em;
}
.bv-player__c {
	display: inline-block;
	margin-left: 8px;
	padding: 2px 9px;
	border-radius: 99px;
	background: var(--bv-red);
	color: var(--bv-white);
	font-size: 0.56rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	vertical-align: middle;
}
.bv-player--captain { border-color: rgba(193,39,45,0.55); }
.bv-player__sponsor {
	margin-top: auto;
	font-size: 0.66rem;
	color: rgba(255,255,255,0.45);
	letter-spacing: 0.03em;
}
.bv-player__sponsor em { color: rgba(255,255,255,0.7); font-style: italic; }
.bv-player--staff { background: transparent; border-style: dashed; }
.bv-player--staff .bv-player__jersey { color: rgba(255,255,255,0.5); }

/* anniversary banner */
.bv-anniv {
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: 14px;
	padding: 34px 32px;
	background: radial-gradient(circle at 12% 0%, rgba(247,147,30,0.12), transparent 55%);
	max-width: 760px;
}
.bv-anniv__pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.6rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--bv-orange);
	margin-bottom: 14px;
}
.bv-anniv__pill svg, .bv-anniv__pill .wba-icon { width: 15px; height: 15px; }
.bv-anniv__heading {
	font-size: 1.25rem;
	font-weight: 800;
	color: var(--bv-white);
	margin: 0 0 10px;
}
.bv-anniv p { margin: 0; font-size: 0.85rem; line-height: 1.7; color: rgba(255,255,255,0.7); }

/* =============================================================
   TICKETS & MEMBERSHIP
   ============================================================= */
.bv-entry {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 26px;
	flex-wrap: wrap;
	border: 1px solid var(--bv-border);
	border-radius: 14px;
	padding: 26px 30px;
	margin-bottom: 38px;
	background: var(--bv-cream);
}
.bv-entry__heading { margin: 0 0 6px; font-size: 1.05rem; font-weight: 800; }
.bv-entry p { margin: 0; font-size: 0.82rem; color: var(--bv-muted); }

.bv-tiers {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.bv-tier {
	display: flex;
	flex-direction: column;
	gap: 10px;
	border: 1px solid var(--bv-border);
	border-radius: 14px;
	padding: 32px 28px;
	background: var(--bv-white);
	transition: transform 0.2s, box-shadow 0.2s;
}
.bv-tier:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 30px rgba(26,26,26,0.07);
}
.bv-tier--featured { border-top: 3px solid var(--bv-red); }
.bv-tier__price {
	font-size: 2.6rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1;
}
.bv-tier__name {
	margin: 0;
	font-size: 1rem;
	font-weight: 800;
	text-transform: lowercase;
}
.bv-tier__sub { margin: 0; font-size: 0.76rem; color: var(--bv-muted); font-style: italic; }
.bv-tier__perks {
	list-style: none;
	margin: 8px 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.bv-tier__perks li {
	position: relative;
	padding-left: 20px;
	font-size: 0.78rem;
	line-height: 1.55;
}
.bv-tier__perks li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--bv-red);
	opacity: 0.85;
}
.bv-tier__note {
	margin-top: auto;
	padding-top: 14px;
	font-size: 0.68rem;
	color: var(--bv-muted);
	font-style: italic;
}
.bv-tier .bv-btn { justify-content: center; }

/* =============================================================
   MEMBERS THANK-YOU
   ============================================================= */
.bv-memberlist {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.bv-memberlist li {
	display: inline-flex;
	align-items: center;
	background: var(--bv-white);
	border: 1px solid var(--bv-border);
	border-radius: 99px;
	padding: 8px 18px;
	font-size: 0.76rem;
	font-weight: 600;
	letter-spacing: 0.02em;
}

/* =============================================================
   GAME DAY — 4 icon cards
   ============================================================= */
.bv-gameday {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}
.bv-gd {
	border: 1px solid var(--bv-border);
	border-radius: 13px;
	padding: 28px 24px;
	transition: transform 0.2s, box-shadow 0.2s;
}
.bv-gd:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 26px rgba(26,26,26,0.07);
}
.bv-gd__icon {
	display: inline-flex;
	width: 42px;
	height: 42px;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background: var(--bv-cream);
	color: var(--bv-red);
	margin-bottom: 16px;
}
.bv-gd__icon svg, .bv-gd__icon .wba-icon { width: 20px; height: 20px; }
.bv-gd__title {
	margin: 0 0 8px;
	font-size: 0.9rem;
	font-weight: 800;
	letter-spacing: -0.01em;
}
.bv-gd p { margin: 0; font-size: 0.78rem; line-height: 1.65; color: var(--bv-muted); }

/* =============================================================
   PARTNERS
   ============================================================= */
.bv-partners {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.bv-partner {
	display: flex;
	flex-direction: column;
	gap: 12px;
	background: var(--bv-white);
	border: 1px solid var(--bv-border);
	border-radius: 14px;
	padding: 30px 28px;
	transition: transform 0.2s, box-shadow 0.2s;
}
.bv-partner:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 30px rgba(26,26,26,0.07);
}
.bv-partner__name { margin: 0; font-size: 1rem; font-weight: 800; letter-spacing: -0.01em; }
.bv-partner__meta {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 0.74rem;
	color: var(--bv-muted);
}
.bv-partner__meta li { display: flex; align-items: center; gap: 8px; }
.bv-partner__meta svg, .bv-partner__meta .wba-icon { width: 14px; height: 14px; flex-shrink: 0; }
.bv-partner__meta a { color: inherit; text-decoration: none; }
.bv-partner__meta a:hover { color: var(--bv-red); }
.bv-partner p { margin: 0; font-size: 0.78rem; line-height: 1.65; }
.bv-partner__cta {
	margin-top: auto;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: lowercase;
	color: var(--bv-red);
	text-decoration: none;
}
.bv-partner__cta:hover { text-decoration: underline; }
.bv-partner__cta svg, .bv-partner__cta .wba-icon { width: 13px; height: 13px; }

/* =============================================================
   FINAL CTA — sitewide register/CTA pattern (centred, white)
   ============================================================= */
.bv-cta {
	padding: 110px var(--gutter-d, 48px);
	background: var(--bv-white);
	text-align: center;
}
.bv-cta__inner { max-width: 1080px; margin: 0 auto; }
.bv-cta__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--bv-red);
	margin-bottom: 22px;
}
.bv-cta__eyebrow svg, .bv-cta__eyebrow .wba-icon { width: 14px; height: 14px; color: var(--bv-red); }
.bv-cta__headline {
	font-size: clamp(2.4rem, 5.5vw, 4rem);
	font-weight: 800;
	line-height: 1.02;
	letter-spacing: -0.02em;
	color: var(--bv-dark);
	margin: 0 0 18px;
}
.bv-cta__headline em {
	font-style: italic;
	font-weight: 300;
	color: var(--bv-red);
}
.bv-cta__lede {
	font-size: 1.05rem;
	line-height: 1.55;
	color: var(--bv-muted);
	margin: 0 auto 44px;
	max-width: 640px;
}
.bv-cta__ctas {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	justify-content: center;
}

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 980px) {
	.bv-glance { grid-template-columns: repeat(6, 1fr); }
	.bv-glance__hero { grid-column: span 6; grid-row: auto; padding: 30px 26px; }
	.bv-glance__cell { grid-column: span 3; }

	.bv-path { grid-template-columns: repeat(2, 1fr); }
	.bv-path__step:nth-child(2n) .bv-path__arrow { display: none; }

	.bv-story { grid-template-columns: 1fr; gap: 32px; }

	.bv-tiers, .bv-partners { grid-template-columns: 1fr; max-width: 560px; }
	.bv-gameday { grid-template-columns: repeat(2, 1fr); }

	.bv-fixtable__head { display: none; }
	.bv-fixtable__row {
		grid-template-columns: auto 1fr auto;
		grid-template-areas:
			"date   time   status"
			"match  match  match"
			"venue  venue  venue";
		gap: 4px 12px;
		padding: 16px 18px;
	}
	.bv-fixtable__date   { grid-area: date; }
	.bv-fixtable__match  { grid-area: match; }
	.bv-fixtable__venue  { grid-area: venue; font-size: 0.72rem; }
	.bv-fixtable__right  { grid-area: status; }
	.bv-fixtable__row span[role="cell"]:nth-child(2) {
		grid-area: time;
		font-size: 0.74rem;
		color: var(--bv-muted);
		align-self: center;
	}
}

@media (max-width: 720px) {
	.bv-hero { min-height: 440px; }
	.bv-hero__inner { padding: 28px var(--gutter-m, 24px); }
	.bv-hero__warriors { height: 46px; }
	.bv-hero__ctas { flex-direction: column; align-items: stretch; }
	.bv-btn { justify-content: center; }
	.bv-anchors__inner { padding: 0 var(--gutter-m, 24px); gap: 22px; }
	.bv-anchors__inner a.is-cta { margin-left: 0; }

	.bv-section, .bv-cta {
		padding: 70px var(--gutter-m, 24px);
	}

	.bv-glance__cell { grid-column: span 6; }
	.bv-path { grid-template-columns: 1fr; }
	.bv-path__arrow { display: none; }
	.bv-gameday { grid-template-columns: 1fr; }
	.bv-squad { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
	.bv-entry { flex-direction: column; align-items: flex-start; }
	.bv-cta__ctas { flex-direction: column; align-items: stretch; }
}

/* mobile: show time inside date cell instead of its own column */
@media (max-width: 980px) {
	.bv-fixtable__date { font-size: 0.8rem; }
}

@media (prefers-reduced-motion: reduce) {
	.bv26 *, .bv26 *::before, .bv26 *::after {
		transition: none !important;
		animation: none !important;
	}
}
