/*!
 * Medicaid Racket landing page — scoped stylesheet.
 *
 * Loaded only on template-medicaid-racket.php (the base theme stylesheet is
 * dequeued there). Every value below is pulled from the Figma file
 * "Stop the Georgia Medicaid Racket Landing Page", node 2-38 (1440px frame).
 * Figma defines no tablet/mobile frames — breakpoints at 1200/900/600 plus a
 * clamp()-based fluid type scale are our documented judgment calls (SETUP.md).
 */

/* --------------------------------------------------------------------------
 * Self-hosted fonts (Google Fonts latin subsets, woff2)
 * ------------------------------------------------------------------------ */

/* v2 rebrand: a single Inter variable face drives both headings and body
   (replaces Barlow Condensed + JetBrains Mono). Weights selected per element. */
@font-face {
	font-family: "Inter";
	src: url("../fonts/inter.woff2") format("woff2");
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}

/* --------------------------------------------------------------------------
 * Design tokens (Figma node 2-38)
 * ------------------------------------------------------------------------ */

:root {
	/* color */
	--mr-bg: #0b0b0c;
	--mr-bg-raised: #141416;
	--mr-surface: #1c1c20;
	--mr-border-card: #2e2e34;
	--mr-border-input: #48484f;
	--mr-accent: #ffd60a;
	--mr-accent-hover: #eac200;
	--mr-on-accent: #0c0c0d; /* dark text/icons on the light gold accent */
	--mr-text-hi: #f5f5f5;
	--mr-text-body: #a9a9b2;
	--mr-text-dim: #6e6e77;
	--mr-text-consent: #55617a;
	--mr-announce-bg: #232328;
	--mr-gridline: rgba(255, 255, 255, 0.04);
	--mr-shadow-btn: 0 10px 26px 0 rgba(8, 18, 36, 0.28);

	/* type */
	--mr-font-display: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
	--mr-font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
	--mr-fs-h1: clamp(2.75rem, 5vw, 4.5rem);             /* 44 → 72px  */
	--mr-fs-h2: clamp(2.375rem, 4.24vw, 3.8125rem);      /* 38 → 61px  */
	--mr-fs-cta: clamp(2.125rem, 3.75vw, 3.375rem);      /* 34 → 54px  */
	--mr-fs-h3: clamp(1.625rem, 2.22vw, 2rem);           /* 26 → 32px  */
	--mr-fs-receipt: clamp(1.1875rem, 1.67vw, 1.5rem);   /* 19 → 24px  */
	--mr-fs-lede: clamp(1rem, 1.32vw, 1.1875rem);        /* 16 → 19px  */

	/* shape + rhythm */
	--mr-radius-img: 15px;
	--mr-radius-card: 15px;
	--mr-radius-bar: 10px;
	--mr-radius-pill: 54px;
	--mr-container: 1140px;
	--mr-pad-x: clamp(20px, 5.56vw, 80px);
	--mr-pad-section: clamp(64px, 8.9vw, 128px);
}

/* --------------------------------------------------------------------------
 * Base (base theme stylesheet is dequeued on this template)
 * ------------------------------------------------------------------------ */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body.mr-landing {
	margin: 0;
	background: var(--mr-bg);
	color: var(--mr-text-body);
	font-family: var(--mr-font-body);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: clip;
}

.mr-landing h1,
.mr-landing h2,
.mr-landing h3,
.mr-landing p,
.mr-landing ul,
.mr-landing figure {
	margin: 0;
	padding: 0;
}

.mr-landing ul {
	list-style: none;
}

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

.mr-landing a {
	color: inherit;
}

.mr-landing .screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip-path: inset(50%);
	word-wrap: normal !important;
}

/* Shared pieces ----------------------------------------------------------- */

.mr-container {
	position: relative; /* above the grid-line overlay */
	max-width: var(--mr-container);
	margin: 0 auto;
}

.mr-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-family: var(--mr-font-display);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--mr-accent);
}

/* v2 eyebrows lead with a small gold dot instead of an underline. */
.mr-eyebrow::before {
	content: "";
	flex: none;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--mr-accent);
}

.mr-h2 {
	font-family: var(--mr-font-display);
	font-size: var(--mr-fs-h2);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: var(--mr-text-hi);
}

.mr-lede {
	font-size: var(--mr-fs-lede);
	line-height: 1.6;
	color: var(--mr-text-body);
}

.mr-accent {
	color: var(--mr-accent);
}

.mr-underline {
	text-decoration: underline;
	text-decoration-skip-ink: none;
	text-underline-position: from-font;
}

/* Vertical grid-line overlay (Fraud Info + Solutions sections in Figma:
   2px lines every 114px across the 1140px container, layer opacity 47%). */
.mr-has-gridlines {
	position: relative;
}

.mr-has-gridlines::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: min(calc(var(--mr-container) + 2px), calc(100% - 2 * var(--mr-pad-x)));
	transform: translateX(-50%);
	background-image: repeating-linear-gradient(
		to right,
		var(--mr-gridline) 0 2px,
		transparent 2px 114px
	);
	opacity: 0.47;
	pointer-events: none;
}

/* --------------------------------------------------------------------------
 * Announcement bar
 * ------------------------------------------------------------------------ */

/* Single announcement bar, fixed to the top of the viewport so it persists
   across the whole page. JS toggles .is-visible: shown over the hero, faded
   out through the middle, then expands back in at the Scandal section. The
   left/right insets + max-width mirror the hero banner so their edges line up. */
.mr-announce {
	position: fixed;
	top: 0;
	left: clamp(12px, 1.5vw, 24px);
	right: clamp(12px, 1.5vw, 24px);
	z-index: 200;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 50px;
	margin: 16px auto 0;
	max-width: 1600px;
	padding: 16px 24px;
	background: var(--mr-bg-raised);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--mr-radius-bar);
	font-weight: 500;
	font-size: 16px;
	line-height: 1.1;
	letter-spacing: -0.03em;
	text-decoration: none;
	transform-origin: top center;
	transition: transform 0.42s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.26s ease;
}

/* JS drives visibility (expand-open in, fade out); no-JS leaves it shown. */
.mr-js .mr-announce {
	opacity: 0;
	transform: scale(0.9);
	pointer-events: none;
}

.mr-js .mr-announce.is-visible {
	opacity: 1;
	transform: none;
	pointer-events: auto;
}

.mr-announce__text {
	color: var(--mr-text-hi);
}

/* .mr-landing prefix outranks the `.mr-landing a { color: inherit }` reset. */
.mr-landing .mr-announce__link {
	color: var(--mr-accent);
	text-decoration: underline;
	text-underline-position: from-font;
	white-space: nowrap;
}

.mr-announce:hover .mr-announce__link,
.mr-announce:focus-visible .mr-announce__link {
	color: var(--mr-text-hi);
}

/* --------------------------------------------------------------------------
 * Hero
 * ------------------------------------------------------------------------ */

/* v2 hero: a dark section with centered copy on top and a rounded composite
   banner (grayscale Capitol + colour Trump cutout) below — no full-bleed photo
   behind the text. */
.mr-hero {
	position: relative;
	padding: clamp(24px, 3.5vw, 44px) clamp(12px, 1.5vw, 24px) clamp(48px, 6vw, 88px);
	background: var(--mr-bg);
	text-align: center;
}

.mr-hero__content {
	display: grid;
	gap: 22px;
	justify-items: center;
	text-align: center;
	max-width: 880px;
	/* Bottom room so Trump can rise above the banner frame without colliding
	   with the subtitle — tuned close, just above his head-rise. */
	margin: 0 auto clamp(32px, 5vw, 72px);
	padding-top: clamp(28px, 4vw, 56px);
}

.mr-hero__heading {
	font-family: var(--mr-font-display);
	font-size: var(--mr-fs-h1);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.02em;
	color: var(--mr-text-hi);
	max-width: 1000px;
}

/* "RACKET!" stamp-slam: the .mr-underline span slams in oversized like a rubber
   stamp, rattles on impact, then draws its underline. The heading itself only
   fades (no zoom), so the slam has nothing to compete with. Keys off the ACF
   heading markup (<span class="mr-accent mr-underline">) — lose the span and
   nothing animates, nothing breaks. */
.mr-hero__heading .mr-underline {
	display: inline-block;
	text-decoration: none;
	background-image: linear-gradient(currentColor, currentColor);
	background-repeat: no-repeat;
	background-position: 0 100%;
	background-size: 100% 0.07em;
	/* Figma's from-font underline hangs below the baseline — paint the line
	   at the bottom of a padded box for the gap; negative margin cancels the
	   extra layout height. */
	padding-bottom: 0.05em;
	margin-bottom: -0.05em;
}

.mr-js .mr-hero__heading .mr-underline {
	opacity: 0;
	background-size: 0 0.07em;
	transition: background-size 0.5s cubic-bezier(0.22, 0.61, 0.36, 1) 1.1s;
}

.mr-js .mr-hero__heading.is-inview .mr-underline {
	animation: mr-stamp 0.55s cubic-bezier(0.19, 1, 0.22, 1) 0.5s both;
	background-size: 100% 0.07em;
}

@keyframes mr-stamp {
	0% {
		opacity: 0;
		transform: scale(1.9) rotate(-3deg);
	}
	55% {
		opacity: 1;
		transform: scale(0.95) rotate(0.5deg);
	}
	72% {
		transform: scale(1.02) rotate(-0.25deg);
	}
	84% {
		transform: scale(1) translateX(-1.5px);
	}
	92% {
		transform: scale(1) translateX(1.5px);
	}
	100% {
		opacity: 1;
		transform: none;
	}
}

.mr-hero__sub {
	font-size: var(--mr-fs-lede);
	line-height: 1.6;
	color: var(--mr-text-body);
	max-width: 720px;
}

/* Composite banner: a clipped Capitol frame with the colour Trump cutout rising
   PAST its top edge. The media box itself does NOT clip — only the frame does —
   so Trump can break out above the rounded rectangle. */
.mr-landing .mr-hero__media {
	position: relative;
	width: 100%;
	max-width: 1600px;
	margin: 0 auto;
	aspect-ratio: 5 / 2;
}

/* The rounded, clipped box: holds the grayscale Capitol + dark fill. */
.mr-hero__frame {
	position: absolute;
	inset: 0;
	border-radius: var(--mr-radius-img);
	overflow: hidden;
	background: #0a0a0c;
}

/* Grayscale Capitol filling the left, masked out to the right so the colour
   Trump cutout reads against the dark. */
.mr-hero__capitol {
	position: absolute;
	inset: 0;
	background-image: image-set(
		url("../images/capitol-2x.webp") type("image/webp"),
		url("../images/capitol-2x.jpg") type("image/jpeg")
	);
	background-size: cover;
	background-position: left center;
	-webkit-mask-image: linear-gradient(90deg, #000 0%, #000 52%, transparent 86%);
	mask-image: linear-gradient(90deg, #000 0%, #000 52%, transparent 86%);
	opacity: 0.95;
	/* Slow, subtle "breathing" zoom behind Trump. */
	animation: mr-capitol-breathe 20s ease-in-out infinite;
	will-change: transform;
}

@keyframes mr-capitol-breathe {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.045);
	}
}

/* Colour Trump cutout — bottom-anchored on the right and TALLER than the frame
   so his head/shoulders rise above the top edge (the media box doesn't clip).
   Scoped with .mr-landing so height/max-width beat the base `img` reset. */
.mr-landing .mr-hero__figure {
	position: absolute;
	right: clamp(8px, 3vw, 48px);
	bottom: 0;
	height: 110%;
	width: auto;
	max-width: none;
	object-position: bottom right;
	z-index: 1;
	/* JS scales this up slightly on scroll; grow from the base so he stays
	   grounded and rises rather than drifting. */
	transform-origin: bottom right;
	will-change: transform;
}

/* --------------------------------------------------------------------------
 * Petition
 * ------------------------------------------------------------------------ */

.mr-petition {
	padding: clamp(56px, 6.7vw, 96px) var(--mr-pad-x);
	text-align: center;
}

.mr-petition__inner {
	display: grid;
	gap: 40px;
	justify-items: center;
	max-width: 1144px;
	margin: 0 auto;
}

.mr-petition__text {
	display: grid;
	gap: 14px;
	justify-items: center;
}

.mr-petition__text .mr-h2 {
	line-height: 1.08;
}

.mr-petition__body {
	font-size: 16px;
	line-height: 1.6;
	color: var(--mr-text-body);
	max-width: 720px;
}

.mr-petition__form {
	display: grid;
	gap: 14px;
	width: min(497px, 100%);
}

.mr-petition__privacy {
	font-size: 13px;
	line-height: 1.5;
	color: var(--mr-text-dim);
	opacity: 0.85;
}

.mr-petition__form-empty {
	font-size: 14px;
	color: var(--mr-text-dim);
}

/* Gravity Forms overrides — pill inputs per Figma */

.mr-petition__form .gform_wrapper {
	margin: 0;
	text-align: left;
}

.mr-petition__form .gform_heading,
.mr-petition__form .gform_required_legend {
	display: none;
}

.mr-petition__form .gform_wrapper .gform_fields {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 14px;
}

.mr-petition__form .gform_wrapper .gfield {
	grid-column: 1 / -1;
	padding: 0;
	margin: 0;
}

.mr-petition__form .gform_wrapper .gfield--width-seven {
	grid-column: span 7;
}

.mr-petition__form .gform_wrapper .gfield--width-half {
	grid-column: span 6;
}

.mr-petition__form .gform_wrapper .gfield--width-five {
	grid-column: span 5;
}

.mr-petition__form .gform_wrapper .gfield_label,
.mr-petition__form .gform_wrapper .hidden_label .gfield_label {
	position: absolute !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip-path: inset(50%);
}

.mr-petition__form .gform_wrapper input[type="text"],
.mr-petition__form .gform_wrapper input[type="tel"],
.mr-petition__form .gform_wrapper input[type="email"] {
	width: 100%;
	height: 52px;
	padding: 0 20px;
	background: var(--mr-surface);
	border: 1px solid var(--mr-border-input);
	border-radius: var(--mr-radius-pill);
	color: var(--mr-text-hi);
	font-family: var(--mr-font-body);
	font-size: 14px;
	line-height: 1.6;
	outline: none;
	transition: border-color 0.2s ease;
}

.mr-petition__form .gform_wrapper input:focus-visible {
	border-color: var(--mr-accent);
}

.mr-petition__form .gform_wrapper input::placeholder {
	color: var(--mr-text-dim);
	opacity: 0.65;
	font-size: 12px;
}

/* consent / opt-in checkbox */

.mr-petition__form .gform_wrapper .gfield--type-checkbox,
.mr-petition__form .gform_wrapper .gfield--type-consent {
	padding-top: 4px;
}

.mr-petition__form .gform_wrapper .gchoice,
.mr-petition__form .gform_wrapper .ginput_container_consent {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.mr-petition__form .gform_wrapper input[type="checkbox"] {
	appearance: none;
	-webkit-appearance: none;
	flex: none;
	width: 20px;
	height: 20px;
	margin: 0;
	background: var(--mr-surface);
	border: 1.25px solid var(--mr-border-input);
	border-radius: 5px;
	cursor: pointer;
	transition: background-color 0.15s ease, border-color 0.15s ease;
}

.mr-petition__form .gform_wrapper input[type="checkbox"]:checked {
	background-color: var(--mr-accent);
	border-color: var(--mr-accent);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath d='M1 5.2 4.2 8.4 11 1.6' fill='none' stroke='%23f5f5f5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 12px 10px;
}

.mr-petition__form .gform_wrapper .gchoice label,
.mr-petition__form .gform_wrapper .ginput_container_consent label {
	font-family: var(--mr-font-body);
	font-size: 12px;
	line-height: 1.4;
	color: var(--mr-text-consent);
	cursor: pointer;
}

/* submit */

.mr-petition__form .gform_wrapper .gform_footer {
	/* The footer sits outside the .gform_fields grid, so it doesn't inherit
	   the 14px row gap — recreate it here (matches the Figma column gap). */
	margin: 14px 0 0;
	padding: 0;
}

/* !important beats GF's Orbital theme framework (gform-theme--orbital),
   whose button styling out-specifies any sane selector. */
.mr-petition__form .gform_wrapper input[type="submit"],
.mr-petition__form .gform_wrapper button[type="submit"] {
	display: block !important;
	width: 100% !important;
	padding: 18px 0 !important;
	background: var(--mr-accent) !important;
	border: 0 !important;
	border-radius: var(--mr-radius-pill) !important;
	color: var(--mr-text-hi) !important;
	font-family: var(--mr-font-display) !important;
	font-size: 17px !important;
	font-weight: 700 !important;
	line-height: 1.1 !important;
	letter-spacing: 0.85px !important;
	text-transform: uppercase !important;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.mr-petition__form .gform_wrapper input[type="submit"]:hover,
.mr-petition__form .gform_wrapper input[type="submit"]:focus-visible,
.mr-petition__form .gform_wrapper button[type="submit"]:hover,
.mr-petition__form .gform_wrapper button[type="submit"]:focus-visible {
	background: var(--mr-accent-hover) !important;
}

/* validation + confirmation, kept quiet and on-palette */

.mr-petition__form .gform_wrapper .gfield_validation_message,
.mr-petition__form .gform_wrapper .validation_message {
	background: none;
	border: none;
	padding: 4px 20px 0;
	color: var(--mr-accent);
	font-size: 12px;
}

.mr-petition__form .gform_wrapper .gform_validation_errors {
	background: none;
	border: 1px solid var(--mr-accent);
	border-radius: var(--mr-radius-bar);
	box-shadow: none;
	padding: 12px 16px;
	color: var(--mr-text-hi);
	font-size: 13px;
}

.mr-petition__form .gform_confirmation_message {
	font-size: 16px;
	line-height: 1.6;
	color: var(--mr-text-hi);
}

/* Official confirmation panel. Markup comes from theme_mr_petition_confirmation()
   in functions.php: a stamped seal, eyebrow, headline, then the GF message. */
.mr-petition__form .mr-confirm {
	display: grid;
	justify-items: center;
	text-align: center;
	gap: 12px;
	padding: clamp(32px, 4.4vw, 52px) clamp(24px, 4vw, 40px);
	background: var(--mr-surface);
	border: 1px solid var(--mr-border-card);
	border-radius: var(--mr-radius-card);
	box-shadow: var(--mr-shadow-btn);
	animation: mr-confirm-in 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.mr-confirm .mr-eyebrow {
	margin: 0;
}

.mr-confirm__seal {
	display: inline-flex;
	width: 66px;
	height: 66px;
	margin-bottom: 6px;
	color: var(--mr-accent);
	/* A little stamp-pop on the seal — on brand with the RACKET! stamp. */
	animation: mr-seal-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.18s both;
}

.mr-confirm__seal svg {
	display: block;
	width: 100%;
	height: 100%;
}

.mr-confirm__title {
	margin: 0;
	font-family: var(--mr-font-display);
	font-size: clamp(1.75rem, 3.4vw, 2.5rem);
	font-weight: 800;
	line-height: 1.04;
	letter-spacing: -0.01em;
	text-transform: uppercase;
	color: var(--mr-text-hi);
}

.mr-confirm__body {
	margin: 0;
	max-width: 46ch;
	font-size: var(--mr-fs-lede);
	line-height: 1.6;
	color: var(--mr-text-body);
}

@keyframes mr-confirm-in {
	from {
		opacity: 0;
		transform: translateY(14px) scale(0.98);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

@keyframes mr-seal-pop {
	0% {
		opacity: 0;
		transform: scale(0.2) rotate(-12deg);
	}
	60% {
		opacity: 1;
		transform: scale(1.12) rotate(3deg);
	}
	100% {
		opacity: 1;
		transform: scale(1) rotate(0);
	}
}

/* Once the form is replaced by the confirmation, the privacy line is moot. */
.mr-petition__form:has(.gform_confirmation_message) .mr-petition__privacy {
	display: none;
}

/* --------------------------------------------------------------------------
 * The Facts (Fraud Info)
 * ------------------------------------------------------------------------ */

.mr-facts {
	padding: var(--mr-pad-section) var(--mr-pad-x);
	background: linear-gradient(180deg, var(--mr-bg) 0%, var(--mr-bg-raised) 26.672%);
}

/* Two-column "top": a vertical stack of fact cards on the left, the section
   header/intro on the right (Figma update — previously header-over-grid). The
   header stays first in the DOM for reading order / mobile stacking; grid areas
   place it visually on the right. */
.mr-facts__top {
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
	grid-template-areas: "cards header";
	gap: 64px;
	align-items: start;
	margin-bottom: 94px;
}

.mr-facts__header {
	grid-area: header;
	display: grid;
	gap: 16px;
	justify-items: start;
}

.mr-facts__header .mr-lede {
	max-width: 760px;
}

/* Pin the intro while the taller card stack scrolls past (desktop only),
   mirroring the Receipts head. */
@media (min-width: 901px) {
	.mr-facts__header {
		position: sticky;
		top: 40px;
	}
}

.mr-facts__grid {
	grid-area: cards;
	display: grid;
	gap: 32px;
}

/* Fact cards adopt the same raised surface + border as the Solution cards,
   with center-aligned content per the Figma update. */
.mr-fact {
	display: grid;
	gap: 16px;
	justify-items: center;
	text-align: center;
	padding: 40px 44px;
	background: var(--mr-surface);
	border: 1px solid var(--mr-border-card);
	border-radius: var(--mr-radius-card);
}

.mr-fact__badge {
	display: grid;
	place-content: center;
	width: 48px;
	height: 48px;
	border: 1.5px solid var(--mr-accent);
	border-radius: 999px;
}

.mr-fact__badge svg {
	display: block;
}

/* The bundled numeral SVGs bake in the old red fill; re-tint to the accent so
   they follow the token (CSS fill beats the SVG's presentation attribute). */
.mr-fact__badge svg path {
	fill: var(--mr-accent);
}

.mr-fact__num-text {
	font-family: var(--mr-font-body);
	font-size: 16px;
	font-weight: 500;
	color: var(--mr-accent);
}

.mr-fact__title {
	font-family: var(--mr-font-display);
	font-size: 19px;
	font-weight: 600;
	line-height: 1.26;
	color: var(--mr-text-hi);
}

.mr-fact__body {
	font-size: 16px;
	line-height: 1.6;
	color: var(--mr-text-body);
}

.mr-landing .mr-facts__media {
	margin-bottom: 94px;
}

.mr-facts__media img {
	width: 100%;
	aspect-ratio: 1142 / 452;
	object-fit: cover;
	object-position: center;
	border-radius: var(--mr-radius-img);
}

/* The Receipts */

.mr-receipts {
	display: grid;
	grid-template-columns: 340px 1fr;
	gap: 80px;
	align-items: start;
}

.mr-receipts__head {
	display: grid;
	gap: 8px;
}

/* Pin the head while the receipts list scrolls past; releases at the end of
   .mr-receipts (sticky is contained by the grid parent). Two-column layout
   only — in the single-column stack it just flows. */
@media (min-width: 901px) {
	.mr-receipts__head {
		position: sticky;
		top: 40px;
		/* Push the pinned head below the sticky CTA banner so they don't overlap. */
		padding-top: 60px;
	}
}

.mr-receipts__title {
	font-family: var(--mr-font-display);
	font-size: var(--mr-fs-h3);
	font-weight: 800;
	line-height: 1.18;
	letter-spacing: -0.02em;
	color: var(--mr-text-hi);
}

.mr-receipts__list {
	display: grid;
	gap: 40px;
}

.mr-receipt {
	display: grid;
	gap: 8px;
	justify-items: start;
}

/* Dimmed at rest (Figma shows rows 2–5 at 23%); brightened on scroll by
   entrance-animations.js. Without JS, or with reduced motion, fully lit. */
.mr-js .mr-receipt {
	opacity: 0.23;
	transition: opacity 0.6s ease 0.1s;
}

.mr-js .mr-receipt.is-lit {
	opacity: 1;
}

.mr-receipt__title {
	font-family: var(--mr-font-display);
	font-size: var(--mr-fs-receipt);
	font-weight: 600;
	line-height: 1.32;
	color: var(--mr-text-hi);
	text-decoration: none;
}

.mr-landing .mr-receipt__title--link {
	color: #ffffff;
	text-decoration: underline;
	text-underline-position: from-font;
}

.mr-receipt__title--link:hover,
.mr-receipt__title--link:focus-visible {
	color: var(--mr-accent);
}

.mr-receipt__source {
	font-size: 14px;
	line-height: 1.5;
	color: var(--mr-text-dim);
}

/* Inline citations + the source notes they point at ----------------------- */

/* Superscript marker sitting on a claim. Sized in px rather than em so it
   stays legible in 16px card copy without ballooning inside the section h2;
   line-height 0 keeps it from stretching the line it sits on. */
.mr-cite {
	margin-left: 0.15em;
	font-size: 11px;
	font-weight: 700;
	line-height: 0;
	vertical-align: super;
}

.mr-h2 .mr-cite {
	font-size: 0.28em;
}

.mr-landing .mr-cite a {
	color: var(--mr-accent);
	text-decoration: none;
	opacity: 0.85;
	transition: opacity 0.2s ease;
}

.mr-landing .mr-cite a:hover,
.mr-landing .mr-cite a:focus-visible {
	opacity: 1;
	text-decoration: underline;
	text-underline-offset: 0.2em;
}

/* Footnote list: fine print under the Receipts, not a second link list. Two
   columns on desktop so five short citations stay a band rather than a wall. */
.mr-sources {
	margin-top: 88px;
	padding-top: 30px;
	border-top: 1px solid var(--mr-border-card);
}

.mr-sources__title {
	margin-bottom: 20px;
	font-family: var(--mr-font-display);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--mr-text-dim);
}

.mr-landing .mr-sources__list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px 56px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.mr-source {
	display: grid;
	grid-template-columns: 16px minmax(0, 1fr);
	gap: 10px;
	/* Clear the fixed announcement bar when a marker jumps here. */
	scroll-margin-top: 110px;
}

.mr-source__num {
	font-size: 11px;
	font-weight: 700;
	line-height: 1.9;
	text-align: right;
	color: var(--mr-accent);
	opacity: 0.75;
	font-variant-numeric: tabular-nums;
	transition: opacity 0.3s ease;
}

.mr-source__body {
	font-size: 13px;
	line-height: 1.6;
	color: var(--mr-text-dim);
	transition: color 0.3s ease;
}

/* Jumped-to source lights up so it's obvious which line answered the marker. */
.mr-source:target .mr-source__num {
	opacity: 1;
}

.mr-source:target .mr-source__body {
	color: var(--mr-text-body);
}

.mr-landing .mr-source__citation--link {
	color: inherit;
	text-decoration: underline;
	text-decoration-color: rgba(255, 255, 255, 0.2);
	text-underline-offset: 0.18em;
	transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.mr-landing .mr-source__citation--link:hover,
.mr-landing .mr-source__citation--link:focus-visible {
	color: var(--mr-accent);
	text-decoration-color: currentcolor;
}

/* Return arrow — revealed on row hover, and on focus so it stays reachable. */
.mr-landing .mr-source__back {
	margin-left: 7px;
	color: var(--mr-accent);
	text-decoration: none;
	opacity: 0;
	transition: opacity 0.2s ease;
}

.mr-source:hover .mr-source__back,
.mr-landing .mr-source__back:focus-visible {
	opacity: 1;
}

/* --------------------------------------------------------------------------
 * America First solution — two columns: copy on the left, a framed Trump photo
 * on the right (v2; was a full-bleed parallax band).
 * ------------------------------------------------------------------------ */

.mr-solution {
	padding: var(--mr-pad-section) var(--mr-pad-x);
	background: var(--mr-bg);
}

.mr-solution__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.8fr);
	gap: clamp(32px, 5vw, 72px);
	align-items: center;
	max-width: var(--mr-container);
	margin: 0 auto;
	padding: clamp(28px, 4vw, 60px);
	background: var(--mr-surface);
	border: 1px solid var(--mr-border-card);
	border-radius: var(--mr-radius-card);
}

.mr-solution__content {
	display: grid;
	gap: 22px;
	justify-items: start;
	text-align: left;
}

.mr-solution__body {
	display: grid;
	gap: 20px;
	font-size: var(--mr-fs-lede);
	line-height: 1.7;
	color: var(--mr-text-body);
}

.mr-solution__body p {
	margin: 0;
}

.mr-solution__media {
	margin: 0;
	border-radius: var(--mr-radius-img);
	overflow: hidden;
}

.mr-solution__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 42% center;
	aspect-ratio: 4 / 5;
}

@media (max-width: 760px) {
	.mr-solution__inner {
		grid-template-columns: 1fr;
	}

	.mr-solution__media img {
		aspect-ratio: 16 / 10;
	}
}

/* --------------------------------------------------------------------------
 * Final CTA
 * ------------------------------------------------------------------------ */

.mr-cta {
	padding: clamp(48px, 4.7vw, 68px) var(--mr-pad-x);
	text-align: center;
}

.mr-cta__inner {
	display: grid;
	gap: 26px;
	justify-items: center;
	max-width: 920px;
	margin: 0 auto;
}

.mr-cta__heading {
	font-family: var(--mr-font-display);
	font-size: var(--mr-fs-cta);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: var(--mr-text-hi);
}

/* CTA heading is flat white in v2 — neutralise any accent span and the
   draw-in underline (the design shows plain white here). */
.mr-cta__heading .mr-accent {
	color: inherit;
}

.mr-cta__heading .mr-underline {
	background-image: none;
	text-decoration: none;
	padding-bottom: 0;
}

.mr-cta__sub {
	font-size: var(--mr-fs-lede);
	line-height: 1.6;
	color: var(--mr-text-hi);
	opacity: 0.92;
}

.mr-landing .mr-cta__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 18px 40px;
	background: var(--mr-accent);
	border-radius: var(--mr-radius-pill);
	box-shadow: var(--mr-shadow-btn);
	color: var(--mr-on-accent);
	font-family: var(--mr-font-display);
	font-size: 17px;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: 0.2px;
	text-decoration: none;
	transition: background-color 0.2s ease;
}

.mr-cta__button:hover,
.mr-cta__button:focus-visible {
	background: var(--mr-accent-hover);
}

/* --------------------------------------------------------------------------
 * Footer
 * ------------------------------------------------------------------------ */

.mr-footer {
	display: grid;
	gap: 6px;
	padding: 27px 20px;
	text-align: center;
	font-size: 13px;
	line-height: 1.5;
	color: var(--mr-text-dim);
}

.mr-footer__disclaimer {
	opacity: 0.75;
}

/* Copyright and the privacy link share one line, split by a middot — the link
   reads as fine print rather than navigation. */
.mr-footer__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px;
	opacity: 0.6;
}

.mr-footer__sep {
	opacity: 0.55;
}

.mr-landing .mr-footer__link {
	color: inherit;
	text-decoration: underline;
	text-decoration-color: rgba(255, 255, 255, 0.22);
	text-underline-offset: 0.2em;
	transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.mr-landing .mr-footer__link:hover,
.mr-landing .mr-footer__link:focus-visible {
	color: var(--mr-accent);
	text-decoration-color: currentcolor;
}

/* --------------------------------------------------------------------------
 * Legal / document pages (template-medicaid-racket-legal.php)
 *
 * Same ground, tokens, and footer as the landing page, but a reading measure
 * instead of a landing layout. No Figma frame exists for these — the type
 * scale and rhythm are derived from the landing page's tokens.
 * ------------------------------------------------------------------------ */

/* Slim masthead standing in for the landing page's fixed announcement bar. */
.mr-legal-bar {
	position: sticky;
	top: 0;
	z-index: 200;
	background: rgba(11, 11, 12, 0.86);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--mr-border-card);
}

.mr-legal-bar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	max-width: var(--mr-container);
	margin: 0 auto;
	padding: 16px var(--mr-pad-x);
}

.mr-landing .mr-legal-bar__home {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--mr-font-display);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--mr-text-hi);
	text-decoration: none;
}

.mr-legal-bar__arrow {
	color: var(--mr-accent);
	transition: transform 0.25s ease;
}

.mr-legal-bar__home:hover .mr-legal-bar__arrow,
.mr-legal-bar__home:focus-visible .mr-legal-bar__arrow {
	transform: translateX(-3px);
}

.mr-landing .mr-legal-bar__cta {
	flex: none;
	padding: 9px 20px;
	border: 1px solid var(--mr-border-input);
	border-radius: var(--mr-radius-pill);
	font-size: 13px;
	font-weight: 600;
	color: var(--mr-text-hi);
	text-decoration: none;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.mr-landing .mr-legal-bar__cta:hover,
.mr-landing .mr-legal-bar__cta:focus-visible {
	background: var(--mr-accent);
	border-color: var(--mr-accent);
	color: var(--mr-on-accent);
}

.mr-legal {
	padding: clamp(44px, 6vw, 88px) var(--mr-pad-x) var(--mr-pad-section);
	background: linear-gradient(180deg, var(--mr-bg-raised) 0%, var(--mr-bg) 380px);
}

.mr-legal__inner {
	/* Reading measure, deliberately narrower than --mr-container. */
	max-width: 760px;
	margin: 0 auto;
}

.mr-legal__head {
	display: grid;
	gap: 14px;
	justify-items: start;
	padding-bottom: 30px;
	margin-bottom: 44px;
	border-bottom: 1px solid var(--mr-border-card);
}

.mr-landing .mr-legal__title {
	font-family: var(--mr-font-display);
	font-size: clamp(2.25rem, 4vw, 3.25rem);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.03em;
	color: var(--mr-text-hi);
}

.mr-landing .mr-legal__updated {
	font-size: 14px;
	color: var(--mr-text-dim);
}

/* Prose. Authored in the editor, so it's styled by element — and the reset up
   top zeroes margins on .mr-landing headings/paragraphs, hence the extra class
   on each selector to win specificity. */
.mr-legal__body {
	font-size: 16px;
	line-height: 1.75;
	color: var(--mr-text-body);
}

.mr-landing .mr-legal__body h2 {
	margin: 46px 0 16px;
	font-family: var(--mr-font-display);
	font-size: 22px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.02em;
	color: var(--mr-text-hi);
	scroll-margin-top: 96px;
}

/* A short gold rule above each section — carries the accent through the
   document without turning a legal page into a colour field. */
.mr-landing .mr-legal__body h2::before {
	content: "";
	display: block;
	width: 28px;
	height: 2px;
	margin-bottom: 18px;
	border-radius: 2px;
	background: var(--mr-accent);
}

.mr-landing .mr-legal__body h3 {
	margin: 32px 0 12px;
	font-family: var(--mr-font-display);
	font-size: 17px;
	font-weight: 600;
	color: var(--mr-text-hi);
}

.mr-landing .mr-legal__body > :first-child {
	margin-top: 0;
}

.mr-landing .mr-legal__body p {
	margin: 0 0 18px;
}

.mr-landing .mr-legal__body strong {
	font-weight: 600;
	color: var(--mr-text-hi);
}

.mr-landing .mr-legal__body ul,
.mr-landing .mr-legal__body ol {
	margin: 0 0 18px;
	padding-left: 22px;
	list-style: disc;
}

.mr-landing .mr-legal__body ol {
	list-style: decimal;
}

.mr-landing .mr-legal__body li {
	margin-bottom: 8px;
}

.mr-landing .mr-legal__body li::marker {
	color: var(--mr-accent);
}

.mr-landing .mr-legal__body a {
	color: var(--mr-text-hi);
	text-decoration: underline;
	text-decoration-color: var(--mr-accent);
	text-underline-offset: 0.18em;
	overflow-wrap: anywhere;
	transition: color 0.2s ease;
}

.mr-landing .mr-legal__body a:hover,
.mr-landing .mr-legal__body a:focus-visible {
	color: var(--mr-accent);
}

.mr-legal__body hr {
	margin: 40px 0;
	border: 0;
	border-top: 1px solid var(--mr-border-card);
}

/* --------------------------------------------------------------------------
 * 404 (404.php)
 *
 * A dead end that routes back to the petition. Full-viewport so the footer
 * sits at the bottom of the screen rather than halfway up an empty page.
 * ------------------------------------------------------------------------ */

.mr-404 {
	position: relative;
	display: grid;
	place-items: center;
	min-height: calc(100vh - 120px);
	padding: clamp(72px, 12vh, 140px) var(--mr-pad-x);
	overflow: hidden;
	background: var(--mr-bg);
	isolation: isolate;
}

/* Hero's Capitol, pushed back far enough that it reads as texture. */
.mr-404__backdrop {
	position: absolute;
	inset: 0;
	z-index: -1;
	opacity: 0.16;
}

.mr-landing .mr-404__backdrop img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 30%;
	filter: grayscale(1);
}

/* Fades the photo out toward the copy so the text never fights the building. */
.mr-404__backdrop::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(
		ellipse 70% 60% at 50% 45%,
		rgba(11, 11, 12, 0.92) 0%,
		rgba(11, 11, 12, 0.6) 55%,
		rgba(11, 11, 12, 0.9) 100%
	);
}

.mr-404__inner {
	display: grid;
	gap: 18px;
	justify-items: center;
	max-width: 620px;
	text-align: center;
}

/* Oversized numeral as a watermark behind the headline — outlined rather than
   filled so it stays scenery. */
.mr-404__code {
	font-family: var(--mr-font-display);
	font-size: clamp(6rem, 15vw, 11rem);
	font-weight: 800;
	line-height: 0.82;
	letter-spacing: -0.04em;
	color: transparent;
	-webkit-text-stroke: 2px var(--mr-accent);
	opacity: 0.32;
	margin-bottom: -0.12em;
}

.mr-landing .mr-404__heading {
	font-family: var(--mr-font-display);
	font-size: clamp(2.125rem, 4.4vw, 3.25rem);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.03em;
	color: var(--mr-text-hi);
}

.mr-landing .mr-404__body {
	font-size: var(--mr-fs-lede);
	line-height: 1.6;
	color: var(--mr-text-body);
}

.mr-404__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 14px 28px;
	margin-top: 14px;
}

.mr-landing .mr-404__link {
	font-size: 15px;
	font-weight: 600;
	color: var(--mr-text-body);
	text-decoration: underline;
	text-decoration-color: rgba(255, 255, 255, 0.24);
	text-underline-offset: 0.2em;
	transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.mr-landing .mr-404__link:hover,
.mr-landing .mr-404__link:focus-visible {
	color: var(--mr-accent);
	text-decoration-color: currentcolor;
}

/* --------------------------------------------------------------------------
 * Entrance animations (driven by entrance-animations.js)
 * ------------------------------------------------------------------------ */

.mr-js [data-mr-animate] {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.mr-js [data-mr-animate].is-inview {
	opacity: 1;
	transform: none;
}

/* Hero entrance: the bar drops in from the top, then the copy zooms in like
   it's rushing up the hallway toward you. Both override the generic fade-up. */
.mr-js .mr-announce[data-mr-animate] {
	opacity: 0;
	transform: translateY(-130%);
	transition: opacity 0.5s ease, transform 0.75s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.mr-js .mr-announce[data-mr-animate].is-inview {
	opacity: 1;
	transform: none;
}

/* Eyebrow + subtitle zoom in like they're rushing up the hallway toward you. */
.mr-js .mr-hero .mr-eyebrow[data-mr-animate],
.mr-js .mr-hero__sub[data-mr-animate] {
	opacity: 0;
	transform: scale(0.32);
	transform-origin: center 45%;
	filter: blur(8px);
	transition:
		opacity 0.9s ease 0.35s,
		transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.35s,
		filter 1s ease 0.35s;
	will-change: transform, opacity, filter;
}

/* Subtitle drifts in more slowly than the eyebrow — a longer, gentler settle. */
.mr-js .mr-hero__sub[data-mr-animate] {
	transition:
		opacity 1.8s ease 0.55s,
		transform 2.2s cubic-bezier(0.16, 1, 0.3, 1) 0.55s,
		filter 1.8s ease 0.55s;
}

.mr-js .mr-hero .mr-eyebrow[data-mr-animate].is-inview,
.mr-js .mr-hero__sub[data-mr-animate].is-inview {
	opacity: 1;
	transform: none;
	filter: none;
}

/* The heading just fades — its own RACKET! motion competed with the zoom. */
.mr-js .mr-hero__heading[data-mr-animate] {
	opacity: 0;
	transform: none;
	transition: opacity 0.9s ease 0.35s;
}

.mr-js .mr-hero__heading[data-mr-animate].is-inview {
	opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.mr-js [data-mr-animate],
	.mr-js .mr-hero .mr-eyebrow[data-mr-animate],
	.mr-js .mr-hero__heading[data-mr-animate],
	.mr-js .mr-hero__sub[data-mr-animate] {
		opacity: 1;
		transform: none;
		filter: none;
		transition: none;
	}

	/* Announce bar keeps its JS show/hide toggle, just without the animation. */
	.mr-js .mr-announce {
		transition: none;
	}

	.mr-js .mr-receipt {
		opacity: 1;
		transition: none;
	}

	.mr-js .mr-hero__heading .mr-underline {
		opacity: 1;
		background-size: 100% 0.07em;
		transition: none;
		animation: none;
	}

	.mr-confirm,
	.mr-confirm__seal {
		animation: none;
	}

	.mr-hero__capitol {
		animation: none;
	}
}

/* --------------------------------------------------------------------------
 * Breakpoints — Figma ships desktop (1440) only; these are judgment calls.
 * ------------------------------------------------------------------------ */

@media (max-width: 1200px) {
	.mr-receipts {
		gap: 48px;
	}
}

@media (max-width: 900px) {
	.mr-facts__top {
		grid-template-columns: 1fr;
		grid-template-areas:
			"header"
			"cards";
		gap: 40px;
		margin-bottom: 64px;
	}

	.mr-facts__grid {
		gap: 24px;
	}

	.mr-fact {
		padding: 32px 28px;
	}

	.mr-landing .mr-facts__media {
		margin-bottom: 64px;
	}

	.mr-receipts {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.mr-receipts__head {
		max-width: 480px;
	}

	.mr-landing .mr-sources__list {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.mr-sources {
		margin-top: 64px;
	}
}

@media (max-width: 600px) {
	/* Stacks to two rows here, so it's the tallest the fixed bar ever gets —
	   keep it lean or it eats the top of the hero. The 12px inset matches the
	   hero's clamp() floor so the bar and the banner still share edges. */
	.mr-announce {
		flex-direction: column;
		gap: 6px;
		text-align: center;
		margin: 12px 12px 0;
		padding: 12px 16px;
		min-height: 0;
		font-size: 15px;
	}

	/* No margin/min-height here: the v2 hero is content-sized, and an outer
	   margin would push the banner off the announce bar's inset. */
	.mr-hero {
		padding-bottom: 32px;
	}

	/* Top padding clears the fixed bar; bottom stays 0 so the base
	   margin-bottom (Trump's head room) is the only gap above the banner. */
	.mr-hero__content {
		gap: 14px;
		padding: 84px 20px 0;
	}

	.mr-hero__heading {
		font-size: 2.375rem;
	}

	/* Portrait frame for phones — the 5:2 banner collapses to a thin strip.
	   .mr-landing prefix required: the base rules are two-class selectors and
	   would otherwise outrank these. */
	.mr-landing .mr-hero__media {
		aspect-ratio: 4 / 3;
	}

	/* The cutout is wider than it is tall (1200x967), so on a narrow portrait
	   frame 110% would render him wider than the box and bleed out the left
	   edge. 106% fills it, stays inside, and still breaks out over the top. */
	.mr-landing .mr-hero__figure {
		height: 106%;
		right: 0;
	}

	/* Trump now spans nearly the full width, so hold the Capitol further right
	   to fill the space around his silhouette instead of flat black. Offset the
	   position so the 4:3 crop doesn't cut the dome. */
	.mr-hero__capitol {
		background-position: 35% center;
		-webkit-mask-image: linear-gradient(90deg, #000 0%, #000 70%, transparent 100%);
		mask-image: linear-gradient(90deg, #000 0%, #000 70%, transparent 100%);
	}

	.mr-petition__form .gform_wrapper .gfield--width-seven,
	.mr-petition__form .gform_wrapper .gfield--width-half,
	.mr-petition__form .gform_wrapper .gfield--width-five {
		grid-column: 1 / -1;
	}

	.mr-petition__form .gform_wrapper .gchoice,
	.mr-petition__form .gform_wrapper .ginput_container_consent {
		justify-content: flex-start;
		align-items: flex-start;
	}

	.mr-petition__form .gform_wrapper .gchoice input[type="checkbox"] {
		margin-top: 1px;
	}

	.mr-receipts__list {
		gap: 32px;
	}

	/* Wordmark can be long — let the bar wrap instead of squeezing the CTA. */
	.mr-legal-bar__inner {
		flex-wrap: wrap;
		gap: 12px;
	}

	.mr-landing .mr-legal-bar__home {
		font-size: 14px;
	}

	/* Hover-reveal never fires on touch — keep the return arrows visible. */
	.mr-landing .mr-source__back {
		opacity: 1;
	}
}
