/*
 * Tom Cotton for Senate — homepage + global chrome.
 * All design tokens come from the :root CSS variables emitted by inc/brand.php
 * (Figma: "Tom Cotton Website 2026"). Layout values are taken from the
 * 1440px desktop frame; breakpoints are our own judgment (no mobile comps).
 */

/* --------------------------------------------------------------
# Base
-------------------------------------------------------------- */

body {
	font-family: var(--font-sans);
	font-size: 17px;
	line-height: 1.59;
	color: var(--c-gravel);
	background: #fff;
	/* Match Figma's text rendering: browsers default to subpixel smoothing on
	   macOS, which makes every weight look heavier than the design tool. This
	   is a render hint only — it does not change any font-weight. */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Guard against any single element forcing horizontal scroll on small
   screens. clip (not hidden) keeps position:sticky working on the nav. */
html,
body {
	overflow-x: clip;
}

/* WP's body_class() adds `page` to the <body> of every Page, which collides
   with the _s base rule `.post, .page { margin: 0 0 1.5em }` and gives the body
   a 25.5px bottom margin — a white strip below the footer. Neutralize it
   (body.page = 0,1,1 beats the bare .page = 0,1,0). */
body.page {
	margin: 0;
}

/* Lock scroll behind the full-screen mobile menu. */
body.menu-open {
	overflow: hidden;
}

/* Visited content links take the surrounding text color, never the browser's
   purple. Scoped to unclassed links so styled components (buttons, nav, social
   — which set their own :visited) are untouched. */
a:visited:not([class]) {
	color: inherit;
}

.container {
	max-width: 1240px;
	margin: 0 auto;
	padding-left: 32px;
	padding-right: 32px;
}

img {
	max-width: 100%;
	height: auto;
}

/* Shared text patterns */

.eyebrow {
	font-family: var(--font-sans);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 2.86px;
	text-transform: uppercase;
	line-height: 1.1;
	margin: 0;
}

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

.section-heading {
	font-family: var(--font-condensed);
	font-size: 48px;
	font-weight: 700;
	line-height: 1.04;
	text-transform: uppercase;
	color: var(--c-blue);
	margin: 13px 0 0;
}

.section-lead {
	font-family: var(--font-serif);
	font-size: 22px;
	line-height: 1.45;
	color: var(--c-gravel);
	margin: 14px 0 0;
}

/* Buttons */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 52px;
	padding: 0 28px;
	border-radius: 2px;
	font-family: var(--font-sans);
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 1.68px;
	text-transform: uppercase;
	text-decoration: none;
	color: #fff;
	transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn:hover,
.btn:focus,
.btn:active,
.btn:visited {
	color: #fff;
	text-decoration: none;
}

.btn--red {
	background: var(--c-red);
}

.btn--red:hover {
	background: #a31a27;
}

.btn--navy {
	background: var(--c-blue);
}

.btn--navy:hover {
	background: var(--c-navy);
}

.btn--outline {
	border: 2px solid #fff;
	background: transparent;
}

.btn--outline:hover {
	background: rgba(255, 255, 255, 0.12);
}

/* --------------------------------------------------------------
# Header
-------------------------------------------------------------- */

.endorse-bar {
	background: var(--c-blue);
	text-align: center;
	padding: 10px 16px;
}

.endorse-bar__link {
	display: inline-flex;
	gap: 12px;
	align-items: baseline;
	justify-content: center;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.26px;
	color: var(--c-parchment);
	text-decoration: none;
	transition: color 0.15s ease;
}

.endorse-bar__link:visited {
	color: var(--c-parchment);
}

.endorse-bar__arrow {
	color: var(--c-red);
	font-weight: 700;
	transition: transform 0.15s ease;
}

/* Animated underline under the endorsement text (sweeps in left-to-right on hover) */
.endorse-bar__text {
	position: relative;
}

.endorse-bar__text::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -3px;
	height: 2px;
	background: var(--c-red);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.35s ease;
}

.site-nav {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--c-section);
	border-bottom: 1px solid var(--c-parchment);
}

.site-nav__inner {
	max-width: 1240px;
	margin: 0 auto;
	padding: 14px 32px;
	/* 3-column grid so the nav sits on the true page center, independent of
	   the logo and donate-pill widths (space-between only balances the gaps). */
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 24px;
}

.site-nav__logo {
	display: block;
	line-height: 0;
	justify-self: start;
}

.site-nav__logo img {
	height: 52px;
	width: auto;
}

.main-navigation {
	display: flex;
	align-items: center;
}

.main-navigation ul {
	display: flex;
	gap: 30px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.main-navigation li {
	margin: 0;
}

.main-navigation a {
	display: inline-block;
	padding: 6px 0 8px;
	border-bottom: 2px solid transparent;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.15px;
	color: var(--c-blue);
	text-decoration: none;
}

.main-navigation a:hover,
.main-navigation a:visited {
	color: var(--c-blue);
}

.main-navigation a:hover {
	border-bottom-color: rgba(190, 30, 45, 0.4);
}

.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a {
	border-bottom-color: var(--c-red);
}

.btn-pill {
	justify-self: end;
	display: inline-block;
	background: var(--c-red);
	color: var(--c-parchment);
	border-radius: 999px;
	padding: 12px 26px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 1.3px;
	text-transform: uppercase;
	text-decoration: none;
	line-height: 1;
	transition: background-color 0.15s ease;
}

.btn-pill:hover {
	background: #a31a27;
	color: var(--c-parchment);
}

.btn-pill:visited {
	color: var(--c-parchment);
}

/* Mobile menu toggle (hidden on desktop) */

.menu-toggle {
	display: none;
	background: none;
	border: 0;
	padding: 10px;
	cursor: pointer;
}

.menu-toggle__bars,
.menu-toggle__bars::before,
.menu-toggle__bars::after {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--c-blue);
	position: relative;
	content: "";
}

.menu-toggle__bars::before {
	position: absolute;
	top: -7px;
}

.menu-toggle__bars::after {
	position: absolute;
	top: 7px;
}

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

.hero {
	position: relative;
	background: var(--c-navy);
	min-height: 620px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
}

.hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-size: cover;
	/* Top-align: on ultra-wide viewports the cover-crop should eat the
	   bottom, not the subjects' heads at the top. */
	background-position: center top;
}

/* Desktop background video (YouTube). Hidden until the player reports playing,
   so the YouTube title-card flash never shows — the poster image covers the gap.
   Hidden entirely on mobile (see the max-width:900px block). */
.hero__video {
	position: absolute;
	inset: 0;
	z-index: 1;
	overflow: hidden;
	opacity: 0;
	transition: opacity 0.8s ease;
	pointer-events: none;
}

.hero--video-ready .hero__video {
	opacity: 1;
}

/* Self-hosted <video> background — no player chrome, so a plain cover-crop is
   enough; top-aligned to match the photo's background-position: center top. */
.hero__video-el {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

/* YT.Player swaps the #hero-yt div for an <iframe> of the same id. hero-video.js
   sizes AND vertically positions it (width/height/top set inline): it cover-crops
   the hero then over-scales so YouTube's title card (top) and control bar (bottom)
   fall outside the visible box, biased so faces near the top stay in view. */
.hero__video #hero-yt {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	border: 0;
	pointer-events: none;
}

/* Navy treatment over the video so the white hero copy stays legible. Only
   rendered when a video is set, so the (already-darkened) photo isn't doubled up. */
.hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	background: linear-gradient(180deg, rgba(10, 26, 54, 0.55) 0%, rgba(14, 35, 71, 0.74) 100%);
}

.hero__content {
	position: relative;
	z-index: 3;
	max-width: 1240px;
	padding: 102px 32px 96px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}

.hero__eyebrow {
	color: rgba(255, 255, 255, 0.5);
}

.hero__heading {
	font-family: var(--font-condensed);
	font-weight: 800;
	font-size: clamp(64px, 9.6vw, 138px);
	line-height: 0.88;
	letter-spacing: -0.004em;
	text-transform: uppercase;
	color: #fff;
	margin: 6px 0 0;
	max-width: 900px;
}

.hero__heading-accent {
	color: var(--c-red);
}

.hero__subtitle {
	max-width: 540px;
	font-size: 17px;
	line-height: 27px;
	color: rgba(255, 255, 255, 0.92);
	margin: 0;
}

.hero__ctas {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
	padding-top: 16px;
}

/* --------------------------------------------------------------
# Meet Tom
-------------------------------------------------------------- */

.about {
	background: #fff;
	padding: 120px 0;
}

.about__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
	gap: 80px;
	align-items: center;
}

.about__media {
	position: relative;
	height: 715px;
	border-radius: 2px;
}

.about__photo-bg {
	position: absolute;
	top: 24px;
	left: 0;
	width: 80%;
	height: 577px;
	object-fit: cover;
	border-radius: 2px;
}

.about__accent {
	position: absolute;
	top: 140px;
	left: 98px;
	width: 124px;
	height: 124px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(190, 30, 45, 0.55) 0%, rgba(190, 30, 45, 0) 70%);
	filter: blur(6px);
}

.about__portrait {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	height: 92%;
	width: auto;
	max-width: none;
	object-fit: contain;
	object-position: bottom center;
}

.about__copy {
	max-width: 540px;
}

.about__copy .section-heading {
	margin-top: 13px;
}

.about__body {
	margin-top: 13px;
}

.about__body p {
	font-size: 17px;
	line-height: 27px;
	color: var(--c-gravel);
	margin: 0 0 10px;
}

.about__body p:last-child {
	margin-bottom: 0;
}

.about__stats {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 21px;
	border-top: 1px solid var(--c-parchment);
	margin: 20px 0 0;
	padding: 0;
}

.about__stat {
	border-bottom: 1px solid var(--c-parchment);
	padding: 22px 0 23px;
	margin: 0;
}

.about__stat-figure {
	font-family: var(--font-condensed);
	font-size: 46px;
	font-weight: 700;
	line-height: 1;
	color: var(--c-blue);
	margin: 0;
	transition: color 0.15s ease;
}

.about__stat-label {
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 2.86px;
	text-transform: uppercase;
	color: var(--c-khaki);
	margin: 6px 0 0;
}

.about__copy .btn {
	margin-top: 26px;
}

/* --------------------------------------------------------------
# Photo strip
-------------------------------------------------------------- */

.strip {
	background: var(--c-section);
	padding: 100px 0 110px;
}

.strip__header {
	max-width: 980px;
	margin-bottom: 60px;
}

.strip__header .section-lead {
	max-width: 720px;
}

.strip__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
	grid-auto-rows: 260px;
	gap: 14px;
}

.strip__tile {
	position: relative;
	overflow: hidden;
	border-radius: 2px;
	background: var(--c-parchment);
	margin: 0;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.strip__tile--tall {
	grid-row: span 2;
}

.strip__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.strip__shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(10, 26, 54, 0) 40%, rgba(10, 26, 54, 0.85) 100%);
}

.strip__caption {
	position: absolute;
	left: 22px;
	right: 22px;
	bottom: 17px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.strip__tile-eyebrow {
	color: rgba(255, 255, 255, 0.5);
}

.strip__tile-title {
	font-family: var(--font-condensed);
	font-size: 26px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	color: #fff;
}

/* --------------------------------------------------------------
# Issues
-------------------------------------------------------------- */

.issues {
	background: #fff;
	padding: 120px 0;
}

.issues__header {
	/* The Figma heading runs a hair wider than the 920px header block —
	   1010px keeps it on one line at desktop. */
	max-width: 1010px;
	margin: 0 auto 56px;
	text-align: center;
}

.issues__header .section-lead {
	max-width: 680px;
	margin-left: auto;
	margin-right: auto;
}

.issues__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.issue-card {
	display: flex;
	flex-direction: column;
	gap: 13px;
	min-height: 320px;
	background: var(--c-card);
	border-radius: 2px;
	padding: 32px 28px 28px;
	box-shadow: 0 1px 1px rgba(10, 26, 54, 0.06);
}

.issue-card__num {
	font-family: var(--font-mono);
	font-size: 12px;
	letter-spacing: 2.16px;
	color: var(--c-gravel);
}

.issue-card__title {
	font-family: var(--font-condensed);
	font-size: 26px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	color: var(--c-blue);
	margin: 0;
}

.issue-card__body {
	flex: 1 0 auto;
	font-size: 13px;
	line-height: 24px;
	color: var(--c-gravel);
	margin: 0;
}

.issue-card__link {
	align-self: flex-start;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 1.3px;
	text-transform: uppercase;
	color: var(--c-blue);
	text-decoration: none;
	border-bottom: 2px solid var(--c-red);
	padding-bottom: 5px;
}

.issue-card__link:hover,
.issue-card__link:visited {
	color: var(--c-blue);
}

.issue-card__link:hover {
	color: var(--c-red);
}

.issues__cta {
	margin-top: 56px;
	text-align: center;
}

/* --------------------------------------------------------------
# Quote
-------------------------------------------------------------- */

.quote {
	position: relative;
	background: var(--c-navy);
	overflow: hidden;
	display: flex;
	justify-content: center;
}

.quote__bg {
	position: absolute;
	inset: 0;
	opacity: 0.55;
}

.quote__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.quote__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(10, 26, 54, 0.4) 0%, rgba(10, 26, 54, 0.85) 100%);
}

.quote__content {
	position: relative;
	width: 100%;
	max-width: 1100px;
	padding: 120px 32px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
}

.quote__mark {
	font-family: var(--font-serif);
	font-weight: 700;
	font-size: 140px;
	line-height: 0.5;
	height: 58px;
	color: var(--c-red-quote);
}

.quote__text {
	font-family: var(--font-serif);
	font-style: italic;
	font-weight: 600;
	font-size: clamp(28px, 3.4vw, 48px);
	line-height: 1.25;
	color: #fff;
	max-width: 980px;
	margin: 0;
	padding: 0 0 16px;
	border: 0;
}

.quote__rule {
	display: block;
	width: 56px;
	height: 3px;
	background: var(--c-red);
}

.quote__cite {
	font-size: 13px;
	font-weight: 800;
	font-style: italic;
	letter-spacing: 2.86px;
	text-transform: uppercase;
	color: #fff;
}

/* --------------------------------------------------------------
# Generic inner-page hero (interim until each page is built)
-------------------------------------------------------------- */

.page-hero {
	background: var(--c-navy);
	padding: 90px 0;
	text-align: center;
}

.page-hero__title {
	font-family: var(--font-condensed);
	font-weight: 800;
	font-size: clamp(48px, 6vw, 80px);
	line-height: 0.95;
	text-transform: uppercase;
	color: #fff;
	margin: 0;
}

.page-content {
	padding: 80px 0;
	background: #fff;
}

.page-content__inner {
	max-width: 800px;
}

.page-content__inner p {
	font-size: 17px;
	line-height: 27px;
	color: var(--c-gravel);
}

.page-content__inner h2,
.page-content__inner h3 {
	font-family: var(--font-condensed);
	text-transform: uppercase;
	color: var(--c-blue);
}

/* --------------------------------------------------------------
# Join the team (volunteer form, mirrors the Volunteer page design)
-------------------------------------------------------------- */

.join {
	background: var(--c-navy);
	padding: 100px 0;
	scroll-margin-top: 90px; /* clears the sticky nav when arriving via #join */
}

.join__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
	gap: 64px;
	align-items: center;
}

.join__eyebrow {
	color: rgba(255, 255, 255, 0.5);
}

.join__heading {
	font-family: var(--font-condensed);
	font-weight: 800;
	font-size: clamp(48px, 6vw, 80px);
	line-height: 0.95;
	text-transform: uppercase;
	color: #fff;
	margin: 14px 0 0;
}

.join__lead {
	font-family: var(--font-serif);
	font-size: 20px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.92);
	max-width: 420px;
	margin: 16px 0 0;
}

/* Gravity Forms, brand-styled. .gf-navy = on navy sections (homepage join,
   Volunteer hero), .gf-light = on white (Contact). Field metrics from the
   Volunteer/Contact comps: 64px tall, ~5px radius, 17px placeholder text. */

.gf-navy .gform_fields,
.gf-light .gform_fields {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 18px 14px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.gf-navy .gfield,
.gf-light .gfield {
	grid-column: span 12;
	margin: 0;
}

.gf-navy .gfield--width-half,
.gf-light .gfield--width-half {
	grid-column: span 6;
}

.gf-navy .gfield_label,
.gf-light .gfield_label {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
}

.gf-navy .ginput_container input[type="text"],
.gf-navy .ginput_container input[type="email"],
.gf-navy .ginput_container input[type="tel"],
.gf-light .ginput_container input[type="text"],
.gf-light .ginput_container input[type="email"],
.gf-light .ginput_container input[type="tel"] {
	width: 100%;
	height: 64px;
	border-radius: 5px;
	padding: 0 32px;
	font-family: var(--font-sans);
	font-size: 17px;
	transition: border-color 0.15s ease;
}

.gf-navy .ginput_container input[type="text"],
.gf-navy .ginput_container input[type="email"],
.gf-navy .ginput_container input[type="tel"] {
	background: var(--c-navy);
	border: 1px solid rgba(247, 244, 237, 0.21);
	color: #fff;
}

.gf-light .ginput_container input[type="text"],
.gf-light .ginput_container input[type="email"],
.gf-light .ginput_container input[type="tel"] {
	background: #fff;
	border: 1px solid var(--c-gravel);
	color: var(--c-gravel);
}

.gf-navy .ginput_container input:focus,
.gf-light .ginput_container input:focus {
	outline: none;
}

.gf-navy .ginput_container input:focus {
	border-color: #fff;
}

.gf-light .ginput_container input:focus {
	border-color: var(--c-blue);
}

.gf-navy .ginput_container input::placeholder {
	color: rgba(247, 244, 237, 0.6);
}

.gf-light .ginput_container input::placeholder {
	color: rgba(74, 70, 57, 0.6);
}

.gf-navy .ginput_container_consent,
.gf-light .ginput_container_consent {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	font-size: 13px;
	line-height: 1.5;
}

.gf-navy .ginput_container_consent input[type="checkbox"],
.gf-light .ginput_container_consent input[type="checkbox"] {
	accent-color: var(--c-red);
	margin-top: 2px;
}

.gf-navy .gform_footer,
.gf-light .gform_footer {
	margin: 19px 0 0;
	padding: 0;
}

/* GF's Orbital theme ships high-specificity rules + CSS vars; re-point its
   palette at the brand and pin the button styles over it. */
.gf-navy .gform_wrapper.gform-theme,
.gf-light .gform_wrapper.gform-theme {
	--gform-theme-color-primary: var(--c-red);
	--gform-theme-color-primary-darker: #a31a27;
	--gform-theme-color-primary-lighter: #d23746;
	--gform-theme-color-primary-contrast: #fff;
}

.gf-navy .gform_footer input[type="submit"],
.gf-navy .gform-theme input[type="submit"].gform_button,
.gf-light .gform_footer input[type="submit"],
.gf-light .gform-theme input[type="submit"].gform_button {
	width: 100% !important;
	height: 64px;
	border: 0 !important;
	border-radius: 5px !important;
	background: var(--c-red) !important;
	color: #fff !important;
	padding: 0 28px !important;
	font-family: var(--font-sans) !important;
	font-size: 14px !important;
	font-weight: 800 !important;
	letter-spacing: 1.68px !important;
	text-transform: uppercase !important;
	cursor: pointer;
	transition: background-color 0.15s ease;
}

.gf-navy .gform_footer input[type="submit"]:hover,
.gf-navy .gform-theme input[type="submit"].gform_button:hover {
	background: #a31a27 !important;
}

/* Contact submit is navy per the comp */
.gf-light .gform_footer input[type="submit"],
.gf-light .gform-theme input[type="submit"].gform_button {
	background: var(--c-blue) !important;
}

.gf-light .gform_footer input[type="submit"]:hover,
.gf-light .gform-theme input[type="submit"].gform_button:hover {
	background: var(--c-navy) !important;
}

.gf-navy .gform-theme .gfield_consent_label,
.gf-navy .gfield_consent_label {
	font-family: var(--font-sans);
	font-size: 13px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.7) !important;
}

.gf-light .gform-theme .gfield_consent_label,
.gf-light .gfield_consent_label {
	font-family: var(--font-sans);
	font-size: 13px;
	line-height: 1.5;
	color: rgba(74, 70, 57, 0.8) !important;
}

.gf-navy .gform_validation_errors,
.gf-navy .gfield_validation_message {
	color: #ffd5d9;
	font-size: 13px;
	background: transparent;
	border: 0;
	padding: 4px 0 0;
	margin: 0;
}

.gf-light .gform_validation_errors,
.gf-light .gfield_validation_message {
	color: var(--c-red);
	font-size: 13px;
	background: transparent;
	border: 0;
	padding: 4px 0 0;
	margin: 0;
}

.gf-navy .gform_validation_errors {
	padding: 12px 16px;
	border: 1px solid rgba(255, 213, 217, 0.5);
	border-radius: 5px;
	margin-bottom: 14px;
}

.gf-light .gform_validation_errors {
	padding: 12px 16px;
	border: 1px solid var(--c-red);
	border-radius: 5px;
	margin-bottom: 14px;
}

.gf-navy .gform_confirmation_message {
	font-family: var(--font-serif);
	font-size: 22px;
	color: #fff;
}

.gf-light .gform_confirmation_message {
	font-family: var(--font-serif);
	font-size: 22px;
	color: var(--c-blue);
}

.gf-navy .gfield_required,
.gf-light .gfield_required {
	color: var(--c-red-quote);
}

/* --------------------------------------------------------------
# Donate banner (site-wide, above footer)
-------------------------------------------------------------- */

.donate-banner {
	background: var(--c-section);
	padding: 110px 32px;
}

.donate-card {
	position: relative;
	max-width: 920px;
	margin: 0 auto;
	background: var(--c-blue);
	border-radius: 2px;
	border-top: 4px solid var(--c-red);
	box-shadow: 0 24px 56px rgba(10, 26, 54, 0.18);
	padding: 56px 56px 48px;
	overflow: hidden;
}

.donate-card__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
	gap: 56px;
	align-items: center;
}

.donate-card__heading {
	font-family: var(--font-condensed);
	font-size: 48px;
	font-weight: 700;
	line-height: 1.04;
	text-transform: uppercase;
	color: #fff;
	margin: 15px 0 0;
}

/* Honor only the editor's manual line breaks at desktop width —
   "Stand with Arkansas." is ~4px wider than its column in the comp. */
@media (min-width: 901px) {
	.donate-card__heading {
		white-space: nowrap;
	}
}

.donate-card__pitch {
	font-family: var(--font-serif);
	font-size: 22px;
	line-height: 1.36;
	color: var(--c-parchment);
	margin: 15px 0 0;
}

.donate-card__amounts {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.donate-card__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 82px;
	border-radius: 2px;
	background: #fff;
	font-family: var(--font-condensed);
	font-size: 32px;
	font-weight: 700;
	letter-spacing: 0.32px;
	color: var(--c-blue);
	text-decoration: none;
	transition: transform 0.1s ease, background-color 0.15s ease;
}

.donate-card__btn:visited {
	color: var(--c-blue);
}

.donate-card__btn:hover {
	transform: translateY(-2px);
}

.donate-card__btn--red {
	background: var(--c-red);
	color: #fff;
}

.donate-card__btn--red:visited {
	color: #fff;
}

.donate-card__btn--red:hover {
	background: #a31a27;
}

.donate-card__btn--other {
	background: transparent;
	border: 2px solid #fff;
	color: #fff;
	font-size: 26px;
	text-transform: uppercase;
}

.donate-card__btn--other:visited {
	color: #fff;
}

.donate-card__btn--other:hover {
	background: rgba(255, 255, 255, 0.12);
}

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

.site-footer {
	background: var(--c-navy);
	border-top: 4px solid var(--c-red);
}

.site-footer__inner {
	max-width: 1240px;
	margin: 0 auto;
	padding: 60px 32px 32px;
}

.site-footer__top {
	display: grid;
	grid-template-columns: 191px minmax(0, 1fr) auto;
	gap: 40px;
	align-items: center;
	padding-bottom: 36px;
}

.site-footer__logo {
	display: block;
	line-height: 0;
}

.site-footer__logo img {
	width: 191px;
	height: auto;
}

.site-footer__nav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 28px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-footer__nav li {
	margin: 0;
}

.site-footer__nav a {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.84px;
	text-transform: uppercase;
	color: var(--c-parchment);
	text-decoration: none;
}

.site-footer__nav a:hover {
	color: #fff;
	text-decoration: underline;
}

.site-footer__nav a:visited {
	color: var(--c-parchment);
}

.site-footer__social {
	display: flex;
	gap: 14px;
}

.site-footer__social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 999px;
	color: var(--c-parchment);
	transition: border-color 0.15s ease, color 0.15s ease;
}

.site-footer__social-link:visited {
	color: var(--c-parchment);
}

/* Kill the default dotted focus ring on mouse click; show a clean ring only
   for keyboard users (accessibility). */
.site-footer__social-link:focus {
	outline: none;
}

.site-footer__social-link:focus-visible {
	outline: 2px solid var(--c-red);
	outline-offset: 3px;
}

.site-footer__social-link svg {
	width: 16px;
	height: 16px;
	/* Color the icon on the SVG itself so currentColor resolves here — the
	   link's :visited color then can't bleed into the icon. */
	color: var(--c-parchment);
}

.site-footer__divider {
	border: 0;
	height: 1px;
	background: rgba(255, 255, 255, 0.15);
	margin: 0;
}

.site-footer__legal {
	max-width: 980px;
	padding-top: 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.site-footer__legal p {
	font-size: 13px;
	line-height: 1.6;
	margin: 0;
}

.site-footer__note {
	color: var(--c-parchment);
}

.site-footer__note a {
	color: var(--c-parchment);
	text-decoration: underline;
}

.site-footer__paidfor,
.site-footer__copyright {
	color: rgba(255, 255, 255, 0.75);
}

.site-footer__copyright {
	letter-spacing: 0.26px;
}

/* --------------------------------------------------------------
# Inner pages: shared hero pieces
-------------------------------------------------------------- */

.hero-115 {
	font-family: var(--font-condensed);
	font-weight: 800;
	font-size: clamp(56px, 8vw, 115px);
	line-height: 0.94;
	letter-spacing: -0.005em;
	text-transform: uppercase;
	color: #fff;
	margin: 0;
}

.hero-115--navy {
	color: var(--c-navy);
}

.form-hero--navy {
	background: var(--c-navy);
	padding: 60px 0 100px;
}

.form-hero--light {
	background: #fff;
	padding: 40px 0 96px;
}

.form-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
	gap: 48px;
	align-items: center;
}

.form-hero__eyebrow {
	color: rgba(255, 255, 255, 0.5);
}

.form-hero__copy {
	display: flex;
	flex-direction: column;
	gap: 22px;
	align-items: flex-start;
}

.form-hero__lead {
	font-family: var(--font-serif);
	font-size: 22px;
	line-height: 1.45;
	color: #f2ede0;
	max-width: 520px;
	margin: 0;
}

.form-hero__lead--navy {
	color: var(--c-navy);
}

.form-hero__centered {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: center;
	text-align: center;
	margin-bottom: 48px;
}

.form-hero__form--centered {
	max-width: 760px;
	margin: 0 auto;
}

/* Pills (issue chips, hero badges, military decorations) */

.pill-row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding-top: 14px;
}

.pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 19px 9px 15px;
	border-radius: 999px;
	font-family: var(--font-sans);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.52px;
	text-decoration: none;
}

.pill__star {
	color: var(--c-red-quote);
}

.pill--navy {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.18);
	color: #fff;
}

.pill--navy:visited,
.pill--navy:hover {
	color: #fff;
}

a.pill--navy:hover {
	border-color: rgba(255, 255, 255, 0.4);
	cursor: pointer;
}

.pill--light {
	background: rgba(255, 255, 255, 0.97);
	border: 1px solid #e6e1d5;
	color: var(--c-blue);
	font-weight: 700;
}

.pill--light .pill__star {
	color: var(--c-red);
}

/* Red corner square accent on chapter / about-hero photos */

.accent-corner {
	position: relative;
	border-radius: 2px;
}

.accent-corner::before {
	content: "";
	position: absolute;
	top: -16px;
	left: -16px;
	width: 80px;
	height: 80px;
	background: var(--c-red);
}

.accent-corner img {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 2px;
}

/* --------------------------------------------------------------
# Issues page
-------------------------------------------------------------- */

.issues-hero {
	position: relative;
	background: var(--c-navy);
	padding: 96px 0 82px;
	overflow: hidden;
}

.issues-hero__texture {
	position: absolute;
	inset: 0;
	background-image: url("../img/hero-texture.png");
	background-size: cover;
	background-position: center;
	mix-blend-mode: plus-lighter;
	opacity: 0.25;
}

.issues-hero__content {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 22px;
	align-items: center;
	text-align: center;
}

.issues-hero__lead {
	max-width: 607px;
}

.issues-hero__content .pill-row {
	justify-content: center;
}

.issues-browser {
	background: #fff;
	padding: 110px 0;
	scroll-margin-top: 90px;
}

.issues-browser__grid {
	display: grid;
	grid-template-columns: 366px minmax(0, 1fr);
	gap: 73px;
	align-items: start;
}

.issues-browser__label {
	font-family: var(--font-condensed);
	font-size: 32px;
	font-weight: 700;
	line-height: 1.1;
	text-transform: uppercase;
	color: var(--c-navy);
	margin: 0 0 24px;
}

.issues-browser__nav {
	display: flex;
	flex-direction: column;
}

.issues-browser__btn {
	display: flex;
	align-items: center;
	gap: 17px;
	min-height: 71px;
	padding: 12px 0;
	background: none;
	border: 0;
	border-bottom: 1px solid var(--c-parchment);
	text-align: left;
	font-family: var(--font-condensed);
	font-size: 22px;
	font-weight: 700;
	line-height: 1.18;
	text-transform: uppercase;
	color: var(--c-navy);
	cursor: pointer;
	transition: color 0.12s ease;
}

.issues-browser__star {
	color: var(--c-red);
	font-family: var(--font-sans);
	font-size: 20px;
	font-weight: 600;
	flex-shrink: 0;
}

.issues-browser__btn:hover,
.issues-browser__btn.is-active {
	color: var(--c-red);
}

.issue-panel {
	display: none;
	flex-direction: column;
	gap: 30px;
	scroll-margin-top: 100px; /* clear the sticky nav when a hero pill anchors here */
}

.issue-panel.is-active {
	display: flex;
}

/* Fade + slide the detail panel in when switching issues (desktop tab view).
   The keyframe re-runs each time a panel gains .is-active. */
@media (min-width: 901px) and (prefers-reduced-motion: no-preference) {
	@keyframes issue-panel-in {
		from {
			opacity: 0;
			transform: translateY(12px);
		}
		to {
			opacity: 1;
			transform: none;
		}
	}

	.issue-panel.is-active {
		animation: issue-panel-in 0.45s cubic-bezier(0.22, 1, 0.36, 1);
	}
}

.issue-panel__title {
	display: flex;
	align-items: center;
	gap: 20px;
	font-family: var(--font-condensed);
	font-size: 46px;
	font-weight: 700;
	line-height: 1;
	color: var(--c-navy);
	margin: 0;
}

.issue-panel__star {
	font-size: 34px;
}

.issue-panel__lead {
	font-size: 17px;
	line-height: 27px;
	color: var(--c-gravel);
	margin: 0;
}

.issue-panel__img {
	width: 100%;
	height: 348px;
	object-fit: cover;
	border-radius: 2px;
}

.issue-panel__body p {
	font-size: 17px;
	line-height: 27px;
	color: var(--c-gravel);
	margin: 0 0 16px;
}

.issue-panel__body p:last-child {
	margin-bottom: 0;
}

/* --------------------------------------------------------------
# About page
-------------------------------------------------------------- */

.about-hero {
	position: relative;
	background: var(--c-navy);
	padding: 96px 0;
	overflow: hidden;
}

.about-hero__grid {
	position: relative;
	display: grid;
	/* Left column a touch wider than the Figma 1.05fr so the three badge
	   pills sit on one line (the bio has its own 520px cap, so it doesn't
	   reflow — only the pill row uses the extra width). */
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
	gap: 80px;
	align-items: center;
}

.about-hero__copy {
	display: flex;
	flex-direction: column;
	gap: 22px;
	align-items: flex-start;
	max-width: 600px;
}

.about-hero__media {
	aspect-ratio: 535 / 668;
	background: var(--c-gravel);
}

.about-hero__media::before {
	width: 96px;
	height: 96px;
}

.chapter {
	background: #fff;
	padding: 110px 0;
}

/* Zebra rhythm per Figma: the alternating (image-right) chapter sits on the
   off-white section tone; the image-left chapters stay white. */
.chapter--img-right {
	background: var(--c-section);
}

.chapter__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 80px;
	align-items: center;
}

.chapter__media {
	height: 657px;
	background: #e6e1d5;
	order: 0;
}

.chapter--img-right .chapter__media {
	order: 2;
}

.chapter--img-right .chapter__media.accent-corner::before {
	left: auto;
	right: -16px;
}

.chapter__copy {
	display: flex;
	flex-direction: column;
	gap: 6px;
	align-items: flex-start;
	max-width: 540px;
	order: 1;
}

.chapter__lead {
	font-family: var(--font-serif);
	font-size: 22px;
	line-height: 33px;
	color: #1a1e2a;
	margin: 14px 0 0;
}

.chapter__body {
	margin-top: 10px;
}

.chapter__body p {
	font-size: 17px;
	line-height: 28px;
	color: var(--c-gravel);
	margin: 0 0 14px;
}

.chapter__body p:last-child {
	margin-bottom: 0;
}

.checklist {
	list-style: none;
	margin: 22px 0 0;
	padding: 0;
	border-top: 1px solid #e4e4e4;
	width: 100%;
	max-width: 480px;
}

.checklist__row {
	display: flex;
	align-items: center;
	gap: 27px;
	min-height: 81px;
	padding: 16px 0;
	border-bottom: 1px solid #e4e4e4;
	font-size: 18px;
	line-height: 24px;
	color: var(--c-gravel);
}

.checklist__row strong {
	color: #1a1e2a;
}

.checklist__icon {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	color: var(--c-red);
}

.checklist__icon svg {
	width: 24px;
	height: 24px;
}

.pill-row--light {
	padding-top: 18px;
}

.chapter__cta {
	margin-top: 24px;
}

/* Pull quote variant without a photo (About page) */

.quote--plain {
	padding: 0;
}

.quote__content--centered {
	align-items: center;
	text-align: center;
	padding: 110px 32px;
	gap: 14px;
}

.quote__text--centered {
	letter-spacing: -0.005em;
}

/* From day one cards */

.fdo {
	background: #fff;
	padding: 120px 0;
}

.fdo__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.issue-card--flat {
	min-height: 0;
	height: auto;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* --------------------------------------------------------------
# Interactions — hover states
# Gated behind `hover: hover` so they only apply on devices that truly
# hover. On touchscreens this prevents a tapped element (e.g. a footer
# social icon) from getting stuck in its hover state after the tap.
-------------------------------------------------------------- */

@media (hover: hover) {
	/* Endorsement bar: brighten + nudge the arrow */
	.endorse-bar__link:hover {
		color: #fff;
	}
	.endorse-bar__link:hover .endorse-bar__arrow {
		transform: translateX(3px);
	}

	.endorse-bar__link:hover .endorse-bar__text::after {
		transform: scaleX(1);
	}

	/* Photo-strip tiles ("Delivering for Arkansas"): rise + slight zoom highlight */
	.strip__tile:hover {
		transform: translateY(-6px);
		box-shadow: 0 14px 30px rgba(10, 26, 54, 0.28);
	}
	.strip__tile:hover .strip__img {
		transform: scale(1.05);
	}

	/* Meet Tom stat blocks ("About Tom"): figure shifts to red */
	.about__stat:hover .about__stat-figure {
		color: var(--c-red);
	}

	/* About → "From day one." cards: rise + shadow */
	.issue-card--flat:hover {
		transform: translateY(-4px);
		box-shadow: 0 12px 26px rgba(10, 26, 54, 0.14);
	}

	/* Footer social icons */
	.site-footer__social-link:hover {
		border-color: var(--c-red);
	}

	.site-footer__social-link:hover svg {
		color: #fff;
	}
}

/* --------------------------------------------------------------
# Entrance animations
# JS tags below-the-fold sections with `.anim-init` (hidden), then adds
# `.anim-in` as they scroll into view. The transition lives on `.anim-in`
# so the initial hide is instant (no off-screen fade-out) and only the
# reveal animates. Scoped to no-reduced-motion; no-JS = nothing hidden.
-------------------------------------------------------------- */

@media (prefers-reduced-motion: no-preference) {
	.anim-init {
		opacity: 0;
		transform: translateY(28px);
	}

	.anim-init.anim-in {
		opacity: 1;
		transform: none;
		transition: opacity 0.7s ease, transform 0.7s ease;
	}

	/* Hero content animates in on load. It's above the fold, so this is a load
	   entrance (CSS keyframe) rather than a scroll-triggered one — `backwards`
	   shows the start state from first paint, so there's no flash and no
	   dependency on JS. After it runs, the element rests at its natural state. */
	@keyframes cotton-entrance {
		from {
			opacity: 0;
			transform: translateY(28px);
		}
		to {
			opacity: 1;
			transform: none;
		}
	}

	.form-hero__copy,
	.form-hero__centered,
	.form-hero__form,
	.about-hero__copy,
	.about-hero__media,
	.issues-hero__content {
		animation: cotton-entrance 0.7s ease 0.05s backwards;
	}

	/* Homepage hero: stagger the sub-elements into a layered cascade instead of
	   animating the whole block at once. */
	.hero__eyebrow {
		animation: cotton-entrance 0.6s ease 0.1s backwards;
	}

	.hero__heading {
		animation: cotton-entrance 0.6s ease 0.22s backwards;
	}

	.hero__subtitle {
		animation: cotton-entrance 0.6s ease 0.34s backwards;
	}

	.hero__ctas {
		animation: cotton-entrance 0.6s ease 0.46s backwards;
	}
}

/* --------------------------------------------------------------
# Responsive
-------------------------------------------------------------- */

@media (max-width: 1100px) {
	.about__grid {
		gap: 48px;
	}

	.about__media {
		height: 560px;
	}

	.about__photo-bg {
		height: 80%;
	}

	.issues__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.issue-card {
		min-height: 0;
	}
}

@media (max-width: 900px) {
	/* Collapse the primary nav to a toggle */
	.menu-toggle {
		display: block;
	}

	.main-navigation ul {
		display: none;
	}

	/* Full-screen overlay menu (replaces the old dropdown) */
	.main-navigation.toggled ul {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 28px;
		position: fixed;
		inset: 0;
		z-index: 200;
		margin: 0;
		padding: 0;
		background: var(--c-navy);
	}

	.main-navigation.toggled li {
		margin: 0;
	}

	.main-navigation.toggled li a {
		display: block;
		padding: 4px 0;
		border-bottom-color: transparent;
		font-size: 26px;
		color: #fff;
	}

	/* Keep the toggle above the overlay and morph it into an X */
	.menu-toggle {
		position: relative;
		z-index: 201;
	}

	.main-navigation.toggled .menu-toggle__bars {
		background: transparent;
	}

	.main-navigation.toggled .menu-toggle__bars::before {
		top: 0;
		background: #fff;
		transform: rotate(45deg);
	}

	.main-navigation.toggled .menu-toggle__bars::after {
		top: 0;
		background: #fff;
		transform: rotate(-45deg);
	}

	.site-nav {
		/* Stay stuck to the top on mobile too (matches desktop). The toggled
		   menu is position:fixed/inset:0 at a higher z-index, so the overlay
		   still covers the full viewport over the sticky bar. */
		position: sticky;
		top: 0;
	}

	.site-nav__inner {
		position: relative;
		padding: 10px 16px;
		gap: 12px;
		/* Stay on the desktop grid, but collapse to: logo (takes the slack) |
		   Donate | hamburger. The two auto columns hug the right edge, and the
		   order props put Donate before the hamburger (DOM order is logo, nav,
		   Donate). */
		grid-template-columns: 1fr auto auto;
	}

	.site-nav__logo img {
		height: 42px;
	}

	.btn-pill {
		order: 1;
		padding: 10px 18px;
		font-size: 12px;
	}

	.main-navigation {
		order: 2;
		position: static;
	}

	.endorse-bar {
		padding: 8px 12px;
	}

	.endorse-bar__link {
		font-size: 11px;
		gap: 8px;
		flex-wrap: wrap;
	}

	.about {
		padding: 80px 0;
	}

	.about__grid {
		grid-template-columns: 1fr;
	}

	.about__media {
		max-width: 520px;
		height: 480px;
	}

	.strip__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-auto-rows: 240px;
	}

	.strip__tile--tall {
		grid-column: span 2;
	}

	.join {
		padding: 72px 0;
	}

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

	.form-hero__grid,
	.about-hero__grid,
	.chapter__grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.chapter--img-right .chapter__media {
		order: 0;
	}

	.chapter__media {
		height: 420px;
		max-width: 560px;
	}

	.about-hero__media {
		max-width: 440px;
	}

	.issues-browser__grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	/* Mobile: drop the issue selector and just stack every issue open —
	   the tabbed picker is confusing in a single column. */
	.issues-browser__sidebar {
		display: none;
	}

	.issues-browser__panels {
		display: flex;
		flex-direction: column;
		gap: 56px;
	}

	.issue-panel,
	.issue-panel[hidden] {
		display: flex;
	}

	/* No issue imagery on mobile — copy-only stacked panels. */
	.issue-panel__img {
		display: none;
	}

	.fdo__grid {
		grid-template-columns: 1fr;
		max-width: 560px;
		margin: 0 auto;
	}

	.donate-card {
		padding: 40px 32px;
	}

	.donate-card__grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.site-footer__top {
		grid-template-columns: 1fr;
		justify-items: center;
		gap: 28px;
		text-align: center;
	}
}

@media (max-width: 600px) {
	.section-heading {
		font-size: 36px;
	}

	.hero__content {
		padding: 72px 24px;
	}

	.hero {
		min-height: 520px;
	}

	.container {
		padding-left: 24px;
		padding-right: 24px;
	}

	.about__media {
		height: 400px;
	}

	.strip {
		padding: 72px 0;
	}

	.strip__grid {
		grid-template-columns: 1fr;
	}

	.strip__tile--tall {
		grid-column: auto;
		grid-row: auto;
	}

	.issues {
		padding: 80px 0;
	}

	.issues__grid {
		grid-template-columns: 1fr;
	}

	.quote__content {
		padding: 80px 24px;
	}

	.quote__mark {
		font-size: 90px;
		height: 40px;
	}

	.about__stats {
		grid-template-columns: 1fr;
	}

	.donate-banner {
		padding: 72px 20px;
	}

	.donate-card__heading {
		font-size: 38px;
	}

	.endorse-bar__link {
		/* Keep the endorsement CTA on one line at phone widths — drop the arrow
		   and scale the text down to fit rather than wrapping. */
		flex-wrap: nowrap;
		white-space: nowrap;
		font-size: clamp(9px, 2.6vw, 11px);
		gap: 6px;
	}

	.endorse-bar__arrow {
		display: none;
	}
}

/* --------------------------------------------------------------
# 404 page
-------------------------------------------------------------- */

.error-hero {
	position: relative;
	background: var(--c-navy);
	padding: 140px 0 130px;
	overflow: hidden;
	text-align: center;
}

.error-hero__texture {
	position: absolute;
	inset: 0;
	background-image: url("../img/hero-texture.png");
	background-size: cover;
	background-position: center;
	mix-blend-mode: plus-lighter;
	opacity: 0.25;
}

.error-hero__content {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 22px;
}

.error-hero__eyebrow {
	color: var(--c-parchment);
	opacity: 0.85;
}

.error-hero__lead {
	font-family: var(--font-serif);
	font-size: 22px;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.88);
	max-width: 560px;
	margin: 0;
}

.error-hero__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
	margin-top: 10px;
}

@media (max-width: 600px) {
	.error-hero {
		padding: 90px 0 84px;
	}

	.error-hero__actions {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
	}
}
