/*
 * Reading Rockets — Components CSS
 * All named component classes. Layered on top of theme.css.
 * Sections: dropdowns → buttons → cards → section helpers → typography → CPT cards
 */

/* ═══════════════════════════════════════════════════════════════════
   NAVIGATION DROPDOWNS — 21st.dev popover pattern
   Targets WordPress core/navigation block submenu containers.
   JS in navigation.js handles keyboard and ARIA; CSS handles animation.
   ═══════════════════════════════════════════════════════════════════ */

/* Hide WP's default submenu toggle mechanism on desktop */
@media (min-width: 782px) {
	/* Reset WP's built-in submenu positioning so ours takes over */
	.rr-primary-nav .wp-block-navigation-item.has-child {
		position: relative;
	}

	/* Submenu panel — glass-card, hidden by default */
	.rr-primary-nav .wp-block-navigation__submenu-container {
		position: absolute;
		top: calc(100% + 0.5rem);
		left: 0;
		min-width: 200px;
		padding: 8px;
		z-index: 200;

		/* Glass-card */
		background: rgba(11, 17, 32, 0.92);
		border: 1px solid rgba(255, 255, 255, 0.08);
		backdrop-filter: blur(12px);
		-webkit-backdrop-filter: blur(12px);
		box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);

		/* Entrance animation — driven by .rr-dropdown-open class added by JS */
		opacity: 0;
		transform: translateY(-4px);
		pointer-events: none;
		transition: opacity 0.15s ease, transform 0.15s ease;
	}

	/* Open state — class toggled by navigation.js */
	.rr-primary-nav .wp-block-navigation-item.has-child.rr-dropdown-open
	> .wp-block-navigation__submenu-container {
		opacity: 1;
		transform: translateY(0);
		pointer-events: auto;
	}

	/* Submenu items */
	.rr-primary-nav .wp-block-navigation__submenu-container
	.wp-block-navigation-item__content {
		display: block;
		padding: 0.5rem 0.75rem 0.5rem 0.625rem;
		color: var(--color-white);
		text-decoration: none;
		font-family: var(--font-display);
		font-size: 1rem;
		letter-spacing: 0.06em;
		text-transform: uppercase;
		line-height: 1;
		border-left: 2px solid transparent;
		white-space: nowrap;
		transition: border-color 0.1s ease, color 0.1s ease, padding-left 0.1s ease;
	}

	.rr-primary-nav .wp-block-navigation__submenu-container
	.wp-block-navigation-item__content:hover,
	.rr-primary-nav .wp-block-navigation__submenu-container
	.wp-block-navigation-item__content:focus {
		border-left-color: var(--color-red);
		padding-left: 0.875rem;   /* pl-3 equivalent: shift right on hover */
		color: var(--color-white);
		outline: none;
	}

	/* Keyboard-focused item (set by JS) */
	.rr-primary-nav .wp-block-navigation__submenu-container
	.wp-block-navigation-item.rr-item-focused > .wp-block-navigation-item__content {
		border-left-color: var(--color-red);
		padding-left: 0.875rem;
	}

	/* Hide WP's default toggle button on desktop — we use hover+focus */
	.rr-primary-nav .wp-block-navigation-submenu__toggle {
		display: none;
	}

	/* Parent link indicator (chevron) — CSS-only */
	.rr-primary-nav .has-child > .wp-block-navigation-item__content::after {
		content: '';
		display: inline-block;
		width: 0;
		height: 0;
		border-left: 4px solid transparent;
		border-right: 4px solid transparent;
		border-top: 4px solid currentColor;
		margin-left: 6px;
		vertical-align: middle;
		opacity: 0.6;
		transition: transform 0.15s ease, opacity 0.15s ease;
	}

	.rr-primary-nav .has-child.rr-dropdown-open
	> .wp-block-navigation-item__content::after {
		transform: rotate(180deg);
		opacity: 1;
	}
}

/* Mobile — WP handles the overlay, ensure submenus are visible */
@media (max-width: 781px) {
	.wp-block-navigation__submenu-container {
		position: static !important;
		opacity: 1 !important;
		transform: none !important;
		pointer-events: auto !important;
		background: transparent !important;
		border: none !important;
		backdrop-filter: none !important;
		box-shadow: none !important;
		padding: 0 0 0 1rem !important;
	}
}

.nav-dropdown,
.rr-primary-nav .nav-dropdown.wp-block-navigation__submenu-container {
	background: rgba(11,17,32,0.95);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255,255,255,0.08);
	min-width: 200px;
	padding: 8px 0;
}

.nav-dropdown a,
.rr-primary-nav .nav-dropdown .wp-block-navigation-item__content {
	display: block;
	color: #FFFFFF;
	padding: 10px 16px;
	font-family: Inter, sans-serif;
	font-size: 14px;
	text-decoration: none;
	text-transform: none;
	letter-spacing: normal;
	border-left: 2px solid transparent;
	transition: border-color 0.1s ease, padding-left 0.1s ease;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus,
.rr-primary-nav .nav-dropdown .wp-block-navigation-item__content:hover,
.rr-primary-nav .nav-dropdown .wp-block-navigation-item__content:focus {
	color: #FFFFFF;
	border-left-color: #E8192C;
	padding-left: 20px;
	background: rgba(255,255,255,0.04);
}

.nav-dropdown .wp-block-navigation-item { background: transparent; color: #FFFFFF; }

/* ═══════════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════════ */

/* Shared button base */
.btn-primary,
.btn-secondary,
.btn-ghost {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-display);
	font-size: 0.875rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	line-height: 1;
	cursor: pointer;
	border: none;
	transition: background var(--transition-standard),
	            color var(--transition-standard),
	            filter var(--transition-standard),
	            outline var(--transition-standard);
}

/* Primary — red fill */
.btn-primary {
	background: var(--color-red);
	color: var(--color-white);
	padding: 12px 28px;
	border-radius: 0;
}

.btn-primary:hover {
	filter: brightness(1.1);
	color: var(--color-white);
}

.btn-primary:focus-visible {
	outline: 2px solid var(--color-gold);
	outline-offset: 3px;
}

/* Secondary — white outline */
.btn-secondary {
	background: transparent;
	color: var(--color-white);
	padding: 11px 27px; /* 1px less to account for border */
	border: 1.5px solid var(--color-white);
	border-radius: 0;
}

.btn-secondary:hover {
	background: var(--color-white);
	color: var(--color-navy);
	filter: none;
}

.btn-secondary:focus-visible {
	outline: 2px solid var(--color-gold);
	outline-offset: 3px;
}

/* Ghost — red text, no border */
.btn-ghost {
	background: transparent;
	color: var(--color-red);
	padding: 12px 4px;
	border: none;
	border-bottom: 1px solid transparent;
	border-radius: 0;
}

.btn-ghost:hover {
	border-bottom-color: var(--color-red);
	color: var(--color-red);
}

.btn-ghost:focus-visible {
	outline: 2px solid var(--color-gold);
	outline-offset: 3px;
}

/* WordPress button block overrides — so block editor buttons respect the classes */
.wp-block-button.is-style-fill .wp-block-button__link.btn-primary,
.wp-element-button.btn-primary {
	background: var(--color-red) !important;
	color: var(--color-white) !important;
	border-radius: 0 !important;
	padding: 12px 28px !important;
	font-family: var(--font-display) !important;
	letter-spacing: 0.1em !important;
	text-transform: uppercase !important;
}

/* ═══════════════════════════════════════════════════════════════════
   CARDS
   ═══════════════════════════════════════════════════════════════════ */
.card {
	background: var(--color-navy);
	box-shadow: var(--shadow-card);
	overflow: hidden;
	position: relative;
	border-radius: 0;
}

.card:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-hover);
	transition: transform var(--transition-standard),
	            box-shadow var(--transition-standard);
}

/* Post card (used in archive / news grid) */
.rr-card {
	background: var(--color-grey-dark);
	box-shadow: var(--shadow-card);
	overflow: hidden;
	position: relative;
	transition: transform var(--transition-standard),
	            box-shadow var(--transition-standard);
}

.rr-card:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-hover);
}

.rr-card .wp-block-post-featured-image img {
	transition: transform 400ms ease;
}

.rr-card:hover .wp-block-post-featured-image img {
	transform: scale(1.04);
}

.rr-card-category {
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.6875rem;
	font-weight: 700;
	color: var(--color-red);
	margin-bottom: 0.375rem;
	text-decoration: none;
}

/* Glass card */
.glass-card {
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	backdrop-filter: var(--blur-card);
	-webkit-backdrop-filter: var(--blur-card);
	overflow: hidden;
	position: relative;
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION HELPERS
   ═══════════════════════════════════════════════════════════════════ */

/* Launch-cut — bottom diagonal break (used on hero, CTA sections) */
.section-launch-cut {
	clip-path: var(--clip-launch);
	padding-bottom: 80px;
	position: relative;
}

/* Launch-cut-top — top diagonal indent (following section) */
.section-launch-cut-top {
	clip-path: var(--clip-launch-top);
	padding-top: 80px;
	position: relative;
}

/* ═══════════════════════════════════════════════════════════════════
   TYPOGRAPHY COMPONENTS
   ═══════════════════════════════════════════════════════════════════ */

/* Eyebrow label — sits above headline */
.eyebrow {
	display: block;
	font-family: var(--font-body);
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--color-gold);
	line-height: 1;
	margin-bottom: 0.75rem;
}

/* Display headline — Bebas Neue, hero scale */
.display-headline {
	font-family: var(--font-display);
	font-size: clamp(3rem, 7.5vw, 4.5rem); /* 48px → 72px */
	line-height: 0.92;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	color: var(--color-white);
	margin: 0;
}

/* Section heading group */
.rr-section-label {
	display: block;
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--color-red);
	margin-bottom: 0.5rem;
	line-height: 1;
}

.rr-section-title {
	font-family: var(--font-display);
	text-transform: uppercase;
	letter-spacing: 0.02em;
	line-height: 1;
	margin: 0;
	color: var(--color-white);
}

/* ═══════════════════════════════════════════════════════════════════
   FIXTURE / RESULT CARDS
   ═══════════════════════════════════════════════════════════════════ */
.rr-fixture-card {
	background: var(--color-grey-dark);
	border-left: 4px solid var(--color-grey-mid);
	padding: 1rem 1.25rem;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 1rem;
	transition: border-color var(--transition-standard);
}

.rr-fixture-card--win  { border-left-color: var(--color-gold); }
.rr-fixture-card--loss { border-left-color: var(--color-red); }

.rr-fixture-card__team {
	font-family: var(--font-display);
	font-size: 1.125rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--color-white);
}

.rr-fixture-card__team--away {
	text-align: right;
}

.rr-fixture-card__score {
	font-family: var(--font-display);
	font-size: 2rem;
	color: var(--color-white);
	text-align: center;
	letter-spacing: 0.04em;
	line-height: 1;
}

.rr-fixture-card__meta {
	font-size: 0.6875rem;
	color: var(--color-grey-muted);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-top: 0.25rem;
	display: block;
}

/* Upcoming fixture (no score) */
.rr-fixture-card__vs {
	font-family: var(--font-display);
	font-size: 1.25rem;
	color: var(--color-grey-muted);
	text-align: center;
	letter-spacing: 0.06em;
}

/* ═══════════════════════════════════════════════════════════════════
   PLAYER CARDS
   ═══════════════════════════════════════════════════════════════════ */
.rr-player-card {
	position: relative;
	overflow: hidden;
	aspect-ratio: 3 / 4;
	background: var(--color-grey-dark);
}

.rr-player-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 400ms ease;
}

.rr-player-card:hover .rr-player-card__image {
	transform: scale(1.06);
}

.rr-player-card__info {
	position: absolute;
	inset: auto 0 0;
	background: linear-gradient(to top, rgba(11,17,32,0.96) 0%, transparent 100%);
	padding: 1.5rem 1rem 1rem;
}

.rr-player-card__number {
	font-family: var(--font-display);
	font-size: 3.5rem;
	line-height: 1;
	color: var(--color-red);
	opacity: 0.65;
	position: absolute;
	top: 0.625rem;
	right: 0.875rem;
}

.rr-player-card__name {
	font-family: var(--font-display);
	font-size: 1.625rem;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--color-white);
	margin: 0 0 0.3rem;
}

.rr-player-card__position {
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--color-gold);
}

/* ═══════════════════════════════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════════════════════════════ */
.rr-stats-bar {
	display: flex;
	flex-wrap: wrap;
	background: var(--color-grey-dark);
	border-top: 4px solid var(--color-red);
}

.rr-stats-bar__item {
	flex: 1 1 160px;
	padding: 1.5rem 1.25rem;
	border-right: 1px solid var(--glass-border);
	text-align: center;
}

.rr-stats-bar__item:last-child {
	border-right: none;
}

.rr-stats-bar__value {
	display: block;
	font-family: var(--font-display);
	font-size: 3rem;
	line-height: 1;
	color: var(--color-gold);
}

.rr-stats-bar__label {
	display: block;
	font-size: 0.6875rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--color-grey-muted);
	margin-top: 0.25rem;
}

/* ═══════════════════════════════════════════════════════════════════
   ACHIEVEMENTS STRIP — laurel medallions, sits directly under the hero
   ═══════════════════════════════════════════════════════════════════ */
.rr-achievements {
	background: var(--color-navy);
	position: relative;
	padding-block: 40px 56px;
	margin-top: -1px; /* seam with hero's launch-cut edge */
}

.rr-achievements__row {
	display: flex;
	align-items: stretch;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px 0;
}

.rr-medallion {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding-inline: clamp(1rem, 3vw, 2.25rem);
	position: relative;
	opacity: 0;
	transform: translateY(10px);
	animation: rr-medallion-in 0.6s ease-out forwards;
}

.rr-medallion:nth-child(2) { animation-delay: 0.12s; }
.rr-medallion:nth-child(3) { animation-delay: 0.24s; }

@keyframes rr-medallion-in {
	to { opacity: 1; transform: translateY(0); }
}

.rr-medallion + .rr-medallion::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 34px;
	background: var(--glass-border);
}

.rr-medallion__laurel {
	width: 22px;
	height: 56px;
	flex-shrink: 0;
	transition: transform 0.3s ease;
}

.rr-medallion__laurel--right {
	transform: scaleX(-1);
}

.rr-medallion:hover .rr-medallion__laurel--left  { transform: translateX(-2px); }
.rr-medallion:hover .rr-medallion__laurel--right { transform: scaleX(-1) translateX(-2px); }

.rr-medallion__core {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	line-height: 1;
}

.rr-medallion__label {
	font-family: var(--font-body);
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--color-white);
	white-space: nowrap;
}

.rr-medallion__stars {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
	gap: 0.125rem;
	max-width: 9.5ch;
	margin-top: 0.4rem;
}

.rr-medallion__star {
	width: 10px;
	height: 10px;
	fill: url(#rr-laurel-gradient);
	flex-shrink: 0;
}

@media (max-width: 640px) {
	.rr-achievements__row { flex-direction: column; align-items: center; gap: 20px; }
	.rr-medallion + .rr-medallion::before { display: none; }
	.rr-medallion__label { white-space: normal; max-width: 10rem; }
}

@media (prefers-reduced-motion: reduce) {
	.rr-medallion { animation: none; opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════════════════════════════
   CTA BAND
   ═══════════════════════════════════════════════════════════════════ */
.rr-cta-band {
	background: linear-gradient(135deg, var(--color-red) 0%, #a0111d 100%);
	text-align: center;
	padding-block: 5rem;
}

/* ═══════════════════════════════════════════════════════════════════
   404
   ═══════════════════════════════════════════════════════════════════ */
.rr-404 {
	display: flex;
	align-items: center;
	justify-content: center;
}

/* ═══════════════════════════════════════════════════════════════════
   RESULTS TICKER
   Fixed 44 px strip. Server-rendered PHP. CSS-only marquee loop.
   Seamless: items are output twice; animation covers 50% travel.
   ═══════════════════════════════════════════════════════════════════ */

@keyframes rr-marquee {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}

.rr-ticker {
	position: relative;
	height: 44px;
	background: var(--color-navy);
	border-bottom: 1px solid rgba(255,255,255,0.06);
	display: flex;
	align-items: center;
	overflow: hidden;
	cursor: default;
}

/* RESULTS label pill */
.rr-ticker__label {
	flex-shrink: 0;
	padding: 0 12px;
	height: 44px;
	display: flex;
	align-items: center;
	background: var(--color-red);
	font-family: 'Bebas Neue', sans-serif;
	font-size: 13px;
	letter-spacing: 0.1em;
	color: var(--color-white);
	z-index: 2;
	white-space: nowrap;
}

/* Fade edges */
.rr-ticker::before,
.rr-ticker::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 48px;
	z-index: 1;
	pointer-events: none;
}
.rr-ticker::before {
	left: 0;
	background: linear-gradient(to right, var(--color-navy) 0%, transparent 100%);
}
.rr-ticker::after {
	right: 0;
	background: linear-gradient(to left, var(--color-navy) 0%, transparent 100%);
}

/* Scrolling viewport */
.rr-ticker__viewport {
	flex: 1;
	overflow: hidden;
	height: 44px;
	display: flex;
	align-items: center;
}

/* Moving track — doubled content */
.rr-ticker__track {
	display: flex;
	align-items: center;
	white-space: nowrap;
	will-change: transform;
}

@media (prefers-reduced-motion: no-preference) {
	.rr-ticker__track {
		animation: rr-marquee 40s linear infinite;
	}
}

/* Pause on keyboard focus or hover (accessibility) */
.rr-ticker:hover .rr-ticker__track,
.rr-ticker:focus-within .rr-ticker__track {
	animation-play-state: paused;
}

/* Individual result items */
.rr-ticker-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 0 16px 0 0;
	font-size: 13px;
	font-weight: 500;
	color: var(--color-white);
}

.rr-ticker-team {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 12px;
	letter-spacing: 0.08em;
	color: var(--color-gold);
}

.rr-ticker-sep {
	color: rgba(255,255,255,0.25);
	margin: 0 8px;
}

/* Win / loss / draw colouring */
.rr-ticker-item--win   .rr-ticker-match { color: #4caf50; }
.rr-ticker-item--loss  .rr-ticker-match { color: var(--color-red); }
.rr-ticker-item--draw  .rr-ticker-match { color: var(--color-gold); }

/* Screen-reader-only utility (used by ticker and fixture card) */
.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;
}

/* ═══════════════════════════════════════════════════════════════════
   FILTER TABS — Fixtures / Results page
   ═══════════════════════════════════════════════════════════════════ */

.rr-filter-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	padding: 24px 0 32px;
	border-bottom: 1px solid rgba(255,255,255,0.08);
	margin-bottom: 40px;
}

.rr-filter-tab {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 14px;
	letter-spacing: 0.08em;
	padding: 6px 16px;
	border: 1.5px solid rgba(255,255,255,0.18);
	background: transparent;
	color: var(--color-grey-muted);
	cursor: pointer;
	transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
	line-height: 1;
}

.rr-filter-tab:hover {
	color: var(--color-white);
	border-color: rgba(255,255,255,0.4);
}

.rr-filter-tab.is-active {
	color: var(--color-white);
	border-color: var(--color-red);
	border-bottom-width: 2px;
	background: rgba(232,25,44,0.08);
}

.rr-filter-tab:focus-visible {
	outline: 2px solid var(--color-gold);
	outline-offset: 2px;
}

/* ═══════════════════════════════════════════════════════════════════
   FIXTURE CARDS  (.rr-fc)
   ═══════════════════════════════════════════════════════════════════ */

.rr-fixtures-section {
	margin-bottom: 56px;
}

.rr-section-title {
	font-family: 'Bebas Neue', sans-serif;
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	color: var(--color-white);
	margin: 0 0 24px;
	line-height: 1;
}

.rr-section-label {
	display: block;
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--color-gold);
	margin-bottom: 4px;
}

/* Responsive grid */
.rr-fixture-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 16px;
}

/* Card base */
.rr-fc {
	position: relative;
	display: flex;
	flex-direction: row;
	overflow: hidden;
	background: var(--color-grey-dark);
	box-shadow: var(--shadow-card);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rr-fc:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}

/* Left stripe — 4px wide colour bar */
.rr-fc__stripe {
	flex-shrink: 0;
	width: 4px;
	background: var(--color-grey-mid);
}

.rr-fc--home .rr-fc__stripe { background: var(--color-red); }
.rr-fc--away .rr-fc__stripe { background: var(--color-gold); }
.rr-fc--win  .rr-fc__stripe { background: #4caf50; }
.rr-fc--loss .rr-fc__stripe { background: var(--color-red); }
.rr-fc--draw .rr-fc__stripe { background: var(--color-gold); }

/* Card body */
.rr-fc__body {
	flex: 1;
	padding: 16px 20px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

/* Card header row */
.rr-fc__header {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}

/* Date pill */
.rr-date-pill {
	display: inline-block;
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.1);
	padding: 2px 8px;
	font-size: 11px;
	font-weight: 600;
	color: var(--color-white);
	letter-spacing: 0.04em;
}

.rr-fc__time {
	font-size: 11px;
	color: var(--color-grey-muted);
	font-weight: 500;
}

.rr-fc__comp {
	margin-left: auto;
	text-align: right;
}

/* Team names */
.rr-fc__teams {
	display: flex;
	align-items: center;
	gap: 10px;
}

.rr-fc__team-name {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 18px;
	color: var(--color-white);
	line-height: 1.1;
	flex: 1;
}

.rr-fc__team-name:last-child {
	text-align: right;
}

.rr-fc__sep {
	font-size: 12px;
	color: var(--color-grey-muted);
	flex-shrink: 0;
}

/* Score row */
.rr-fc__score-row {
	display: flex;
	align-items: center;
	gap: 12px;
}

.rr-fc__score {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 28px;
	color: var(--color-white);
	letter-spacing: 0.04em;
	line-height: 1;
}

/* W/L/D pill */
.rr-result-pill {
	display: inline-block;
	padding: 2px 8px;
	font-family: 'Bebas Neue', sans-serif;
	font-size: 13px;
	letter-spacing: 0.06em;
}

.rr-result-pill--w { background: rgba(76,175,80,0.15); color: #4caf50; }
.rr-result-pill--l { background: rgba(232,25,44,0.15); color: var(--color-red); }
.rr-result-pill--d { background: rgba(245,166,35,0.15); color: var(--color-gold); }

/* Venue */
.rr-fc__venue {
	font-size: 12px;
	color: var(--color-grey-muted);
	margin: 0;
}

/* Footer row */
.rr-fc__footer {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 4px;
	padding-top: 12px;
	border-top: 1px solid rgba(255,255,255,0.06);
}

.rr-fc__ticket {
	font-size: 12px;
	padding: 6px 16px;
}

.rr-fc__report {
	font-size: 12px;
}

/* Empty state */
.rr-fixtures-empty {
	padding: 64px 0;
	text-align: center;
	color: var(--color-grey-muted);
	font-size: 16px;
}

.rr-fixtures-empty--static {
	display: block !important; /* not toggled by JS */
}

/* ═══════════════════════════════════════════════════════════════════
   TEAM HERO
   Full-width banner. Uses CSS breakout from constrained WP layout.
   ═══════════════════════════════════════════════════════════════════ */

.rr-team-hero {
	/* Full width via the unconstrained page-promo template — no 100vw
	   breakout hack (it fights constrained layouts and overflows by the
	   scrollbar width). */
	position: relative;
	min-height: 60vh;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
}

.rr-team-hero--no-image {
	background: var(--color-grey-dark);
	min-height: 40vh;
}

/* Background image layer */
.rr-team-hero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center 25%;
	background-repeat: no-repeat;
	transition: transform 0.4s ease;
}

.rr-team-hero:hover .rr-team-hero__bg {
	transform: scale(1.02);
}

/* Dark gradient overlay */
.rr-team-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		rgba(11,17,32,0.15) 0%,
		rgba(11,17,32,0.45) 40%,
		rgba(11,17,32,0.92) 100%
	);
}

/* Content sits above overlay */
.rr-team-hero__content {
	position: relative;
	z-index: 1;
	padding: 48px var(--gutter);
	width: 100%;
	max-width: var(--wide-width);
	margin: 0 auto;
}

/* Competition badge pill */
.rr-team-hero__badge {
	display: inline-block;
	padding: 4px 14px;
	background: var(--color-gold);
	color: var(--color-navy);
	font-family: 'Bebas Neue', sans-serif;
	font-size: 13px;
	letter-spacing: 0.1em;
	margin-bottom: 12px;
}

/* Team name */
.rr-team-hero__title {
	color: var(--color-white);
	margin: 0 0 16px;
}

/* Season W-L record */
.rr-team-hero__record {
	display: flex;
	align-items: baseline;
	gap: 8px;
	margin: 0;
	font-family: 'Bebas Neue', sans-serif;
	font-size: 2rem;
	letter-spacing: 0.06em;
}

.rr-team-hero__record-w  { color: #4caf50; }
.rr-team-hero__record-sep { color: rgba(255,255,255,0.3); }
.rr-team-hero__record-l  { color: var(--color-red); }

/* ═══════════════════════════════════════════════════════════════════
   ROSTER GRID — hover-reveal card pattern (21st.dev)
   ═══════════════════════════════════════════════════════════════════ */

/* Grid wrapper */
.rr-roster__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-bottom: 48px;
}

@media (max-width: 900px) {
	.rr-roster__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
	.rr-roster__grid { grid-template-columns: 1fr; }
}

/* Coaching staff — smaller row below main grid */
.rr-roster__coaching {
	margin-top: 48px;
}

.rr-roster__coaching-eyebrow {
	margin-bottom: 20px;
}

.rr-roster__coaching-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

@media (max-width: 900px) {
	.rr-roster__coaching-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Card ─────────────────────────────────────────────────────────── */

.rr-roster-card {
	aspect-ratio: 3 / 4;
	position: relative;
	overflow: hidden;
	background: var(--color-grey-dark);
	cursor: pointer;
}

/* Remove aspect-ratio box-sizing quirk in Safari */
.rr-roster-card__link-wrap {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	inset: 0;
	text-decoration: none;
	color: inherit;
}

/* Image */
.rr-roster-card__img-wrap {
	position: absolute;
	inset: 0;
}

.rr-roster-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	transition: transform 0.3s ease;
}

.rr-roster-card:hover .rr-roster-card__img,
.rr-roster-card.is-active .rr-roster-card__img {
	transform: scale(1.04);
}

/* Placeholder when no image */
.rr-roster-card__img-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--color-grey-dark) 0%, var(--color-navy) 100%);
}

/* ── Overlay — the key animation piece ─────────────────────────── */

.rr-roster-card__overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	/* Gradient: transparent → 40% → navy */
	background: linear-gradient(
		to bottom,
		transparent 0%,
		rgba(11,17,32,0.80) 35%,
		rgba(11,17,32,0.97) 100%
	);
	/* At rest: only tall enough to show number + name */
	height: 38%;
	transition: height 0.25s ease;
	overflow: hidden;

	/* Flex column — items pin to bottom */
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: 6px;
	padding: 0 16px 14px;
}

/* On hover/touch-active: expand to reveal content above */
.rr-roster-card:hover .rr-roster-card__overlay,
.rr-roster-card.is-active .rr-roster-card__overlay {
	height: 62%;
}

/* ── Reveal content (fades in when overlay is tall) ────────────── */

.rr-roster-card__reveal {
	opacity: 0;
	transform: translateY(6px);
	transition: opacity 0.18s ease 0.08s, transform 0.18s ease 0.08s;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.rr-roster-card:hover .rr-roster-card__reveal,
.rr-roster-card.is-active .rr-roster-card__reveal {
	opacity: 1;
	transform: translateY(0);
}

.rr-roster-card__meta {
	margin: 0;
	color: var(--color-grey-muted);
	font-size: 10px;
	letter-spacing: 0.12em;
}

/* Stat pills row */
.rr-roster-card__stats {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
}

.rr-stat-pill {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	padding: 4px 8px;
	min-width: 44px;
	gap: 1px;
}

.rr-stat-pill__val {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 16px;
	color: var(--color-gold);
	line-height: 1;
}

.rr-stat-pill__lbl {
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: var(--color-grey-muted);
	text-transform: uppercase;
}

/* "View Profile →" link */
.rr-roster-card__profile-cta {
	font-size: 12px;
	font-weight: 600;
	color: var(--color-red);
	letter-spacing: 0.02em;
	transition: color 0.15s ease;
}

.rr-roster-card__link-wrap:hover .rr-roster-card__profile-cta {
	color: #ff4458;
}

/* ── Base (always visible) ─────────────────────────────────────── */

.rr-roster-card__base {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.rr-roster-card__number {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 13px;
	letter-spacing: 0.08em;
	color: var(--color-gold);
	line-height: 1;
}

.rr-roster-card__name {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 20px;
	color: var(--color-white);
	line-height: 1.05;
	margin: 0;
}

/* Inactive player — desaturated */
.rr-roster-card--inactive .rr-roster-card__img {
	filter: grayscale(0.7) brightness(0.7);
}

.rr-roster-card--inactive .rr-roster-card__name {
	color: var(--color-grey-muted);
}

/* Empty state */
.rr-roster-empty {
	padding: 64px 0;
	text-align: center;
	color: var(--color-grey-muted);
}

/* ═══════════════════════════════════════════════════════════════════
   SINGLE PLAYER PAGE
   ═══════════════════════════════════════════════════════════════════ */

.rr-player-single {
	padding-block: 48px 80px;
}

/* Two-column layout */
.rr-player-layout {
	display: grid;
	grid-template-columns: 5fr 7fr;
	gap: 56px;
	align-items: start;
	margin-bottom: 64px;
}

@media (max-width: 768px) {
	.rr-player-layout {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}

/* Image column */
.rr-player-layout__image {
	position: sticky;
	top: 88px; /* clears compressed header */
}

.rr-player-image-wrap {
	overflow: hidden;
	aspect-ratio: 3 / 4;
}

.rr-player-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

/* Content column */
.rr-player-layout__content {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* Name + watermark number */
.rr-player-name-group {
	position: relative;
}

.rr-player-number-bg {
	position: absolute;
	top: 50%;
	left: -0.05em;
	transform: translateY(-55%);
	font-family: 'Bebas Neue', sans-serif;
	font-size: clamp(80px, 15vw, 120px);
	line-height: 1;
	color: var(--color-gold);
	opacity: 0.08;
	pointer-events: none;
	user-select: none;
	white-space: nowrap;
	z-index: 0;
}

.rr-player-name {
	position: relative;
	z-index: 1;
	font-family: 'Bebas Neue', sans-serif;
	font-size: clamp(2.5rem, 6vw, 4rem);
	color: var(--color-white);
	line-height: 1;
	margin: 0;
}

/* Meta line: position · nationality */
.rr-player-meta {
	margin: 0;
	color: var(--color-grey-muted);
}

/* Team badge */
.rr-player-team-badge {
	display: inline-block;
	padding: 3px 12px;
	border: 1.5px solid var(--color-red);
	font-family: 'Bebas Neue', sans-serif;
	font-size: 13px;
	letter-spacing: 0.08em;
	color: var(--color-red);
	margin: 0;
}

/* Stat pills row */
.rr-player-stats {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.rr-player-stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 12px 20px;
	min-width: 72px;
	gap: 2px;
}

.rr-player-stat__val {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 2rem;
	color: var(--color-gold);
	line-height: 1;
}

.rr-player-stat__lbl {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.12em;
	color: var(--color-grey-muted);
	text-transform: uppercase;
}

/* Bio */
.rr-player-bio {
	border-left: 2px solid var(--color-red);
	padding-left: 20px;
}

.rr-player-bio p {
	color: rgba(255,255,255,0.75);
	font-size: 16px;
	line-height: 1.65;
	margin: 0;
}

/* Recent fixtures for player */
.rr-player-fixtures {
	margin-bottom: 48px;
}

.rr-player-fixtures__list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

/* Compact fixture card modifier */
.rr-fc--compact {
	min-height: unset;
}

.rr-fc--compact .rr-fc__body {
	padding: 10px 16px;
	gap: 4px;
}

.rr-fc--compact .rr-fc__teams {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 8px;
}

.rr-fc__score--inline {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 18px;
	color: var(--color-white);
	text-align: center;
	letter-spacing: 0.04em;
}

.rr-fc__team-name--right {
	text-align: right;
}

/* Back link */
.rr-player-back {
	margin-top: 16px;
}

/* ═══════════════════════════════════════════════════════════════════
   SHARED HOMEPAGE UTILITIES
   ═══════════════════════════════════════════════════════════════════ */

/* Constrained content container reused by all homepage sections */
.rr-container {
	max-width: min(1200px, 100% - 3rem);
	margin-inline: auto;
	padding-inline: 1.5rem;
}

@media (min-width: 1024px) {
	.rr-container { padding-inline: 2.5rem; }
}

/* Common section spacing */
.rr-home-section {
	padding-block: 72px;
}

.rr-home-section:nth-child(even) {
	background: var(--color-grey-dark);
}

/* Section header row */
.rr-home-section__header {
	margin-bottom: 40px;
}

.rr-home-section__header--split {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}

.rr-home-section__view-all {
	white-space: nowrap;
	margin-bottom: 6px; /* align baseline with section title */
}

.rr-home-section__empty {
	color: var(--color-grey-muted);
	font-size: 15px;
	padding: 40px 0;
}

/* ═══════════════════════════════════════════════════════════════════
   HERO — SHARED
   ═══════════════════════════════════════════════════════════════════ */

.rr-hero {
	position: relative;
	min-height: 100svh;
	min-height: 100vh; /* fallback */
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	text-align: center;
	/* Pull up behind the transparent sticky header (Donar-style) */
	margin-top: calc(-1 * var(--header-height));
	padding-top: var(--header-height);
	/* launch-cut bottom edge via inherited .section-launch-cut */
}

/* Background image layer */
.rr-hero__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 30%;
	transition: transform 0.6s ease;
	will-change: transform;
}

/* Parallax-lite: very subtle shift on the hero bg */
.rr-hero:hover .rr-hero__bg {
	transform: scale(1.015);
}

/* Background video layer — sits over the image, under the overlay.
   Fades in via .is-playing so the image paints instantly (no flash of black). */
.rr-hero__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 30%;
	opacity: 0;
	transition: opacity 0.6s ease;
}

.rr-hero__video.is-playing {
	opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
	.rr-hero__video {
		display: none;
	}
}

/* Dark overlay */
.rr-hero__overlay {
	position: absolute;
	inset: 0;
	background: rgba(11,17,32,0.75);
}

/* Content above overlay */
.rr-hero__content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	padding: 120px 1.5rem 120px;
	max-width: 860px;
	width: 100%;
}

/* Eyebrow above match card */
.rr-hero__eyebrow {
	color: var(--color-gold);
	letter-spacing: 0.15em;
}

/* Headline */
.rr-hero__headline {
	color: var(--color-white);
	margin: 0;
}

/* Subheadline */
.rr-hero__sub {
	font-size: 18px;
	color: rgba(255,255,255,0.82);
	line-height: 1.5;
	max-width: 560px;
	margin: 0;
}

/* CTA row */
.rr-hero__ctas {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 8px;
}

/* ── Scroll indicator ──────────────────────────────────────────── */

@keyframes rr-scroll-pulse {
	0%   { opacity: 0.9; transform: scaleY(1) translateY(0); }
	100% { opacity: 0;   transform: scaleY(0.6) translateY(10px); }
}

.rr-scroll-indicator {
	position: absolute;
	bottom: 72px; /* above launch-cut clip area */
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	z-index: 2;
	transition: opacity 0.3s ease;
}

.rr-scroll-indicator__line {
	width: 1px;
	height: 44px;
	background: rgba(255,255,255,0.7);
	transform-origin: top center;
}

@media (prefers-reduced-motion: no-preference) {
	.rr-scroll-indicator__line {
		animation: rr-scroll-pulse 1.6s ease-out infinite;
	}
}

@media (prefers-reduced-motion: reduce) {
	.rr-scroll-indicator { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════
   HERO — MATCHWEEK STATE
   ═══════════════════════════════════════════════════════════════════ */

/* Match card — glass card with team badges */
.rr-match-card {
	width: 100%;
	max-width: 580px;
	padding: 24px 28px 0;
	text-align: left;
}

.rr-match-card__body {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 12px;
}

/* Team column */
.rr-match-card__team {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	text-align: center;
}

/* Badge placeholder — initials in a styled hexagon-ish box */
.rr-match-card__badge {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255,255,255,0.08);
	border: 1.5px solid rgba(255,255,255,0.18);
	font-family: 'Bebas Neue', sans-serif;
	font-size: 18px;
	letter-spacing: 0.06em;
	color: var(--color-white);
	clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.rr-match-card__team--home .rr-match-card__badge {
	background: rgba(232,25,44,0.25);
	border-color: rgba(232,25,44,0.5);
}

.rr-match-card__team-name {
	font-size: 13px;
	font-weight: 600;
	color: var(--color-white);
	text-align: center;
	line-height: 1.2;
}

/* Centre info column */
.rr-match-card__info {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	text-align: center;
}

.rr-match-card__date {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 16px;
	color: var(--color-gold);
	letter-spacing: 0.06em;
}

.rr-match-card__time {
	font-size: 13px;
	font-weight: 700;
	color: var(--color-white);
}

.rr-match-card__venue,
.rr-match-card__tbc {
	font-size: 11px;
	color: var(--color-grey-muted);
	text-align: center;
}

/* Score bar */
.rr-match-card__score-bar {
	margin-top: 16px;
	padding: 10px 28px;
	border-top: 1px solid rgba(255,255,255,0.08);
	text-align: center;
}

.rr-match-card__score {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 28px;
	letter-spacing: 0.08em;
	color: var(--color-white);
}

/* ═══════════════════════════════════════════════════════════════════
   HERO — DEFAULT / CHAMPIONSHIP STATE
   ═══════════════════════════════════════════════════════════════════ */

/* Words start invisible; JS adds .is-revealed with stagger */
.rr-hero-word {
	display: inline-block;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.55s cubic-bezier(0.22, 0.61, 0.36, 1),
	            transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
	margin-right: 0.2em;
}

.rr-hero-word.is-revealed {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	.rr-hero-word {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* ═══════════════════════════════════════════════════════════════════
   RESULTS STRIP (homepage section 1)
   ═══════════════════════════════════════════════════════════════════ */

.rr-results-strip {
	background: var(--color-navy);
}

.rr-results-strip__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

/* Horizontal scroll on mobile */
@media (max-width: 700px) {
	.rr-results-strip__grid {
		grid-template-columns: repeat(3, minmax(260px, 1fr));
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		padding-bottom: 12px;
	}
	.rr-results-strip__grid > * {
		scroll-snap-align: start;
	}
}

/* Team tag (abbr) in compact card */
.rr-fc__team-tag {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 11px;
	letter-spacing: 0.08em;
	color: var(--color-gold);
	padding: 1px 6px;
	border: 1px solid rgba(245,166,35,0.3);
}

/* ═══════════════════════════════════════════════════════════════════
   UPCOMING FIXTURES (homepage section 2)
   ═══════════════════════════════════════════════════════════════════ */

.rr-upcoming-section {
	background: var(--color-grey-dark);
}

.rr-upcoming-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

@media (max-width: 900px) {
	.rr-upcoming-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════
   NEWS GRID (homepage section 3)
   ═══════════════════════════════════════════════════════════════════ */

.rr-news-section {
	background: var(--color-navy);
}

.rr-news-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

@media (max-width: 900px) {
	.rr-news-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
	.rr-news-grid { grid-template-columns: 1fr; }
}

/* News card */
.rr-news-card {
	background: var(--color-grey-dark);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.rr-news-card__image-link {
	display: block;
	overflow: hidden;
}

.rr-news-card__image-wrap {
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

.rr-news-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.rr-news-card:hover .rr-news-card__image {
	transform: scale(1.04);
}

.rr-news-card__image-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--color-grey-dark) 0%, var(--color-navy) 100%);
}

.rr-news-card__body {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 20px;
	flex: 1;
}

.rr-news-card__cat {
	margin: 0;
}

/* Category colour modifiers */
.eyebrow--matchday  { color: var(--color-red); }
.eyebrow--community { color: #4caf50; }
.eyebrow--academy   { color: var(--color-gold); }

.rr-news-card__title {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.3;
}

/* Hover underline effect (21st.dev editorial pattern) */
.rr-news-card__title-link {
	color: var(--color-white);
	text-decoration: none;
	background-image: linear-gradient(var(--color-red), var(--color-red));
	background-size: 0 1.5px;
	background-position: 0 100%;
	background-repeat: no-repeat;
	transition: background-size 0.15s ease, color 0.15s ease;
}

.rr-news-card__title-link:hover {
	background-size: 100% 1.5px;
	color: rgba(255,255,255,0.9);
}

.rr-news-card__date {
	display: block;
	font-size: 12px;
	color: var(--color-grey-muted);
	margin-top: auto;
	padding-top: 4px;
}

/* ── News feature grid (homepage) — lead landscape card + portrait tiles.
      .rr-news-card above stays untouched: it's used by the news archive. ── */
.rr-news-feature-grid {
	display: grid;
	grid-template-columns: 1.7fr 1fr 1fr;
	gap: 24px;
	height: clamp(420px, 42vw, 560px);
}

/* Degenerate content states: 1 post → full-width lead; 2 posts → lead + one tile */
.rr-news-feature-grid .rr-news-tile:only-child { grid-column: 1 / -1; }
.rr-news-feature-grid .rr-news-tile--lead:nth-last-child(2) { grid-column: 1 / 3; }

.rr-news-tile {
	position: relative;
	overflow: hidden;
	background: var(--color-grey-dark);
}

.rr-news-tile__link {
	display: block;
	position: absolute;
	inset: 0;
	text-decoration: none;
	color: inherit;
}

.rr-news-tile__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--transition-slow);
}

.rr-news-tile__link:hover .rr-news-tile__image,
.rr-news-tile__link:focus-visible .rr-news-tile__image {
	transform: scale(1.04);
}

.rr-news-tile__image--placeholder {
	background:
		radial-gradient(120% 90% at 20% 10%, rgba(232, 25, 44, 0.18), transparent 55%),
		var(--color-grey-dark);
}

.rr-news-tile__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(11, 17, 32, 0.18) 0%, transparent 35%, transparent 45%, rgba(11, 17, 32, 0.92) 100%);
	pointer-events: none;
}

.rr-news-tile__chip {
	position: absolute;
	top: 20px;
	left: 20px;
	padding: 0.45rem 0.8rem;
	background: var(--color-navy);
	color: var(--color-white);
	font-family: var(--font-body);
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	line-height: 1;
}

/* Category accent: reuse eyebrow colour modifiers as a left border tick */
.rr-news-tile__chip.eyebrow--matchday  { box-shadow: inset 3px 0 0 var(--color-red); }
.rr-news-tile__chip.eyebrow--community { box-shadow: inset 3px 0 0 #4caf50; }
.rr-news-tile__chip.eyebrow--academy   { box-shadow: inset 3px 0 0 var(--color-gold); }

.rr-news-tile__content {
	position: absolute;
	left: 20px;
	right: 20px;
	bottom: 20px;
}

.rr-news-tile__date {
	display: block;
	font-family: var(--font-body);
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 0.5rem;
}

.rr-news-tile__title {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(1.375rem, 2vw, 1.875rem);
	line-height: 1.05;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--color-white);
}

.rr-news-tile--lead .rr-news-tile__title {
	font-size: clamp(1.75rem, 2.8vw, 2.5rem);
}

.rr-news-feature-footer {
	display: flex;
	justify-content: flex-end;
	margin-top: 28px;
}

@media (max-width: 900px) {
	.rr-news-feature-grid {
		grid-template-columns: 1fr 1fr;
		height: auto;
	}

	.rr-news-tile--lead,
	.rr-news-feature-grid .rr-news-tile--lead:nth-last-child(2) {
		grid-column: 1 / -1;
	}

	.rr-news-tile { aspect-ratio: 3 / 4; }
	.rr-news-tile--lead { aspect-ratio: 16 / 10; }
}

@media (max-width: 560px) {
	.rr-news-feature-grid { grid-template-columns: 1fr; }
	.rr-news-tile { aspect-ratio: 16 / 10; }
}

/* ═══════════════════════════════════════════════════════════════════
   OUR PLAYERS CAROUSEL (homepage) — pure-CSS marquee, content ×2
   ═══════════════════════════════════════════════════════════════════ */
.rr-players-section {
	background: var(--color-grey-dark);
	overflow: hidden;
}

.rr-players-carousel__viewport {
	position: relative;
	overflow: hidden;
}

/* Edge fades */
.rr-players-carousel__viewport::before,
.rr-players-carousel__viewport::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 80px;
	z-index: 2;
	pointer-events: none;
}

.rr-players-carousel__viewport::before {
	left: 0;
	background: linear-gradient(90deg, var(--color-grey-dark), transparent);
}

.rr-players-carousel__viewport::after {
	right: 0;
	background: linear-gradient(270deg, var(--color-grey-dark), transparent);
}

@keyframes rr-players-scroll {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}

.rr-players-carousel__track {
	display: flex;
	gap: 20px;
	width: max-content;
	padding-right: 20px; /* keeps the seam gap equal at the loop point */
}

@media (prefers-reduced-motion: no-preference) {
	.rr-players-carousel__track {
		animation: rr-players-scroll 45s linear infinite;
	}

	.rr-players-carousel__viewport:hover .rr-players-carousel__track,
	.rr-players-carousel__viewport:focus-within .rr-players-carousel__track {
		animation-play-state: paused;
	}
}

/* Static row when the squad is too small to loop */
.rr-players-carousel__row {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
}

/* Player tile */
.rr-player-tile {
	position: relative;
	display: block;
	flex: 0 0 auto;
	width: 240px;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	background:
		radial-gradient(130% 100% at 50% 0%, rgba(232, 25, 44, 0.10), transparent 60%),
		var(--color-navy);
	border: 1px solid var(--glass-border);
	text-decoration: none;
}

.rr-player-tile__media {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.rr-player-tile__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	transition: transform var(--transition-slow);
}

.rr-player-tile:hover .rr-player-tile__img {
	transform: scale(1.05);
}

.rr-player-tile__silhouette {
	width: 78%;
	height: auto;
	margin-bottom: 0;
	opacity: 0.9;
	transition: transform var(--transition-slow);
}

.rr-player-tile:hover .rr-player-tile__silhouette {
	transform: translateY(-4px);
}

.rr-player-tile__number {
	position: absolute;
	top: 8px;
	right: 14px;
	font-family: var(--font-display);
	font-size: 3.25rem;
	line-height: 1;
	color: rgba(255, 255, 255, 0.14);
	z-index: 1;
}

.rr-player-tile__base {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 3rem 16px 14px;
	background: linear-gradient(180deg, transparent, rgba(11, 17, 32, 0.92) 70%);
	display: flex;
	flex-direction: column;
	gap: 2px;
	z-index: 1;
}

.rr-player-tile__name {
	font-family: var(--font-display);
	font-size: 1.375rem;
	line-height: 1;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: var(--color-white);
}

.rr-player-tile__position {
	font-family: var(--font-body);
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--color-grey-muted);
}

/* Placeholder tiles shown until real players are published */
.rr-player-tile--placeholder .rr-player-tile__silhouette {
	opacity: 0.55;
}

.rr-player-tile--placeholder .rr-player-tile__name {
	color: var(--color-grey-muted);
}

@media (max-width: 560px) {
	.rr-player-tile { width: 200px; }
}

/* ═══════════════════════════════════════════════════════════════════
   COMMUNITY CTA (homepage section 4)
   ═══════════════════════════════════════════════════════════════════ */

.rr-community-cta {
	background: var(--color-red);
	padding-block: 80px;
	text-align: center;
}

.rr-community-cta__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}

.rr-community-cta__title {
	color: var(--color-navy);
	margin: 0;
}

.rr-community-cta__body {
	font-size: 18px;
	color: rgba(11,17,32,0.75);
	max-width: 480px;
	margin: 0;
}

/* Navy-border variant for use on red background */
.btn-secondary--navy {
	border-color: var(--color-navy);
	color: var(--color-navy);
}

.btn-secondary--navy:hover {
	background: var(--color-navy);
	color: var(--color-white);
}

/* ═══════════════════════════════════════════════════════════════════
   SPONSOR BAR (homepage section 5)
   ═══════════════════════════════════════════════════════════════════ */

.rr-sponsor-bar {
	background: var(--color-navy);
	padding-block: 48px;
	border-top: 1px solid rgba(255,255,255,0.06);
}

.rr-sponsor-bar__eyebrow {
	text-align: center;
	margin-bottom: 32px;
}

/* Static grid layout (≤6 sponsors) */
.rr-sponsor-bar__grid {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 32px 48px;
}

/* Marquee layout (>6 sponsors) */
.rr-sponsor-bar__viewport {
	overflow: hidden;
	position: relative;
}

.rr-sponsor-bar__viewport::before,
.rr-sponsor-bar__viewport::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 80px;
	z-index: 1;
	pointer-events: none;
}

.rr-sponsor-bar__viewport::before {
	left: 0;
	background: linear-gradient(to right, var(--color-navy) 0%, transparent 100%);
}

.rr-sponsor-bar__viewport::after {
	right: 0;
	background: linear-gradient(to left, var(--color-navy) 0%, transparent 100%);
}

@keyframes rr-sponsor-scroll {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}

.rr-sponsor-bar__track {
	display: flex;
	align-items: center;
	gap: 56px;
	width: max-content;
	padding-block: 8px;
}

@media (prefers-reduced-motion: no-preference) {
	.rr-sponsor-bar__track {
		animation: rr-sponsor-scroll 35s linear infinite;
	}
}

.rr-sponsor-bar__viewport:hover .rr-sponsor-bar__track {
	animation-play-state: paused;
}

/* Individual logo items */
.rr-sponsor-item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	flex-shrink: 0;
}

.rr-sponsor-logo {
	max-height: 48px;
	max-width: 160px;
	width: auto;
	object-fit: contain;
	filter: grayscale(1) brightness(0.65);
	opacity: 0.65;
	transition: filter 0.3s ease, opacity 0.3s ease;
}

.rr-sponsor-item:hover .rr-sponsor-logo,
.rr-sponsor-bar__grid .rr-sponsor-item:hover .rr-sponsor-logo {
	filter: grayscale(0) brightness(1);
	opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════════
   FOUNDATION STRIP (homepage section 6)
   ═══════════════════════════════════════════════════════════════════ */

.rr-foundation-strip {
	background: var(--color-navy);
	border-top: 1px solid rgba(255,255,255,0.06);
	padding-block: 28px;
}

.rr-foundation-strip__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}

.rr-foundation-strip__text {
	font-size: 14px;
	color: var(--color-grey-muted);
	margin: 0;
	max-width: 680px;
	line-height: 1.6;
}

.rr-foundation-strip__link {
	font-size: 13px;
	white-space: nowrap;
	flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   CATEGORY EYEBROW COLOUR MODIFIERS
   ═══════════════════════════════════════════════════════════════════ */

.eyebrow--red    { color: var(--color-red); }
.eyebrow--gold   { color: var(--color-gold); }
.eyebrow--white  { color: var(--color-white); }

/* ═══════════════════════════════════════════════════════════════════
   READING PROGRESS BAR
   ═══════════════════════════════════════════════════════════════════ */

.rr-reading-progress {
	position: fixed;
	top: 0;
	left: 0;
	width: 0;
	height: 3px;
	background: var(--color-red);
	z-index: 9999;
	transition: width 0.1s linear;
	pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════════
   SINGLE POST — HERO
   ═══════════════════════════════════════════════════════════════════ */

.rr-post-hero {
	position: relative;
	height: 480px;
	overflow: hidden;
	display: flex;
	align-items: flex-end;
}

.rr-post-hero__bg {
	position: absolute;
	inset: -80px 0 -80px 0;
	background-size: cover;
	background-position: center;
	will-change: transform;
}

.rr-post-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(11,17,32,0.96) 0%,
		rgba(11,17,32,0.7)  35%,
		rgba(11,17,32,0.1)  60%,
		transparent         100%
	);
}

.rr-post-hero__content {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 860px;
	margin: 0 auto;
	padding: 40px 1.5rem 48px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

@media (min-width: 1024px) {
	.rr-post-hero__content { padding-inline: 2.5rem; }
}

.rr-post-hero__cat {
	align-self: flex-start;
	text-decoration: none;
	font-size: 11px;
}

.rr-post-hero__title {
	margin: 0;
	color: var(--color-white);
	font-size: clamp(32px, 5vw, 56px);
	line-height: 1.05;
}

.rr-post-hero__date {
	font-size: 13px;
	color: rgba(255,255,255,0.55);
	letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════════════════════════
   SINGLE POST — AUTHOR BYLINE
   ═══════════════════════════════════════════════════════════════════ */

.rr-post-byline {
	display: flex;
	align-items: center;
	gap: 14px;
	padding-block: 28px;
	border-bottom: 1px solid rgba(255,255,255,0.08);
	margin-bottom: 32px;
}

.rr-post-byline__avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.rr-post-byline__meta {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.rr-post-byline__name {
	font-weight: 700;
	font-size: 15px;
	color: var(--color-white);
	text-decoration: none;
}

.rr-post-byline__name:hover { color: var(--color-red); }

.rr-post-byline__role {
	font-size: 12px;
	color: var(--color-grey-muted);
	letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════════════════════════
   SINGLE POST — MATCH REPORT BLOCK
   ═══════════════════════════════════════════════════════════════════ */

.rr-match-report-block {
	border-left: 3px solid rgba(255,255,255,0.15);
	background: var(--color-grey-dark);
	padding: 20px 24px;
	margin-bottom: 36px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.rr-match-report-block--win  { border-left-color: var(--color-gold); }
.rr-match-report-block--loss { border-left-color: var(--color-red);  }
.rr-match-report-block--draw { border-left-color: rgba(255,255,255,0.4); }

.rr-match-report-block__meta {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.rr-match-report-block__comp { font-size: 11px; }
.rr-match-report-block__date { font-size: 12px; color: var(--color-grey-muted); }

.rr-pill {
	display: inline-flex;
	align-items: center;
	padding: 2px 8px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.rr-pill--home {
	background: rgba(232,25,44,0.15);
	color: var(--color-red);
	border: 1px solid rgba(232,25,44,0.35);
}

.rr-pill--away {
	background: rgba(255,255,255,0.06);
	color: var(--color-grey-muted);
	border: 1px solid rgba(255,255,255,0.15);
}

.rr-match-report-block__scoreline {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 16px;
}

.rr-match-report-block__team {
	font-weight: 700;
	font-size: 16px;
	color: var(--color-white);
}

.rr-match-report-block__team--away { text-align: right; }

.rr-match-report-block__score {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 28px;
	letter-spacing: 0.06em;
	color: var(--color-white);
	text-align: center;
}

.rr-match-report-block__result { display: flex; }

/* ═══════════════════════════════════════════════════════════════════
   SINGLE POST — CONTENT BODY
   ═══════════════════════════════════════════════════════════════════ */

.rr-post-content {
	max-width: 720px;
	margin-inline: auto;
	font-size: 18px;
	line-height: 1.7;
	color: rgba(255,255,255,0.88);
	padding-bottom: 48px;
}

.rr-post-content p { margin: 0 0 1.4em; }

.rr-post-content h2,
.rr-post-content h3,
.rr-post-content h4 {
	font-family: 'Bebas Neue', sans-serif;
	color: var(--color-white);
	margin: 1.8em 0 0.5em;
	line-height: 1.05;
	letter-spacing: 0.03em;
}

.rr-post-content h2 { font-size: clamp(26px, 4vw, 36px); }
.rr-post-content h3 { font-size: clamp(22px, 3vw, 28px); }
.rr-post-content h4 { font-size: 20px; }

.rr-post-content blockquote {
	border-left: 3px solid var(--color-red);
	margin: 1.6em 0;
	padding: 8px 0 8px 24px;
	font-style: italic;
	color: rgba(255,255,255,0.7);
}

.rr-post-content blockquote p { margin: 0; }

.rr-post-content ul,
.rr-post-content ol {
	margin: 0 0 1.4em 1.2em;
	padding: 0;
}

.rr-post-content li { margin-bottom: 0.4em; }

.rr-post-content a {
	color: var(--color-red);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.rr-post-content a:hover { color: var(--color-white); }

.rr-post-content img {
	max-width: 100%;
	height: auto;
	display: block;
	border-radius: 4px;
	margin-block: 1.6em;
}

.rr-post-content figcaption {
	font-size: 13px;
	color: var(--color-grey-muted);
	text-align: center;
	margin-top: 8px;
	font-style: italic;
}

.rr-post-content .alignwide {
	max-width: calc(720px + 120px);
	margin-inline: -60px;
}

.rr-post-content .alignfull {
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	width: 100vw;
}

/* ═══════════════════════════════════════════════════════════════════
   SINGLE POST — SHARE ROW
   ═══════════════════════════════════════════════════════════════════ */

.rr-post-share {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-block: 32px;
	border-top: 1px solid rgba(255,255,255,0.08);
	margin-top: 8px;
	max-width: 720px;
	margin-inline: auto;
}

.rr-post-share__label { margin-right: 4px; }

.rr-share-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: 6px;
	color: rgba(255,255,255,0.65);
	cursor: pointer;
	text-decoration: none;
	transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.rr-share-btn:hover {
	color: var(--color-red);
	background: rgba(232,25,44,0.08);
	border-color: rgba(232,25,44,0.3);
}

/* ═══════════════════════════════════════════════════════════════════
   SINGLE POST — RELATED POSTS
   ═══════════════════════════════════════════════════════════════════ */

.rr-post-related {
	background: var(--color-grey-dark);
	padding-block: 64px;
}

.rr-post-related__title {
	font-family: 'Bebas Neue', sans-serif;
	font-size: clamp(24px, 3vw, 32px);
	letter-spacing: 0.04em;
	color: var(--color-white);
	margin: 0 0 32px;
}

/* ═══════════════════════════════════════════════════════════════════
   NEWS ARCHIVE — PAGE HEADER
   ═══════════════════════════════════════════════════════════════════ */

.rr-news-archive-header {
	background: var(--color-navy);
	padding-block: 64px 40px;
	border-bottom: 1px solid rgba(255,255,255,0.06);
}

.rr-news-archive-header .eyebrow { margin-bottom: 8px; }

.rr-news-archive-header__title {
	margin: 0;
	color: var(--color-white);
}

/* ═══════════════════════════════════════════════════════════════════
   NEWS ARCHIVE — FILTER TABS + GRID
   ═══════════════════════════════════════════════════════════════════ */

.rr-news-filter { margin-block: 36px 32px; }

.rr-news-archive__grid { padding-bottom: 64px; }

/* ═══════════════════════════════════════════════════════════════════
   PAGINATION
   ═══════════════════════════════════════════════════════════════════ */

.rr-pagination {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 6px;
	padding-block: 40px 64px;
}

.rr-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: 4px;
	font-size: 14px;
	font-weight: 600;
	color: rgba(255,255,255,0.7);
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.rr-pagination .page-numbers:hover {
	background: rgba(232,25,44,0.1);
	border-color: rgba(232,25,44,0.35);
	color: var(--color-white);
}

.rr-pagination .page-numbers.current {
	background: var(--color-red);
	border-color: var(--color-red);
	color: var(--color-white);
}

.rr-pagination .page-numbers.dots {
	background: transparent;
	border-color: transparent;
	color: var(--color-grey-muted);
	pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════════
   TICKETS PAGE — HERO
   ═══════════════════════════════════════════════════════════════════ */

.rr-ticket-hero {
	position: relative;
	min-height: 560px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	text-align: center;
}

.rr-ticket-hero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center 40%;
}

.rr-ticket-hero__overlay {
	position: absolute;
	inset: 0;
	background: rgba(11,17,32,0.72);
}

.rr-ticket-hero__content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	padding: 100px 1.5rem 100px;
	max-width: 700px;
}

.rr-ticket-hero__title {
	color: var(--color-white);
	margin: 0;
}

.rr-ticket-hero__sub {
	font-size: 17px;
	color: rgba(255,255,255,0.78);
	margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   TICKETS PAGE — SEASON TICKET TIERS
   ═══════════════════════════════════════════════════════════════════ */

.rr-ticket-tiers-section {
	background: var(--color-navy);
}

.rr-ticket-tiers {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	align-items: stretch;
}

@media (max-width: 860px) {
	.rr-ticket-tiers { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
}

.rr-ticket-tier {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 28px 24px;
	position: relative;
	border: 1px solid rgba(255,255,255,0.08);
}

/* Featured tile: gold border */
.rr-ticket-tier--featured {
	border-color: var(--color-gold);
}

.rr-ticket-tier__badge {
	position: absolute;
	top: -1px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--color-gold);
	color: var(--color-navy);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 3px 12px;
	white-space: nowrap;
}

.rr-ticket-tier__name { font-size: 11px; }

.rr-ticket-tier__price {
	font-family: 'Bebas Neue', sans-serif;
	font-size: clamp(36px, 5vw, 52px);
	color: var(--color-gold);
	line-height: 1;
	letter-spacing: 0.02em;
}

.rr-ticket-tier__benefits {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
}

.rr-ticket-tier__benefit {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14px;
	color: rgba(255,255,255,0.85);
	line-height: 1.4;
}

.rr-tick { flex-shrink: 0; margin-top: 2px; }

.rr-ticket-tier__cta { margin-top: auto; text-align: center; }

/* ═══════════════════════════════════════════════════════════════════
   TICKETS PAGE — VENUE
   ═══════════════════════════════════════════════════════════════════ */

.rr-venue-section { background: var(--color-grey-dark); }

.rr-venue-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: start;
}

@media (max-width: 768px) {
	.rr-venue-grid { grid-template-columns: 1fr; }
}

.rr-venue-map__iframe {
	width: 100%;
	height: 380px;
	border: none;
	border-radius: 4px;
	filter: brightness(0.85) contrast(1.1);
}

.rr-venue-info {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.rr-venue-info__block {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.rr-venue-info__label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--color-gold);
	margin: 0;
}

.rr-venue-info__text {
	font-size: 14px;
	color: rgba(255,255,255,0.75);
	line-height: 1.6;
	margin: 0;
}

.rr-venue-info__placeholder {
	font-size: 14px;
	color: var(--color-grey-muted);
	font-style: italic;
}

/* ═══════════════════════════════════════════════════════════════════
   TICKETS PAGE — FAQ ACCORDION
   ═══════════════════════════════════════════════════════════════════ */

.rr-faq-section { background: var(--color-navy); }

.rr-faq-container { max-width: 760px; }

.rr-accordion {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.rr-accordion-item {
	border-bottom: 1px solid rgba(255,255,255,0.08);
}

.rr-accordion-item:first-child {
	border-top: 1px solid rgba(255,255,255,0.08);
}

.rr-accordion-btn {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 0;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	color: var(--color-white);
}

.rr-accordion-btn:hover .rr-accordion-question { color: var(--color-gold); }

.rr-accordion-question {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
	transition: color 0.2s ease;
}

.rr-accordion-chevron {
	flex-shrink: 0;
	color: var(--color-gold);
	transition: transform 0.3s ease;
}

.rr-accordion-btn[aria-expanded="true"] .rr-accordion-chevron {
	transform: rotate(180deg);
}

.rr-accordion-body {
	/* max-height controlled inline by JS */
	transition: max-height 0.3s ease;
	overflow: hidden;
}

.rr-accordion-body-inner {
	padding: 0 0 20px;
	font-size: 15px;
	color: var(--color-grey-muted);
	line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════════
   SPONSORS PAGE — HERO
   ═══════════════════════════════════════════════════════════════════ */

.rr-sponsors-hero {
	position: relative;
	min-height: 520px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	text-align: center;
}

.rr-sponsors-hero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
}

.rr-sponsors-hero__overlay {
	position: absolute;
	inset: 0;
	background: rgba(11,17,32,0.75);
}

.rr-sponsors-hero__content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	padding: 100px 1.5rem 100px;
	max-width: 700px;
}

.rr-sponsors-hero__title {
	color: var(--color-white);
	margin: 0;
}

.rr-sponsors-hero__sub {
	font-size: 18px;
	color: rgba(255,255,255,0.78);
	margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   SPONSORS PAGE — TIER GRID
   ═══════════════════════════════════════════════════════════════════ */

.rr-sponsor-tiers-section { background: var(--color-navy); }

.rr-sponsor-tiers {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	align-items: stretch;
}

@media (max-width: 860px) {
	.rr-sponsor-tiers { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
}

.rr-sponsor-tier {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 28px 24px;
	border: 1px solid rgba(255,255,255,0.08);
}

/* Top tier: red left border */
.rr-sponsor-tier--top {
	border-left: 3px solid var(--color-red);
}

.rr-sponsor-tier__name { font-size: 11px; }

.rr-sponsor-tier__price {
	font-family: 'Bebas Neue', sans-serif;
	font-size: clamp(28px, 4vw, 40px);
	color: var(--color-white);
	line-height: 1.1;
	letter-spacing: 0.02em;
}

.rr-sponsor-tier__benefits { flex: 1; }

.rr-sponsor-tier__cta { margin-top: auto; }

/* ═══════════════════════════════════════════════════════════════════
   SPONSORS PAGE — LOGO GRID
   ═══════════════════════════════════════════════════════════════════ */

.rr-sponsors-page-logos {
	border-top: 1px solid rgba(255,255,255,0.06);
}

/* ═══════════════════════════════════════════════════════════════════
   SPONSORS PAGE — CONTACT CTA STRIP
   ═══════════════════════════════════════════════════════════════════ */

.rr-sponsors-contact {
	background: var(--color-red);
	padding-block: 72px;
}

.rr-sponsors-contact__inner {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 32px;
}

@media (max-width: 768px) {
	.rr-sponsors-contact__inner {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.rr-sponsors-contact__ctas { justify-content: center; }
}

.rr-sponsors-contact__title {
	color: var(--color-navy);
	margin: 0 0 8px;
}

.rr-sponsors-contact__sub {
	color: rgba(11,17,32,0.75);
	font-size: 16px;
	margin: 0;
}

.rr-sponsors-contact__ctas {
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: flex-end;
}

.rr-sponsors-contact__phone {
	font-size: 14px;
	color: var(--color-navy);
	text-decoration: none;
	opacity: 0.75;
}

.rr-sponsors-contact__phone:hover { opacity: 1; }

/* ═══════════════════════════════════════════════════════════════════
   COOKIE CONSENT BANNER
   ═══════════════════════════════════════════════════════════════════ */

.rr-cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 10000;
	background: var(--color-navy);
	border-top: 1px solid rgba(255,255,255,0.1);
	transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
	height: 48px;
}

.rr-cookie-banner__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 0 max(1.5rem, calc(50% - 600px));
	height: 48px;
}

.rr-cookie-banner__text {
	font-size: 13px;
	color: rgba(255,255,255,0.8);
	margin: 0;
	line-height: 1.4;
}

.rr-cookie-banner__link {
	color: var(--color-gold);
	text-underline-offset: 2px;
}

.rr-cookie-banner__actions {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
}

/* Smaller buttons for the slim banner */
.rr-cookie-btn.btn-primary,
.rr-cookie-btn.btn-ghost {
	padding: 6px 14px;
	font-size: 12px;
	min-height: 32px;
}

@media (max-width: 720px) {
	.rr-cookie-banner {
		height: auto;
		min-height: 48px;
	}

	.rr-cookie-banner__inner {
		height: auto;
		min-height: 48px;
		padding: 10px 1rem;
		flex-wrap: wrap;
	}
}

/* ═══════════════════════════════════════════════════════════════════
   ACCESSIBILITY — SKIP-TO-CONTENT LINK
   ═══════════════════════════════════════════════════════════════════ */

.rr-skip-link {
	position: absolute;
	top: -100%;
	left: 0;
	z-index: 99999;
	padding: 12px 24px;
	background: var(--color-red);
	color: var(--color-white);
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
	transition: top 0.15s;
}

.rr-skip-link:focus {
	top: 0;
	outline: 3px solid var(--color-gold);
	outline-offset: 2px;
}

/* ═══════════════════════════════════════════════════════════════════
   404 PAGE — HERO + CSS BASKETBALL GRAPHIC
   ═══════════════════════════════════════════════════════════════════

   Colour contrast audit (WCAG 2.1):
   — navy  #0B1120 + white #FFFFFF : contrast ratio 18.1:1 — AAA pass
   — red   #E8192C + white #FFFFFF : contrast ratio 4.6:1  — AA pass (fails AAA)
   — gold  #F5A623 + navy  #0B1120 : contrast ratio 8.2:1  — AA large pass

   ═══════════════════════════════════════════════════════════════════ */

.rr-404-hero {
	position: relative;
	background: var(--color-navy);
	min-height: 520px;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.rr-404-hero__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
	text-align: center;
	padding-block: 100px 80px;
}

.rr-404-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}

.rr-404-code {
	font-family: 'Bebas Neue', sans-serif;
	font-size: clamp(11px, 1.5vw, 13px);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--color-red);
	margin: 0;
}

.rr-404-headline { margin: 0; }

.rr-404-sub {
	font-size: 18px;
	color: rgba(255,255,255,0.65);
	margin: 0;
}

/* ── Pure CSS basketball (aria-hidden) ───────────────────────────── */

.rr-basketball {
	position: relative;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	border: 3px solid var(--color-red);
	flex-shrink: 0;
}

/* Inner concentric ring */
.rr-bb-ring {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 2px solid rgba(232,25,44,0.3);
}

/* Horizontal equator seam */
.rr-bb-seam-h {
	position: absolute;
	top: calc(50% - 1.5px);
	left: 0;
	right: 0;
	height: 3px;
	background: var(--color-red);
}

/* Vertical center seam */
.rr-bb-seam-v {
	position: absolute;
	top: 0;
	bottom: 0;
	left: calc(50% - 1.5px);
	width: 3px;
	background: var(--color-red);
}

/* Curved arc seam — an ellipse with top+bottom borders transparent
   reveals the two symmetric left/right arcs that mimic basketball seams */
.rr-bb-arc {
	position: absolute;
	top: 5%;
	left: 27%;
	width: 46%;
	height: 90%;
	border-radius: 50%;
	border: 2.5px solid var(--color-red);
	border-top-color: transparent;
	border-bottom-color: transparent;
}

/* ── 404 link tiles ──────────────────────────────────────────────── */

.rr-404-links {
	background: var(--color-grey-dark);
	padding-block: 64px;
}

.rr-404-tiles {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

@media (max-width: 640px) {
	.rr-404-tiles { grid-template-columns: 1fr; }
}

.rr-404-tile {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 24px 20px;
	background: var(--color-navy);
	border: 1px solid rgba(255,255,255,0.07);
	text-decoration: none;
	transition: border-color 0.2s ease, transform 0.15s ease;
}

.rr-404-tile:hover {
	border-color: var(--color-red);
	transform: translateY(-2px);
}

.rr-404-tile__label {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 22px;
	letter-spacing: 0.04em;
	color: var(--color-white);
}

.rr-404-tile__sub {
	font-size: 13px;
	color: var(--color-grey-muted);
}

/* ═══════════════════════════════════════════════════════════════════
   REDUCED MOTION — disable all animations for users who prefer it
   ═══════════════════════════════════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {

	/* Ticker / sponsor / players marquees — stop scrolling, show static */
	.rr-ticker__track,
	.rr-sponsor-bar__track,
	.rr-players-carousel__track {
		animation: none;
	}

	/* Scroll indicator — hide it (it only exists to catch the eye) */
	.rr-scroll-indicator {
		display: none;
	}

	/* Hero word-stagger reveal — show all words immediately */
	.rr-hero-word {
		opacity: 1;
		transform: none;
		transition: none;
	}

	/* General: kill transitions that move elements */
	.rr-accordion-chevron,
	.rr-cookie-banner,
	.rr-404-tile,
	.glass-card {
		transition: none;
	}

	/* Reading progress bar — stop smooth width transitions */
	.rr-reading-progress {
		transition: none;
	}

}

/* ═══════════════════════════════════════════════════════════════════
   LIVE SCORE BAR (game-day mode)
   Renders via wp_body_open, sits above the sticky header in DOM order.
   Controlled entirely by gameday_mode ACF field on the homepage object.
   ═══════════════════════════════════════════════════════════════════ */

.rr-live-bar {
	background: var(--color-red);
	height: 64px;
	display: flex;
	align-items: center;
	position: relative;
	z-index: 200; /* above header z-index */
	width: 100%;
}

.rr-live-bar__inner {
	display: flex;
	align-items: center;
	gap: 20px;
	width: 100%;
	padding-inline: max(1.5rem, calc(50% - 640px));
}

/* ── LIVE pill ─────────────────────────────────────────────────── */

.rr-live-pill {
	flex-shrink: 0;
	background: var(--color-white);
	color: var(--color-red);
	font-family: 'Inter', sans-serif;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	padding: 3px 9px;
	border-radius: 3px;
}

@media (prefers-reduced-motion: no-preference) {
	.rr-live-pill {
		animation: rr-live-pulse 1.5s ease-in-out infinite;
	}
}

@keyframes rr-live-pulse {
	0%, 100% { box-shadow: 0 0 0 0 rgba(232, 25, 44, 0); }
	50%       { box-shadow: 0 0 0 7px rgba(232, 25, 44, 0.55); }
}

/* ── Scores block ─────────────────────────────────────────────── */

.rr-live-bar__scores {
	display: flex;
	align-items: center;
	gap: 14px;
	flex: 1;
	justify-content: center;
}

.rr-live-team {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.8);
	white-space: nowrap;
}

@media (max-width: 600px) {
	.rr-live-team { display: none; }
}

.rr-live-score {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 48px;
	line-height: 1;
	color: var(--color-white);
	letter-spacing: 0.02em;
	/* vertically centre the tall number within the 64px bar */
	display: flex;
	align-items: center;
}

.rr-live-bar__vs {
	font-size: 12px;
	font-style: italic;
	color: rgba(255, 255, 255, 0.55);
}

/* ── Quarter badge ─────────────────────────────────────────────── */

.rr-live-quarter {
	flex-shrink: 0;
	background: rgba(0, 0, 0, 0.25);
	color: var(--color-white);
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: 2px;
}

/* ── Last-updated label ────────────────────────────────────────── */

.rr-live-updated {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.55);
	white-space: nowrap;
	margin-left: auto;
}

@media (max-width: 480px) {
	.rr-live-updated { display: none; }
}

/* ── Manual refresh button ─────────────────────────────────────── */

.rr-live-refresh {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: none;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 3px;
	color: var(--color-white);
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease;
}

.rr-live-refresh:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.65);
}

.rr-live-refresh:focus-visible {
	outline: 2px solid var(--color-gold);
	outline-offset: 2px;
}

/* ── Reduced motion — kill the pulse ──────────────────────────── */

@media (prefers-reduced-motion: reduce) {
	.rr-live-pill {
		animation: none;
	}
}

/* ═══════════════════════════════════════════════════════════════════
   BUSINESS CLUB ENQUIRY FORM  ([rr_business_form])
   ═══════════════════════════════════════════════════════════════════ */

.rr-enquiry {
	max-width: 640px;
	margin: 2rem auto 0;
	scroll-margin-top: calc(var(--header-height) + 1rem);
}

.rr-enquiry__form {
	background: var(--color-grey-dark);
	border: 1px solid var(--glass-border);
	border-radius: 10px;
	padding: clamp(1.5rem, 4vw, 2.5rem);
	box-shadow: var(--shadow-card);
}

.rr-enquiry__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem 1.25rem;
}

@media (max-width: 560px) {
	.rr-enquiry__grid { grid-template-columns: 1fr; }
}

.rr-enquiry__field {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.rr-enquiry__field--full { grid-column: 1 / -1; }

.rr-enquiry__field label {
	font-family: var(--font-body);
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.01em;
	color: var(--color-white);
}

.rr-enquiry__req { color: var(--color-red); }
.rr-enquiry__opt { color: var(--color-grey-muted); font-weight: 400; }

.rr-enquiry__field input,
.rr-enquiry__field select,
.rr-enquiry__field textarea {
	width: 100%;
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.4;
	color: var(--color-white);
	background: var(--color-navy);
	border: 1px solid var(--color-grey-mid);
	border-radius: 6px;
	padding: 0.7rem 0.85rem;
	transition: border-color var(--transition-standard),
	            box-shadow var(--transition-standard);
	-webkit-appearance: none;
	appearance: none;
}

.rr-enquiry__field textarea {
	resize: vertical;
	min-height: 104px;
}

.rr-enquiry__field input::placeholder,
.rr-enquiry__field textarea::placeholder { color: var(--color-grey-muted); }

.rr-enquiry__field input:focus,
.rr-enquiry__field select:focus,
.rr-enquiry__field textarea:focus {
	outline: none;
	border-color: var(--color-gold);
	box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.25);
}

/* Native select chevron (colour = --color-grey-muted) */
.rr-enquiry__field select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238A93A8' d='M6 8 0 2l1.4-1.4L6 5.2 10.6.6 12 2z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.9rem center;
	padding-right: 2.2rem;
	cursor: pointer;
}

.rr-enquiry__submit {
	margin-top: 1.5rem;
	width: 100%;
	padding: 14px 28px;
	font-size: 1rem;
}

.rr-enquiry__note {
	margin: 0.85rem 0 0;
	text-align: center;
	font-size: 0.8125rem;
	color: var(--color-grey-muted);
}

/* Honeypot — pulled off-screen rather than display:none (bots skip hidden) */
.rr-enquiry__hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* Status banners */
.rr-enquiry__alert {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	margin-bottom: 1.25rem;
	padding: 1rem 1.15rem;
	border: 1px solid transparent;
	border-radius: 10px;
	font-family: var(--font-body);
	font-size: 0.9375rem;
	line-height: 1.5;
}

.rr-enquiry__alert--ok {
	background: rgba(46, 160, 87, 0.12);
	border-color: rgba(46, 160, 87, 0.45);
	color: #d7f5e0;
}

.rr-enquiry__alert--err {
	background: rgba(232, 25, 44, 0.10);
	border-color: rgba(232, 25, 44, 0.45);
	color: #ffd9dd;
}

.rr-enquiry__alert a { color: inherit; text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════════════
   SEASON TICKETS PAGE  ([rr_season_tickets_page])
   ═══════════════════════════════════════════════════════════════════ */

/* ── Hero (no photo — navy + subtle red glow) ── */
.rr-season-hero {
	position: relative;
	background: var(--color-navy);
	overflow: hidden;
	text-align: center;
}

.rr-season-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 60% 45% at 50% 0%, rgba(232,25,44,0.22) 0%, transparent 70%);
	pointer-events: none;
}

.rr-season-hero__content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	padding: 120px 1.5rem 100px;
	max-width: 700px;
	margin-inline: auto;
}

.rr-season-hero__sub {
	font-size: 17px;
	color: rgba(255,255,255,0.78);
	margin: 0;
	max-width: 520px;
}

/* ── Pricing grid ── */
.rr-season-pricing-section { background: var(--color-navy); }

.rr-season-pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
	gap: 20px;
}

.rr-season-price-card {
	padding: 28px 20px;
	text-align: center;
	position: relative;
}

.rr-season-price-card--featured { border-color: var(--color-gold); }

.rr-season-price-card__badge {
	position: absolute;
	top: -1px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--color-gold);
	color: var(--color-navy);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 3px 12px;
	white-space: nowrap;
}

.rr-season-price-card__name { font-size: 11px; margin-bottom: 0.5rem; }

.rr-season-price-card__amount {
	font-family: var(--font-display);
	font-size: clamp(32px, 5vw, 44px);
	color: var(--color-gold);
	line-height: 1;
	letter-spacing: 0.02em;
	margin: 0;
}

.rr-season-price-card__note {
	font-size: 13px;
	color: var(--color-grey-muted);
	margin: 8px 0 0;
}

/* ── Access strip ── */
.rr-season-access-strip {
	background: var(--color-red);
	padding: 32px 1.5rem;
	text-align: center;
}

.rr-season-access-strip p {
	font-family: var(--font-display);
	font-size: clamp(16px, 3vw, 22px);
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--color-white);
	line-height: 1.4;
	margin: 0;
}

.rr-season-access-strip strong { color: var(--color-gold); }

/* ── Benefits grid ── */
.rr-season-benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 16px;
}

.rr-season-benefit {
	padding: 28px 24px;
	display: flex;
	gap: 18px;
	align-items: flex-start;
}

.rr-season-benefit__icon {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: linear-gradient(135deg, #ff5060, var(--color-red) 55%, #b3121f);
	box-shadow: 0 8px 22px rgba(232, 25, 44, 0.32),
	            inset 0 1px 0 rgba(255, 255, 255, 0.28);
	color: var(--color-white);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.rr-season-benefit__icon svg {
	width: 22px;
	height: 22px;
}

.rr-season-benefit:hover .rr-season-benefit__icon {
	transform: translateY(-2px) scale(1.06);
	box-shadow: 0 12px 28px rgba(232, 25, 44, 0.45),
	            inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.rr-season-benefit__heading {
	font-family: var(--font-display);
	font-size: 1.05rem;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	margin: 0 0 6px;
	color: var(--color-white);
}

.rr-season-benefit__text {
	font-size: 14px;
	color: var(--color-grey-muted);
	line-height: 1.55;
	margin: 0;
}

/* ── Sign-up / JotForm embed ── */
.rr-season-form-section { background: var(--color-grey-dark); }

.rr-season-form-wrap {
	padding: 4px;
}

.rr-season-form-wrap iframe {
	display: block;
	width: 100%;
	min-height: 600px;
}

/* ── Closing CTA ── */
.rr-season-cta {
	background: var(--color-navy);
	padding-bottom: 100px;
	text-align: center;
}

.rr-season-cta__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
	padding-top: 80px;
}

.rr-season-cta__sub {
	color: rgba(255,255,255,0.78);
	font-size: 16px;
	max-width: 440px;
	margin: 0;
}

@media (max-width: 600px) {
	.rr-season-hero__content { padding: 90px 1.25rem 70px; }
	.rr-season-cta__inner    { padding-top: 56px; }
}

/* ═══════════════════════════════════════════════════════════════════
   SIMPLE PROMO PAGE KIT — shared by Business & Tickets sub-pages
   (Club 1997, Start-Up Assist, Order/Group/Family/Wheelchair Tickets,
   Ticket Prices, Livestream). Same visual language as Season Tickets
   (navy + red glow hero, glass-card sections, red closing CTA) so all
   these pages read as one family, without duplicating that page's own
   pricing-grid/benefits-grid specifics.
   ═══════════════════════════════════════════════════════════════════ */

/* ── Hero (no photo — navy + subtle red glow) ── */
.rr-simple-hero {
	position: relative;
	background: var(--color-navy);
	overflow: hidden;
	text-align: center;
}

/* Optional photo background (rr_promo_hero 6th arg) */
.rr-simple-hero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center 30%;
	background-repeat: no-repeat;
}

.rr-simple-hero__img-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(11,17,32,0.55) 0%, rgba(11,17,32,0.65) 55%, rgba(11,17,32,0.9) 100%);
	pointer-events: none;
}

/* Skip the red radial glow when a photo is present */
.rr-simple-hero--has-image::before {
	display: none;
}

.rr-simple-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 60% 45% at 50% 0%, rgba(232,25,44,0.22) 0%, transparent 70%);
	pointer-events: none;
}

.rr-simple-hero__content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	padding: 120px 1.5rem 100px;
	max-width: 700px;
	margin-inline: auto;
}

.rr-simple-hero__sub {
	font-size: 17px;
	color: rgba(255,255,255,0.78);
	margin: 0;
	max-width: 560px;
}

/* ── Section shell (reuses .rr-home-section/.rr-container/.glass-card) ── */
.rr-promo-section-alt { background: var(--color-navy); }

.rr-promo-card {
	padding: 32px clamp(20px, 4vw, 40px);
}

.rr-promo-card + .rr-promo-card { margin-top: 16px; }

/* Small display-font subheading inside a promo card (between price list
   and includes list on the School & Group Bookings page) */
.rr-promo-card__subheading {
	margin: 28px 0 14px;
	font-family: var(--font-display);
	font-size: 1rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--color-gold);
}

/* ── Check-mark list — reuses the red-ring tick already used on the
   Tickets page's season-ticket tiers, generalised for any bullet list ── */
.rr-check-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

/* Block layout with an absolute ring marker — NOT flex: with flex, the
   <strong> intro and the trailing text become separate flex items and
   render as two cramped side-by-side columns on mobile. */
.rr-check-list li {
	position: relative;
	display: block;
	padding-left: 24px;
	font-size: 15px;
	line-height: 1.5;
	color: rgba(255,255,255,0.88);
}

.rr-check-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 4px;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	border: 1px solid var(--color-red);
	background: transparent;
}

/* ── Price list — name/note left, no-wrap price right ── */
.rr-price-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
}

.rr-price-list li {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	padding-block: 14px;
	border-bottom: 1px solid var(--glass-border);
}

.rr-price-list li:first-child { padding-top: 0; }
.rr-price-list li:last-child  { border-bottom: none; padding-bottom: 0; }

.rr-price-list__info {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.rr-price-list__name {
	font-size: 15px;
	font-weight: 700;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.92);
}

.rr-price-list__note {
	font-size: 13px;
	color: var(--color-grey-muted);
}

.rr-price-list__price {
	flex-shrink: 0;
	white-space: nowrap;
	font-family: var(--font-display);
	font-size: 1.375rem;
	line-height: 1;
	letter-spacing: 0.02em;
	color: var(--color-gold);
}

/* ── Content tables (wp:table) — front-end mirror of the editor styles,
      plus mobile hardening: horizontal scroll instead of squeeze ── */
.wp-block-table {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	margin-inline: 0;
}

.wp-block-table table {
	border-collapse: collapse;
	width: 100%;
	min-width: 320px;
}

.wp-block-table th,
.wp-block-table td {
	border: 1px solid var(--color-grey-mid);
	padding: 0.625rem 0.875rem;
	font-size: 0.875rem;
	line-height: 1.5;
	color: var(--color-white);
	text-align: left;
	vertical-align: top;
}

.wp-block-table th {
	background: var(--color-grey-dark);
	font-family: var(--font-display);
	font-weight: 400;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-size: 0.9375rem;
	white-space: nowrap;
}

.wp-block-table tbody tr:nth-child(even) td {
	background: rgba(255, 255, 255, 0.02);
}

@media (max-width: 560px) {
	.wp-block-table th,
	.wp-block-table td {
		padding: 0.5rem 0.625rem;
		font-size: 0.8125rem;
	}
}

/* ── Contact staff cards ── */
.rr-contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 16px;
}

.rr-contact-card {
	display: flex;
	flex-direction: column;
	padding: 28px 24px;
}

.rr-contact-card__name {
	margin: 0 0 10px;
	font-family: var(--font-display);
	font-size: 1.375rem;
	line-height: 1;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--color-white);
}

.rr-contact-card__roles {
	list-style: none;
	margin: 0 0 20px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 14px;
	line-height: 1.5;
	color: var(--color-grey-muted);
}

.rr-contact-card__roles li {
	position: relative;
	padding-left: 16px;
}

.rr-contact-card__roles li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 7px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--color-red);
}

.rr-contact-card__btn {
	margin-top: auto;
	align-self: flex-start;
}

/* ── Closing CTA ── */
.rr-simple-cta {
	background: var(--color-navy);
	padding-bottom: 100px;
	text-align: center;
}

.rr-simple-cta__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
	padding-top: 80px;
}

.rr-simple-cta__sub {
	color: rgba(255,255,255,0.78);
	font-size: 16px;
	max-width: 440px;
	margin: 0;
}

/* ── Placeholder / draft notice ── */
.rr-draft-notice {
	background: rgba(245, 166, 35, 0.12);
	border: 1px solid rgba(245, 166, 35, 0.4);
	border-radius: 8px;
	padding: 14px 18px;
	font-size: 14px;
	color: var(--color-gold);
	margin-bottom: 24px;
}

@media (max-width: 600px) {
	.rr-simple-hero__content { padding: 90px 1.25rem 70px; }
	.rr-simple-cta__inner    { padding-top: 56px; }
}
