@font-face {
	font-family: "Inter";
	font-style: normal;
	font-weight: 400 700;
	font-display: swap;
	src: url("../fonts/inter-latin.woff2") format("woff2");
}

@font-face {
	font-family: "Barlow Condensed";
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url("../fonts/barlow-condensed-600-latin.woff2") format("woff2");
}

@font-face {
	font-family: "Barlow Condensed";
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url("../fonts/barlow-condensed-700-latin.woff2") format("woff2");
}

@font-face {
	font-family: "Barlow Condensed";
	font-style: normal;
	font-weight: 800;
	font-display: swap;
	src: url("../fonts/barlow-condensed-800-latin.woff2") format("woff2");
}

html {
	scroll-behavior: smooth;
}

body.ksr-page {
	margin: 0 !important;
	padding: 0 !important;
}

body.ksr-page .ksr-landing,
body.ksr-page .ksr-landing *,
body.ksr-page .ksr-landing *::before,
body.ksr-page .ksr-landing *::after {
	box-sizing: border-box;
}

body.ksr-page .ksr-landing {
	--estepps-font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
	--estepps-font-heading: "Barlow Condensed", "Arial Narrow", system-ui, sans-serif;
	width: 100%;
	min-height: 100vh;
}

body.ksr-page .ksr-landing img {
	display: block;
	max-width: 100%;
	height: auto;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.estepps-skip-link {
	position: fixed;
	top: 8px;
	left: 8px;
	z-index: 100001;
	padding: 12px 16px;
	background: #ffffff;
	color: #07172b;
	font-family: "Inter", system-ui, sans-serif;
	font-weight: 700;
	text-decoration: none;
	transform: translateY(-160%);
}

.estepps-skip-link:focus {
	transform: translateY(0);
}

.ksr-logo-fallback {
	display: inline-block;
	font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
	font-size: 2rem;
	font-weight: 800;
	line-height: 1;
}

/**
 * Estepp's x Kentucky Sports Radio â€” campaign landing page.
 *
 * Loaded by inc/assets.php on templates/template-ksr.php only. Every selector
 * below is scoped to .ksr-landing or body.ksr-page, so nothing here can reach
 * another page even if the file were ever enqueued more widely.
 *
 * Fonts are the site's existing families (Barlow Condensed / Inter); no new
 * font is loaded. Colours are declared on the wrapper, never on :root, so the
 * global design tokens are untouched.
 *
 *  1. Tokens
 *  2. Page shell & base
 *  3. Shared pieces (buttons, eyebrow, badge)
 *  4. Masthead
 *  5. Hero
 *  6. Honor Flight feature
 *  7. Listener perks
 *  8. Ticker
 *  9. Find your Estepp's
 * 10. Campaign footer
 * 11. Motion preferences
 */

/* ------------------------------------------------------------------ *
 * 1. Tokens
 * ------------------------------------------------------------------ */

.ksr-landing {
	/* Supplied KSR blue, sampled from the logo artwork. */
	--ksr-blue: #1b4694;
	--ksr-blue-deep: #143670;
	--ksr-blue-lift: #2a5cbe;

	--ksr-navy: #07172b;
	--ksr-navy-soft: #0d2340;
	--ksr-black: #0b0b0c;

	--ksr-white: #ffffff;
	--ksr-offwhite: #f4f6f8;
	--ksr-steel: #aab4c3;
	--ksr-steel-light: #d6dde7;

	/* Estepp's gold is the co-brand accent. Estepp's blue sits too close to
	 * KSR royal to read as a second brand, so gold carries the Estepp's
	 * signal instead. */
	--ksr-gold: #f5c518;
	--ksr-gold-deep: #d9ad0f;

	--ksr-ink: #14202e;
	--ksr-ink-soft: #47576b;

	--ksr-shell: 1320px;
	--ksr-gutter: clamp(20px, 5vw, 56px);
	--ksr-section: clamp(56px, 9vw, 132px);

	--ksr-h1: clamp(2.875rem, 1.6rem + 5.6vw, 6.25rem);
	--ksr-h2: clamp(2.125rem, 1.35rem + 3.4vw, 4.25rem);
	--ksr-h3: clamp(1.375rem, 1.2rem + 0.8vw, 1.75rem);
	--ksr-lead: clamp(1.25rem, 1.06rem + 0.85vw, 1.625rem);
	--ksr-body: clamp(1.0625rem, 1.02rem + 0.2vw, 1.1875rem);
	--ksr-util: 0.8125rem;

	--ksr-lh-display: 0.94;
	--ksr-lh-body: 1.62;
	--ksr-radius: 4px;
	--ksr-ease: 220ms cubic-bezier(0.33, 1, 0.68, 1);
}

/* ------------------------------------------------------------------ *
 * 2. Page shell & base
 * ------------------------------------------------------------------ */

body.ksr-page {
	background: var(--ksr-navy);
}

.ksr-landing {
	background: var(--ksr-navy);
	color: var(--ksr-white);
	font-family: var(--estepps-font-body);
	font-size: var(--ksr-body);
	line-height: var(--ksr-lh-body);
	overflow-x: clip;
}

/* Base element rules are wrapped in :where() so they contribute no
 * specificity of their own. Without it, `.ksr-landing p` (0,1,1) silently
 * out-ranks every component class below it (0,1,0) and each per-block margin
 * is dropped on the floor. With it, the component rules win on source order,
 * which is what the cascade is supposed to do here. */
.ksr-landing :where(p) {
	margin: 0 0 1.1em;
}

.ksr-landing :where(p:last-child) {
	margin-bottom: 0;
}

.ksr-landing :where(h1, h2, h3) {
	margin: 0;
	font-family: var(--estepps-font-heading);
	font-weight: 800;
	line-height: var(--ksr-lh-display);
	letter-spacing: -0.005em;
	text-transform: uppercase;
	text-wrap: balance;
}

.ksr-landing :where(ul) {
	margin: 0;
	padding: 0;
	list-style: none;
}

/* main.css carries `li + li { margin-top: 4px }`, which pushed the second and
 * third offer cards 4px down inside their grid row and left the tops ragged.
 * Grid gap handles the spacing here. */
.ksr-landing :where(li) {
	margin: 0;
}

.ksr-landing :where(strong) {
	font-weight: 700;
	color: inherit;
}

/* Gold reads clearly against every dark field on this page; light sections
 * switch to royal blue further down. */
.ksr-landing :focus-visible {
	outline: 3px solid var(--ksr-gold);
	outline-offset: 3px;
	border-radius: 2px;
}

.ksr-shell {
	width: 100%;
	max-width: var(--ksr-shell);
	margin-inline: auto;
	padding-inline: var(--ksr-gutter);
}

.ksr-main {
	display: block;
}

/* ------------------------------------------------------------------ *
 * 3. Shared pieces
 * ------------------------------------------------------------------ */

.ksr-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5em;
	padding: 0.86em 1.6em;
	border: 2px solid transparent;
	border-radius: var(--ksr-radius);
	font-family: var(--estepps-font-heading);
	font-weight: 700;
	font-size: 1.0625rem;
	line-height: 1.1;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
	text-align: center;
	cursor: pointer;
	transition: background-color var(--ksr-ease), color var(--ksr-ease),
		border-color var(--ksr-ease), transform var(--ksr-ease);
}

.ksr-btn--sm {
	padding: 0.66em 1.15em;
	font-size: 1rem;
}

.ksr-btn--lg {
	font-size: 1.1875rem;
	padding: 0.9em 1.9em;
}

.ksr-btn--xl {
	font-size: clamp(1.1875rem, 1.05rem + 0.6vw, 1.4375rem);
	padding: 0.95em 2.4em;
}

.ksr-btn--gold {
	background: var(--ksr-gold);
	border-color: var(--ksr-gold);
	color: var(--ksr-navy);
}

.ksr-btn--gold:hover,
.ksr-btn--gold:focus-visible {
	background: var(--ksr-gold-deep);
	border-color: var(--ksr-gold-deep);
	color: var(--ksr-navy);
	transform: translateY(-2px);
}

.ksr-btn--ghost {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.42);
	color: var(--ksr-white);
}

.ksr-btn--ghost:hover,
.ksr-btn--ghost:focus-visible {
	background: rgba(255, 255, 255, 0.1);
	border-color: var(--ksr-white);
	color: var(--ksr-white);
	transform: translateY(-2px);
}

.ksr-link {
	color: var(--ksr-blue);
	font-family: var(--estepps-font-heading);
	font-size: 1.125rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	text-decoration: none;
	border-bottom: 2px solid var(--ksr-gold);
	padding-bottom: 2px;
	transition: color var(--ksr-ease), border-color var(--ksr-ease);
}

.ksr-link:hover,
.ksr-link:focus-visible {
	color: var(--ksr-blue-lift);
	border-bottom-color: var(--ksr-blue-lift);
}

/* Utility label with a small broadcast dot. */
.ksr-eyebrow {
	display: flex;
	align-items: center;
	gap: 0.7em;
	margin: 0 0 1.1rem;
	font-family: var(--estepps-font-heading);
	font-size: var(--ksr-util);
	font-weight: 700;
	letter-spacing: 0.22em;
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--ksr-gold);
}

.ksr-eyebrow--light {
	color: var(--ksr-gold);
}

.ksr-eyebrow__dot {
	width: 8px;
	height: 8px;
	flex: none;
	border-radius: 50%;
	background: currentColor;
}

.ksr-badge {
	display: inline-block;
	margin: 0 0 1.15rem;
	padding: 0.42em 0.95em;
	background: var(--ksr-blue);
	color: var(--ksr-white);
	font-family: var(--estepps-font-heading);
	font-size: var(--ksr-util);
	font-weight: 700;
	letter-spacing: 0.18em;
	line-height: 1.2;
	text-transform: uppercase;
	border-radius: 2px;
}

.ksr-onair {
	display: inline-flex;
	align-items: center;
	gap: 0.6em;
	margin: 0 0 1.2rem;
	padding: 0.4em 0.9em;
	border: 1px solid rgba(245, 197, 24, 0.5);
	border-radius: 999px;
	background: var(--ksr-navy);
	color: var(--ksr-gold);
	font-family: var(--estepps-font-heading);
	font-size: var(--ksr-util);
	font-weight: 700;
	letter-spacing: 0.2em;
	line-height: 1.2;
	text-transform: uppercase;
}

.ksr-onair__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--ksr-gold);
	animation: ksr-pulse 2.4s ease-in-out infinite;
}

@keyframes ksr-pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.25; }
}

/* ------------------------------------------------------------------ *
 * 4. Masthead
 * ------------------------------------------------------------------ */

.ksr-masthead {
	position: relative;
	z-index: 20;
	background: var(--ksr-black);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ksr-masthead__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	width: 100%;
	max-width: var(--ksr-shell);
	margin-inline: auto;
	padding: 14px var(--ksr-gutter);
}

.ksr-masthead__lockup {
	display: flex;
	align-items: center;
	gap: clamp(12px, 2vw, 22px);
	min-width: 0;
}

/* The Estepp's mark is an inline SVG using currentColor, so it recolours to
 * white for the dark campaign masthead without a second asset. */
.ksr-masthead__estepps {
	display: block;
	color: var(--ksr-white);
	line-height: 0;
	transition: color var(--ksr-ease);
}

.ksr-masthead__estepps:hover {
	color: var(--ksr-gold);
}

.ksr-masthead__estepps svg {
	width: clamp(104px, 12vw, 138px);
	height: auto;
}

.ksr-masthead__x {
	font-family: var(--estepps-font-heading);
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1;
	color: var(--ksr-steel);
}

.ksr-masthead__ksr img {
	width: clamp(74px, 8.5vw, 104px);
	height: auto;
}

.ksr-masthead__cta {
	flex: none;
}

@media (min-width: 900px) {
	.ksr-masthead {
		position: sticky;
		top: 0;
	}
}

@media (max-width: 620px) {
	.ksr-masthead__inner {
		flex-direction: column;
		align-items: stretch;
		gap: 14px;
		padding-block: 16px;
	}

	.ksr-masthead__lockup {
		justify-content: center;
	}

	.ksr-masthead__cta {
		width: 100%;
	}
}

/* ------------------------------------------------------------------ *
 * 5. Hero
 * ------------------------------------------------------------------ */

.ksr-hero {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	background:
		radial-gradient(120% 90% at 78% 8%, rgba(27, 70, 148, 0.62) 0%, rgba(27, 70, 148, 0) 62%),
		linear-gradient(168deg, var(--ksr-navy) 0%, var(--ksr-black) 100%);
	padding-block: clamp(48px, 7vw, 104px) clamp(56px, 8vw, 116px);
}

.ksr-hero__field {
	position: absolute;
	inset: 0;
	z-index: -1;
	pointer-events: none;
}

/* Diagonal broadcast stripes. */
.ksr-hero__stripes {
	position: absolute;
	inset: -20% -10%;
	background: repeating-linear-gradient(
		122deg,
		rgba(255, 255, 255, 0.05) 0 2px,
		rgba(255, 255, 255, 0) 2px 74px
	);
}

/* Halftone dot texture, densest toward the art side. */
.ksr-hero__halftone {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px);
	background-size: 14px 14px;
	-webkit-mask-image: radial-gradient(70% 62% at 88% 30%, #000 0%, transparent 72%);
	mask-image: radial-gradient(70% 62% at 88% 30%, #000 0%, transparent 72%);
	opacity: 0.55;
}

/* Oversized letterform watermark, bleeding off the lower-left corner. */
.ksr-hero__watermark {
	position: absolute;
	left: -0.06em;
	bottom: -0.3em;
	font-family: var(--estepps-font-heading);
	font-size: clamp(14rem, 34vw, 30rem);
	font-weight: 800;
	line-height: 0.72;
	letter-spacing: -0.03em;
	color: rgba(255, 255, 255, 0.032);
	user-select: none;
}

.ksr-hero__inner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: clamp(40px, 6vw, 64px);
	align-items: center;
	width: 100%;
	max-width: var(--ksr-shell);
	margin-inline: auto;
	padding-inline: var(--ksr-gutter);
}

.ksr-hero__title {
	font-size: var(--ksr-h1);
	color: var(--ksr-white);
	max-width: 12ch;
	margin-bottom: 0.42em;
}

.ksr-hero__lead {
	max-width: 30ch;
	margin-bottom: 1.1rem;
	font-family: var(--estepps-font-heading);
	font-size: var(--ksr-lead);
	font-weight: 700;
	line-height: 1.16;
	color: var(--ksr-gold);
}

.ksr-hero__body {
	max-width: 58ch;
	color: var(--ksr-steel-light);
}

.ksr-hero__note {
	max-width: 58ch;
	margin-top: 1.5rem;
	padding-left: 1.15rem;
	border-left: 3px solid var(--ksr-gold);
	color: var(--ksr-white);
	font-weight: 600;
}

.ksr-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: clamp(28px, 3.5vw, 40px);
}

/* --- hero art --- */

.ksr-hero__art {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* A broadcast panel gives the supplied logo an intentional home: its black
 * wordmark bar would otherwise float unanchored on the navy field. The logo
 * itself is placed as supplied, never recoloured. */
.ksr-hero__logo {
	display: block;
	width: min(100%, 520px);
	padding: clamp(22px, 3.4vw, 40px) clamp(22px, 3.4vw, 44px);
	background: linear-gradient(150deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02));
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 6px;
	box-shadow: 0 32px 70px -30px rgba(0, 0, 0, 0.9);
	backdrop-filter: blur(2px);
}

.ksr-hero__logo img {
	width: 100%;
	height: auto;
}

.ksr-hero__wave {
	width: min(100%, 520px);
	height: clamp(46px, 6vw, 74px);
	margin-top: clamp(18px, 2.4vw, 28px);
	color: var(--ksr-blue-lift);
	opacity: 0.85;
}

@media (min-width: 1000px) {
	.ksr-hero__inner {
		grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
		gap: clamp(48px, 5vw, 88px);
	}

	.ksr-hero__art {
		align-items: flex-end;
	}

	/* Keep the hero artwork level. */
	.ksr-hero__logo {
		transform: none;
	}

	.ksr-hero__wave {
		align-self: flex-end;
		transform: none;
	}
}

@media (max-width: 999px) {
	.ksr-hero__art {
		order: -1;
	}

	.ksr-hero__title,
	.ksr-hero__lead {
		max-width: none;
	}
}

/* ------------------------------------------------------------------ *
 * 6. Honor Flight feature
 * ------------------------------------------------------------------ */

.ksr-feature {
	position: relative;
	background: var(--ksr-blue);
	padding-block: var(--ksr-section);
}

.ksr-feature::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px);
	background-size: 16px 16px;
	opacity: 0.4;
	pointer-events: none;
}

.ksr-feature__inner {
	position: relative;
	width: 100%;
	max-width: var(--ksr-shell);
	margin-inline: auto;
	padding-inline: var(--ksr-gutter);
}

.ksr-feature__panel {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: clamp(28px, 4vw, 48px);
	padding: clamp(30px, 4.6vw, 68px);
	background: var(--ksr-offwhite);
	border-radius: 6px;
	box-shadow: 0 40px 90px -40px rgba(0, 0, 0, 0.6);
	color: var(--ksr-ink);
}

.ksr-feature__panel :focus-visible {
	outline-color: var(--ksr-blue);
}

.ksr-feature__title {
	font-size: var(--ksr-h2);
	color: var(--ksr-navy);
	margin-bottom: 0.5em;
	max-width: 16ch;
}

.ksr-feature__lead {
	font-family: var(--estepps-font-heading);
	font-size: var(--ksr-lead);
	font-weight: 600;
	line-height: 1.2;
	color: var(--ksr-blue);
}

.ksr-feature__copy {
	color: var(--ksr-ink-soft);
	max-width: 60ch;
}

.ksr-feature__copy strong {
	color: var(--ksr-navy);
}

.ksr-feature__close {
	margin-top: 1.5rem;
	font-size: 1.0625rem;
}

/* Giving Pump callout. The art slot stays hidden until real creative is
 * supplied; the panel is designed to work with or without it. */
.ksr-pump {
	display: flex;
	align-items: flex-start;
	gap: clamp(16px, 2.4vw, 28px);
	margin: 1.75rem 0 0;
	padding: clamp(18px, 2.4vw, 26px) clamp(18px, 2.6vw, 30px);
	background: var(--ksr-white);
	border-left: 5px solid var(--ksr-gold);
	border-radius: 3px;
	box-shadow: 0 12px 30px -18px rgba(7, 23, 43, 0.4);
}

.ksr-pump__art {
	flex: none;
	width: 132px;
}

.ksr-pump__art[hidden] {
	display: none;
}

.ksr-pump__art img {
	width: 100%;
	height: auto;
}

.ksr-pump__label {
	margin: 0 0 0.35rem;
	font-family: var(--estepps-font-heading);
	font-size: var(--ksr-util);
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--ksr-blue);
}

.ksr-pump__text p:last-child {
	margin: 0;
	color: var(--ksr-ink-soft);
	font-size: 1.0625rem;
}

.ksr-feature__locations[hidden] {
	display: none;
}

.ksr-feature__locations {
	margin-top: 1.75rem;
}

.ksr-feature__locations-title {
	font-size: var(--ksr-h3);
	color: var(--ksr-navy);
	margin-bottom: 0.6rem;
}

.ksr-feature__locations-list li {
	padding: 0.4rem 0;
	border-bottom: 1px solid rgba(7, 23, 43, 0.12);
}

/* --- caricature --- */

.ksr-feature__art {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: flex-end;
}

.ksr-feature__halo {
	position: absolute;
	left: 50%;
	bottom: 6%;
	width: min(112%, 460px);
	aspect-ratio: 1;
	transform: translateX(-50%);
	border-radius: 50%;
	background:
		radial-gradient(circle, rgba(27, 70, 148, 0.22) 0%, rgba(27, 70, 148, 0) 68%),
		radial-gradient(rgba(27, 70, 148, 0.5) 1.5px, transparent 1.5px);
	background-size: 100% 100%, 12px 12px;
	-webkit-mask-image: radial-gradient(circle, #000 34%, transparent 70%);
	mask-image: radial-gradient(circle, #000 34%, transparent 70%);
	pointer-events: none;
}

.ksr-feature__hosts {
	position: relative;
	display: block;
	width: min(100%, 460px);
}

.ksr-feature__hosts img {
	width: 100%;
	height: auto;
	filter: drop-shadow(0 24px 34px rgba(7, 23, 43, 0.34));
}

@media (min-width: 1000px) {
	.ksr-feature__panel {
		grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
		align-items: center;
	}

	.ksr-feature__art {
		align-self: stretch;
		align-items: center;
		justify-content: center;
	}

	.ksr-feature__hosts {
		width: min(100%, 460px);
		margin: 0;
	}
}

/* ------------------------------------------------------------------ *
 * 7. Listener perks
 * ------------------------------------------------------------------ */

.ksr-perks {
	position: relative;
	background: var(--ksr-blue-deep);
	padding-block: var(--ksr-section);
	/* No scroll-margin here: the theme's global scroll-padding-top already
	 * clears a sticky header, and adding to it double-counts the offset. */
}

.ksr-perks:focus {
	outline: none;
}

.ksr-perks__inner {
	position: relative;
	width: 100%;
	max-width: var(--ksr-shell);
	margin-inline: auto;
	padding-inline: var(--ksr-gutter);
}

.ksr-perks__head {
	max-width: 62ch;
	margin-bottom: clamp(36px, 5vw, 60px);
}

.ksr-perks__title {
	font-size: var(--ksr-h2);
	color: var(--ksr-white);
	margin-bottom: 0.4em;
}

.ksr-perks__lead {
	font-family: var(--estepps-font-heading);
	font-size: var(--ksr-lead);
	font-weight: 600;
	line-height: 1.2;
	color: var(--ksr-gold);
	margin-bottom: 0.9rem;
}

.ksr-perks__intro {
	color: var(--ksr-steel-light);
}

.ksr-rewards-card {
	position: relative;
	padding: clamp(28px, 4.5vw, 56px);
	background: var(--ksr-white);
	border-radius: 4px;
	color: var(--ksr-ink);
	box-shadow: 0 28px 70px -38px rgba(0, 0, 0, 0.8);
	overflow: hidden;
}

.ksr-rewards-card::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 8px;
	background: linear-gradient(90deg, var(--ksr-gold) 0%, var(--ksr-gold-deep) 100%);
}

.ksr-rewards-card :focus-visible {
	outline-color: var(--ksr-blue);
}

.ksr-rewards-card__benefits {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 0;
}

.ksr-reward-benefit {
	padding-block: clamp(20px, 2.6vw, 30px);
	border-bottom: 1px solid rgba(7, 23, 43, 0.14);
}

.ksr-reward-benefit:first-child {
	padding-top: 0;
}

.ksr-reward-benefit h3 {
	margin: 0 0 0.35rem;
	font-size: clamp(1.55rem, 1.25rem + 1vw, 2.15rem);
	color: var(--ksr-blue);
}

.ksr-reward-benefit p,
.ksr-rewards-card__close {
	margin: 0;
	color: var(--ksr-ink-soft);
}

.ksr-rewards-card__close {
	margin-top: clamp(24px, 3vw, 34px);
	font-size: 1.125rem;
	font-weight: 600;
}

.ksr-rewards-card__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: clamp(24px, 3vw, 34px);
}

.ksr-app-downloads {
	margin-top: clamp(24px, 3vw, 34px);
	padding-top: clamp(20px, 2.5vw, 28px);
	border-top: 1px solid rgba(7, 23, 43, 0.14);
	scroll-margin-top: 118px;
}

.ksr-app-downloads__title {
	margin: 0 0 0.8rem;
	font-family: var(--estepps-font-heading);
	font-size: 1.125rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--ksr-navy);
}

.ksr-app-downloads__links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 28px;
}

.ksr-btn--outline-blue {
	background: transparent;
	border: 2px solid var(--ksr-blue);
	color: var(--ksr-blue);
}

.ksr-btn--outline-blue:hover,
.ksr-btn--outline-blue:focus-visible {
	background: var(--ksr-blue);
	color: var(--ksr-white);
}

.ksr-inline-link {
	color: var(--ksr-blue);
	font-weight: 700;
	text-decoration-thickness: 2px;
	text-underline-offset: 0.18em;
}

.ksr-inline-link:hover {
	color: var(--ksr-navy);
}

@media (min-width: 760px) {
	.ksr-rewards-card__benefits {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		column-gap: clamp(30px, 5vw, 64px);
	}

	.ksr-reward-benefit:nth-child(2) {
		padding-top: 0;
	}

	.ksr-reward-benefit--wide {
		grid-column: 1 / -1;
	}
}

.ksr-offers {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	/* Equal rows, so the odd card in the tablet 2 + 1 layout matches the pair
	 * above it instead of sitting short. */
	grid-auto-rows: 1fr;
	gap: clamp(22px, 2.6vw, 32px);
}

/* Ticket-stub card: dark header rail, perforated split, big value block. */
.ksr-offer {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: clamp(26px, 3vw, 36px) clamp(24px, 2.8vw, 34px) clamp(28px, 3vw, 38px);
	background: var(--ksr-white);
	border-radius: 4px;
	color: var(--ksr-ink);
	box-shadow: 0 26px 60px -34px rgba(0, 0, 0, 0.75);
	overflow: hidden;
}

.ksr-offer :focus-visible {
	outline-color: var(--ksr-blue);
}

/* Scoreboard rail across the top. */
.ksr-offer::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 8px;
	background: linear-gradient(90deg, var(--ksr-blue) 0%, var(--ksr-blue-lift) 100%);
}

.ksr-offer__num {
	margin: 0 0 0.5rem;
	font-family: var(--estepps-font-heading);
	font-size: 1.125rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	line-height: 1;
	color: var(--ksr-ink-soft);
}

.ksr-offer__label {
	font-size: var(--ksr-h3);
	color: var(--ksr-blue);
	margin-bottom: 1.1rem;
	padding-bottom: 1.1rem;
	position: relative;
}

/* Perforation between the label and the value, with punched notches at both
 * card edges. The notch fill matches the section field colour. */
.ksr-offer__label::after {
	content: "";
	position: absolute;
	left: calc(-1 * clamp(24px, 2.8vw, 34px));
	right: calc(-1 * clamp(24px, 2.8vw, 34px));
	bottom: 0;
	height: 0;
	border-bottom: 2px dashed rgba(7, 23, 43, 0.18);
}

.ksr-offer__value {
	margin: 0 0 0.9rem;
	font-family: var(--estepps-font-heading);
	font-size: clamp(1.75rem, 1.4rem + 1.5vw, 2.5rem);
	font-weight: 700;
	line-height: 1.06;
	text-transform: uppercase;
	color: var(--ksr-navy);
	text-wrap: balance;
}

/* The number is the thing people should see first. */
.ksr-offer__hero {
	display: inline-block;
	font-size: clamp(3.25rem, 2.4rem + 3.4vw, 5rem);
	font-weight: 800;
	line-height: 0.9;
	letter-spacing: -0.02em;
	color: var(--ksr-blue);
	vertical-align: -0.06em;
}

.ksr-offer__op {
	color: var(--ksr-gold-deep);
	font-weight: 800;
}

.ksr-offer__support {
	margin: 0;
	color: var(--ksr-ink-soft);
	font-size: 1.0625rem;
	line-height: 1.55;
}

/* The action row takes the card's slack, so the link sits at the same height
 * in all three cards no matter how much copy is above it. The stub then sits
 * directly beneath it at the card's foot. */
.ksr-offer__action {
	margin: auto 0 0;
	padding-top: 1.5rem;
}

/* Ticket stub. Pinned to the base of the card so all three cards resolve to
 * the same height with a deliberate foot rather than dead white space. It
 * carries brand marks only â€” no offer terms are stated here. */
.ksr-offer__stub {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin: 0;
	padding-top: 1.5rem;
	position: relative;
}

.ksr-offer__stub::before {
	content: "";
	position: absolute;
	left: calc(-1 * clamp(24px, 2.8vw, 34px));
	right: calc(-1 * clamp(24px, 2.8vw, 34px));
	top: 0;
	border-bottom: 2px dashed rgba(7, 23, 43, 0.14);
}

.ksr-offer__stub-mark {
	font-family: var(--estepps-font-heading);
	font-size: var(--ksr-util);
	font-weight: 700;
	letter-spacing: 0.2em;
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--ksr-ink-soft);
}

.ksr-offer__stub-wave {
	width: 68px;
	height: 18px;
	flex: none;
	color: var(--ksr-blue);
	opacity: 0.4;
}

/* The theme's global scroll-padding-top is sized for the site header (76px),
 * but this page's campaign masthead measures ~90-99px where it is sticky. Top
 * up the difference so an anchor jump clears it instead of tucking the section
 * edge underneath. Measured, not guessed. */
@media (min-width: 900px) {
	.ksr-perks {
		scroll-margin-top: 26px;
	}
}

@media (min-width: 700px) {
	.ksr-offers {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	/* Once the cards sit side by side, reserve two lines for the programme
	 * name so the perforation lands at the same height across the row. Not
	 * needed while they are stacked, where it would only add dead space.
	 *
	 * Sized from the real line-height plus the padding the perforation sits
	 * on, because box-sizing is border-box here: a flat 2em silently excluded
	 * the padding and left the longer label 14px lower than the others. */
	.ksr-offer__label {
		min-height: calc(2 * var(--ksr-lh-display) * 1em + 1.1rem);
	}
}

@media (min-width: 1060px) {
	.ksr-offers {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

/* ------------------------------------------------------------------ *
 * 8. Ticker
 * ------------------------------------------------------------------ */

.ksr-ticker {
	position: relative;
	background: var(--ksr-black);
	padding-block: clamp(30px, 4vw, 46px);
	overflow: hidden;
}

.ksr-ticker__strip {
	display: flex;
	overflow: hidden;
	padding-block: 10px;
	border-block: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(27, 70, 148, 0.22);
	user-select: none;
}

.ksr-ticker__track {
	display: flex;
	align-items: center;
	gap: 0.7em;
	flex: none;
	white-space: nowrap;
	animation: ksr-marquee 46s linear infinite;
}

.ksr-ticker__strip--reverse .ksr-ticker__track {
	animation-direction: reverse;
}

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

.ksr-ticker__item {
	font-family: var(--estepps-font-heading);
	font-size: clamp(1rem, 0.9rem + 0.45vw, 1.25rem);
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--ksr-white);
}

.ksr-ticker__sep {
	color: var(--ksr-gold);
	font-size: 0.85em;
}

.ksr-ticker__inner {
	width: 100%;
	max-width: 860px;
	margin-inline: auto;
	padding: clamp(38px, 5.4vw, 66px) var(--ksr-gutter);
	text-align: center;
}

.ksr-ticker__title {
	font-size: var(--ksr-h2);
	color: var(--ksr-white);
	margin-bottom: 0.5em;
}

.ksr-ticker__copy {
	font-size: var(--ksr-lead);
	line-height: 1.35;
	color: var(--ksr-steel-light);
}

.ksr-ticker__bookmark {
	margin-top: 1.3rem;
	font-family: var(--estepps-font-heading);
	font-size: clamp(1.375rem, 1.1rem + 1.1vw, 2rem);
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--ksr-gold);
}

/* ------------------------------------------------------------------ *
 * 9. Find your Estepp's
 * ------------------------------------------------------------------ */

.ksr-find {
	position: relative;
	background: var(--ksr-offwhite);
	color: var(--ksr-ink);
	padding-block: var(--ksr-section);
	overflow: hidden;
	text-align: center;
}

/* Thin field lines, kept faint so they read as texture. */
.ksr-find::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: repeating-linear-gradient(
		90deg,
		rgba(7, 23, 43, 0.055) 0 1px,
		transparent 1px 88px
	);
	pointer-events: none;
}

.ksr-find__inner {
	position: relative;
	width: 100%;
	max-width: var(--ksr-shell);
	margin-inline: auto;
	padding-inline: var(--ksr-gutter);
}

.ksr-find :focus-visible {
	outline-color: var(--ksr-blue);
}

.ksr-find__title {
	font-size: var(--ksr-h2);
	color: var(--ksr-navy);
	margin-bottom: clamp(30px, 4vw, 46px);
}

.ksr-location-list {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 0 clamp(28px, 4vw, 54px);
	margin: 0;
}

.ksr-location-list__item {
	padding: clamp(18px, 2.2vw, 24px) 0 clamp(18px, 2.2vw, 24px) 18px;
	border-bottom: 1px solid rgba(27, 70, 148, 0.2);
	border-left: 3px solid var(--ksr-gold);
}

.ksr-location-list__item h3 {
	margin: 0 0 0.45rem;
	font-size: clamp(1.3rem, 1.15rem + 0.55vw, 1.7rem);
	color: var(--ksr-blue);
}

.ksr-location-list__item address {
	margin: 0;
	font-style: normal;
	line-height: 1.55;
	color: var(--ksr-ink-soft);
}

@media (min-width: 650px) {
	.ksr-location-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1040px) {
	.ksr-location-list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.ksr-find__copy {
	max-width: 62ch;
	margin: 0 auto clamp(30px, 4vw, 46px);
	color: var(--ksr-ink-soft);
}

.ksr-find__copy p {
	margin: 0;
}

.ksr-find__copy p + p {
	margin-top: 1rem;
}

.ksr-find__copy strong {
	color: var(--ksr-navy);
}

.ksr-chips {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin: clamp(26px, 3.4vw, 38px) 0 0;
}

.ksr-chip {
	padding: 0.5em 1.15em;
	border: 1px solid rgba(27, 70, 148, 0.28);
	border-radius: 999px;
	background: var(--ksr-white);
	font-family: var(--estepps-font-heading);
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--ksr-blue);
}

.ksr-find__actions {
	margin: clamp(32px, 4vw, 46px) 0 0;
}

.ksr-signoff {
	margin: clamp(34px, 4.4vw, 52px) 0 0;
	font-family: var(--estepps-font-heading);
	font-size: clamp(1.875rem, 1.3rem + 2.4vw, 3.25rem);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -0.01em;
	text-transform: uppercase;
	color: var(--ksr-navy);
}

/* ------------------------------------------------------------------ *
 * 10. Campaign footer
 * ------------------------------------------------------------------ */

.ksr-footer {
	background: var(--ksr-black);
	color: var(--ksr-steel);
	padding-block: clamp(40px, 5vw, 64px);
	border-top: 3px solid var(--ksr-blue);
}

.ksr-footer__inner {
	width: 100%;
	max-width: var(--ksr-shell);
	margin-inline: auto;
	padding-inline: var(--ksr-gutter);
	text-align: center;
}

.ksr-footer__lockup {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(14px, 2.4vw, 26px);
	margin-bottom: 1.4rem;
}

.ksr-footer__estepps {
	display: block;
	color: var(--ksr-white);
	line-height: 0;
	transition: color var(--ksr-ease);
}

.ksr-footer__estepps:hover {
	color: var(--ksr-gold);
}

.ksr-footer__estepps svg {
	width: clamp(116px, 13vw, 150px);
	height: auto;
}

.ksr-footer__x {
	font-family: var(--estepps-font-heading);
	font-size: 1.5rem;
	line-height: 1;
	color: var(--ksr-steel);
}

.ksr-footer__ksr img {
	width: clamp(80px, 9vw, 108px);
	height: auto;
}

.ksr-footer__tagline {
	margin: 0 0 0.6rem;
	font-family: var(--estepps-font-heading);
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--ksr-white);
}

.ksr-footer__back {
	margin: 0 0 1.8rem;
	font-size: 1rem;
}

.ksr-footer__back a {
	color: var(--ksr-gold);
	text-decoration: none;
	border-bottom: 1px solid rgba(245, 197, 24, 0.5);
	padding-bottom: 1px;
}

.ksr-footer__back a:hover {
	color: var(--ksr-white);
	border-bottom-color: var(--ksr-white);
}

.ksr-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px 28px;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	/* Kept at 16px so no readable text on the page drops below the mobile
	 * minimum, legal microcopy included. */
	font-size: 1rem;
}

.ksr-footer__copyright {
	margin: 0;
}

.ksr-footer__legal {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px 22px;
}

.ksr-footer__legal a {
	color: var(--ksr-steel);
	text-decoration: none;
}

.ksr-footer__legal a:hover {
	color: var(--ksr-white);
	text-decoration: underline;
}

/* ------------------------------------------------------------------ *
 * 11. Motion preferences
 * ------------------------------------------------------------------ */

@media (prefers-reduced-motion: reduce) {
	.ksr-landing *,
	.ksr-landing *::before,
	.ksr-landing *::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
	}

	/* The ticker becomes a static strip rather than a stalled marquee. */
	.ksr-ticker__track {
		animation: none !important;
		transform: none !important;
	}

	.ksr-onair__dot {
		animation: none !important;
		opacity: 1;
	}

	.ksr-btn:hover,
	.ksr-btn:focus-visible {
		transform: none;
	}
}

@media (min-width: 900px) {
	body.admin-bar.ksr-page .ksr-masthead {
		top: 32px;
	}
}

@media (max-width: 782px) {
	body.admin-bar.ksr-page .ksr-masthead {
		top: 46px;
	}
}

/* The destination theme declares `a:visited { color: purple; }`, which has
 * greater specificity than a single campaign class. Keep every branded link
 * in its intended state after it has been visited. */
body.ksr-page .ksr-landing a.ksr-masthead__estepps:visited,
body.ksr-page .ksr-landing a.ksr-footer__estepps:visited {
	color: var(--ksr-white);
}

body.ksr-page .ksr-landing a.ksr-masthead__estepps:visited:hover,
body.ksr-page .ksr-landing a.ksr-footer__estepps:visited:hover {
	color: var(--ksr-gold);
}

body.ksr-page .ksr-landing a.ksr-btn--gold:visited {
	color: var(--ksr-navy);
}

body.ksr-page .ksr-landing a.ksr-btn--ghost:visited {
	color: var(--ksr-white);
}

body.ksr-page .ksr-landing a.ksr-btn--outline-blue:visited {
	color: var(--ksr-blue);
}

body.ksr-page .ksr-landing a.ksr-btn--outline-blue:visited:hover,
body.ksr-page .ksr-landing a.ksr-btn--outline-blue:visited:focus-visible {
	color: var(--ksr-white);
}

body.ksr-page .ksr-landing a.ksr-link:visited,
body.ksr-page .ksr-landing a.ksr-inline-link:visited {
	color: var(--ksr-blue);
}

body.ksr-page .ksr-landing a.ksr-link:visited:hover,
body.ksr-page .ksr-landing a.ksr-link:visited:focus-visible {
	color: var(--ksr-blue-lift);
}

body.ksr-page .ksr-landing .ksr-footer__back a:visited {
	color: var(--ksr-gold);
}

body.ksr-page .ksr-landing .ksr-footer__back a:visited:hover {
	color: var(--ksr-white);
}

body.ksr-page .ksr-landing .ksr-footer__legal a:visited {
	color: var(--ksr-steel);
}

body.ksr-page .ksr-landing .ksr-footer__legal a:visited:hover {
	color: var(--ksr-white);
}
