/*
 * ICAM 2026 — shared component stylesheet
 * Consolidates the per-page inline CSS from the static mockups.
 * Tokens come from theme.json presets (--wp--preset--color--*), never raw hex.
 */

/* ---------- Layout: flush full-bleed sections ---------- */
/*
 * WordPress applies a 24px root block gap between top-level template blocks
 * (:where(.wp-site-blocks) > *). This theme's full-bleed sections carry their
 * own padding and must butt flush (header / main / values bar / footer, and
 * every colored band inside main), so zero the root gap.
 */
.wp-site-blocks > * {
	margin-block-start: 0;
	margin-block-end: 0;
}

/* ---------- Accessibility: skip link ---------- */
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.skip-link:focus {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 200;
	width: auto;
	height: auto;
	clip: auto;
	margin: 0;
	padding: 12px 20px;
	background: var(--wp--preset--color--accent);
	color: var(--wp--preset--color--paper);
	font-family: var(--wp--preset--font-family--heading);
	font-size: 0.875rem;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

/* ---------- Header ---------- */
.wrap {
	max-width: 1160px;
	margin: 0 auto;
	padding: 0 32px;
}
.site-header {
	border-bottom: 1px solid var(--wp--preset--color--paper-shadow);
}
.site-header .wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 32px;
	gap: 24px;
}
.brand {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: var(--wp--preset--color--ink);
}
.brand img {
	height: 38px;
	width: 38px;
	object-fit: contain;
}
.word {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	line-height: 1.1;
	color: var(--wp--preset--color--accent);
}

/* ---------- Primary nav ---------- */
.site-nav {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 13px;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
}
.site-nav a {
	color: var(--wp--preset--color--ink);
	text-decoration: none;
}
.site-nav a:hover,
.site-nav a:focus-visible {
	color: var(--wp--preset--color--accent);
}

/* ---------- Header search field ---------- */
.navsearch {
	display: flex;
	align-items: center;
	background: #fff;
	border: 1px solid var(--wp--preset--color--paper-shadow);
	border-radius: 4px;
	overflow: hidden;
}
.navsearch:focus-within {
	border-color: var(--wp--preset--color--accent);
}
.navsearch input[type="search"] {
	border: none;
	background: transparent;
	font-family: var(--wp--preset--font-family--sans);
	font-size: 12.5px;
	letter-spacing: normal;
	text-transform: none;
	padding: 6px 4px 6px 10px;
	width: 120px;
	color: var(--wp--preset--color--ink);
}
.navsearch input[type="search"]::placeholder {
	color: #8a8478;
}
.navsearch input[type="search"]:focus {
	outline: none;
}
.navsearch button {
	border: none;
	background: transparent;
	cursor: pointer;
	padding: 6px 9px;
	font-size: 14px;
	line-height: 1;
	color: var(--wp--preset--color--accent);
}
@media (max-width: 600px) {
	.navsearch input[type="search"] { width: 100%; }
	.navsearch { flex: 1; min-width: 160px; }
}

/* ---------- Weekly ▾ dropdown ---------- */
.navdrop {
	position: relative;
	padding-bottom: 14px;
	margin-bottom: -14px;
}
.navdrop-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	margin-top: 0;
	background: #fff;
	border: 1px solid var(--wp--preset--color--paper-shadow);
	border-radius: 6px;
	padding: 8px 0;
	min-width: 250px;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
	z-index: 80;
}
.navdrop:hover .navdrop-menu,
.navdrop:focus-within .navdrop-menu {
	display: block;
}
.navdrop-menu a {
	display: block;
	padding: 9px 18px;
	font-size: 12.5px;
	letter-spacing: 0.02em;
	text-transform: none;
	font-weight: 400;
}
.navdrop-menu a:hover,
.navdrop-menu a:focus-visible {
	background: var(--wp--preset--color--paper);
	color: var(--wp--preset--color--accent);
}

/* ---------- Active page (current nav item) ---------- */
.site-nav a[aria-current="page"],
.site-nav .navdrop.is-active > a,
.navdrop-menu a[aria-current="page"] {
	color: var(--wp--preset--color--accent);
	font-weight: 700;
}
.site-nav > a[aria-current="page"],
.site-nav .navdrop.is-active > a {
	box-shadow: inset 0 -2px 0 0 var(--wp--preset--color--accent);
}

/* ---------- Mobile nav toggle (hamburger) ---------- */
.nav-toggle {
	display: none;
	appearance: none;
	background: transparent;
	border: 1px solid var(--wp--preset--color--paper-shadow);
	border-radius: 4px;
	padding: 10px;
	cursor: pointer;
	color: var(--wp--preset--color--ink);
}
.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
	display: block;
	width: 22px;
	height: 2px;
	background: currentColor;
	border-radius: 2px;
}
.nav-toggle-bars {
	position: relative;
}
.nav-toggle-bars::before,
.nav-toggle-bars::after {
	content: "";
	position: absolute;
	left: 0;
}
.nav-toggle-bars::before { top: -7px; }
.nav-toggle-bars::after  { top: 7px; }
@media (prefers-reduced-motion: no-preference) {
	.nav-toggle-bars,
	.nav-toggle-bars::before,
	.nav-toggle-bars::after { transition: transform 0.2s ease, opacity 0.2s ease; }
}
.site-header.nav-open .nav-toggle-bars { background: transparent; }
.site-header.nav-open .nav-toggle-bars::before { top: 0; transform: rotate(45deg); }
.site-header.nav-open .nav-toggle-bars::after  { top: 0; transform: rotate(-45deg); }

/* ---------- Header responsive collapse ---------- */
@media (max-width: 860px) {
	.site-header .wrap { flex-wrap: wrap; row-gap: 0; }
	.nav-toggle { display: inline-flex; }
	.site-nav {
		display: none;
		order: 3;
		flex-basis: 100%;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding-top: 8px;
	}
	.site-header.nav-open .site-nav { display: flex; }
	.site-nav > a,
	.navdrop > a {
		padding: 13px 4px;
		border-top: 1px solid var(--wp--preset--color--paper-shadow);
	}
	.site-nav > a[aria-current="page"] { box-shadow: inset 3px 0 0 0 var(--wp--preset--color--accent); }
	/* Weekly submenu: shown inline (indented), no hover needed on touch */
	.navdrop { position: static; padding-bottom: 0; margin-bottom: 0; }
	.navdrop > a::after { content: ""; }
	.navdrop-menu {
		display: block;
		position: static;
		border: none;
		border-radius: 0;
		box-shadow: none;
		min-width: 0;
		padding: 0 0 4px;
		background: transparent;
	}
	.navdrop-menu a { padding-left: 20px; }
	.navsearch { order: 4; flex-basis: 100%; margin-top: 10px; }
	.navsearch input[type="search"] { width: 100%; }
}

/* ---------- Buttons & badge ---------- */
.btn {
	display: inline-block;
	font-family: var(--wp--preset--font-family--heading);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	padding: 13px 26px;
	border-radius: 3px;
	text-decoration: none;
}
.btn-primary {
	background: var(--wp--preset--color--accent);
	color: #fff;
}
.btn-outline {
	background: transparent;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.7);
}
.btn-outline-dark {
	background: transparent;
	color: var(--wp--preset--color--ink);
	border: 1px solid var(--wp--preset--color--ink);
}
.badge {
	display: inline-block;
	background: var(--wp--preset--color--accent);
	color: #fff;
	font-family: var(--wp--preset--font-family--heading);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.04em;
	padding: 4px 11px;
	border-radius: 3px;
	text-transform: uppercase;
}

/* ---------- Hero (homepage) ---------- */
.hero {
	position: relative;
	overflow: hidden;
	min-height: 560px;
	display: flex;
	align-items: center;
	background: var(--wp--preset--color--ink);
}
.hero img.base {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 15%;
	filter: grayscale(1) contrast(1.05) brightness(0.8);
	opacity: 0.9;
}
.hero .tint-ink {
	position: absolute;
	inset: 0;
	background: var(--wp--preset--color--ink);
	opacity: 0.5;
	mix-blend-mode: multiply;
}
.hero img.scan {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	mix-blend-mode: screen;
	opacity: 0.6;
	filter: grayscale(1) sepia(1) hue-rotate(300deg) saturate(4) brightness(1.05) contrast(1.15);
}
.hero .tint-blue {
	position: absolute;
	inset: 0;
	background: var(--wp--preset--color--accent);
	opacity: 0.35;
	mix-blend-mode: multiply;
}
.hero .scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(100deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.3) 75%, rgba(0, 0, 0, 0.05) 95%, rgba(0, 0, 0, 0) 100%);
}
.hero-content {
	position: relative;
	z-index: 2;
	padding: 80px 32px;
	max-width: 640px;
}
.hero h1 {
	margin: 14px 0 18px;
	font-family: var(--wp--preset--font-family--heading);
	font-size: 48px;
	line-height: 0.98;
	color: #fff;
	text-transform: uppercase;
}
.hero .hero-accent {
	color: var(--wp--preset--color--accent-light);
}
.hero p.sub {
	color: #e7e2da;
	font-size: 17px;
	line-height: 1.6;
	max-width: 480px;
	margin: 0 0 28px;
}
.hero .ctas {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

/* ---------- Mission ---------- */
.mission {
	padding: 56px 32px;
	text-align: center;
}
.mission .tagline {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.08em;
	color: var(--wp--preset--color--accent);
	text-transform: uppercase;
	margin: 0 0 14px;
}
.mission p {
	max-width: 640px;
	margin: 0 auto;
	font-size: 16px;
	line-height: 1.7;
	color: #2a2a2a;
}

/* ---------- Divider ---------- */
.divider {
	border-top: 1px solid var(--wp--preset--color--paper-shadow);
}

/* ---------- Section head ---------- */
.section-head {
	text-align: center;
	margin: 0 0 32px;
}
.section-head .eyebrow {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.06em;
	color: var(--wp--preset--color--accent);
	text-transform: uppercase;
}
.section-head h2 {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 28px;
	text-transform: uppercase;
	margin: 6px 0 0;
}

/* ---------- Weeks grid ---------- */
section.weeks {
	padding: 56px 32px;
}
.weekgrid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
.weekcard {
	background: #fff;
	border: 1px solid var(--wp--preset--color--paper-shadow);
	border-radius: 6px;
	overflow: hidden;
}
.weekcard .bar {
	height: 6px;
}
.weekcard .body {
	padding: 18px 16px;
}
.weekcard .num {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.05em;
	color: var(--wp--preset--color--accent);
	text-transform: uppercase;
}
.weekcard h3 {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 16px;
	line-height: 1.15;
	margin: 6px 0 8px;
	text-transform: uppercase;
}
.weekcard p {
	font-size: 13px;
	line-height: 1.5;
	color: #4a4a4a;
	margin: 0 0 12px;
}
.weekcard a {
	font-size: 13px;
	font-weight: 600;
}
@media (max-width: 900px) {
	.weekgrid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
	.weekgrid { grid-template-columns: 1fr; }
}

/* ---------- Myth teaser ---------- */
section.myth {
	padding: 56px 32px;
	background: var(--wp--preset--color--paper-shadow);
}
.mythlist {
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.mythrow {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	padding: 26px 30px;
	color: #fff;
	position: relative;
}
.mythrow + .mythrow {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.mythrow .iconwrap {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	flex-shrink: 0;
}
.mythrow .content {
	display: flex;
	flex: 1;
	gap: 28px;
	flex-wrap: wrap;
	padding-top: 2px;
}
.mythrow .m,
.mythrow .r {
	flex: 1;
	min-width: 220px;
}
.mythrow .r {
	border-left: 1px solid rgba(255, 255, 255, 0.18);
	padding-left: 28px;
}
.mythrow .label {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	opacity: 0.65;
}
.mythrow .r .label {
	color: var(--wp--preset--color--accent-light);
	opacity: 1;
}
.mythrow .m p {
	margin: 5px 0 0;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.4;
}
.mythrow .r p {
	margin: 5px 0 0;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.5;
	color: #e9e6e0;
}
.myth-cta {
	text-align: center;
	margin-top: 28px;
}
@media (max-width: 640px) {
	.mythrow { flex-direction: column; gap: 12px; }
	.mythrow .content { flex-direction: column; gap: 14px; }
	.mythrow .r { border-left: none; padding-left: 0; border-top: 1px solid rgba(255, 255, 255, 0.15); padding-top: 12px; }
}

/* ---------- Paths CTA ---------- */
section.paths {
	padding: 24px 32px 56px;
}
.pathgrid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
.pathcard {
	border-radius: 6px;
	padding: 32px;
}
.pathcard.help {
	background: var(--wp--preset--color--ink);
	color: #fff;
}
.pathcard.learn {
	background: #fff;
	border: 1px solid var(--wp--preset--color--paper-shadow);
}
.pathcard .icon {
	font-size: 26px;
	margin-bottom: 12px;
	display: block;
}
.pathcard h3 {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 19px;
	text-transform: uppercase;
	margin: 0 0 10px;
}
.pathcard p {
	font-size: 14px;
	line-height: 1.6;
	margin: 0 0 18px;
}
.pathcard.help p {
	color: #d8d4cc;
}
.pathcard.learn p {
	color: #4a4a4a;
}
@media (max-width: 700px) {
	.pathgrid { grid-template-columns: 1fr; }
}

/* ---------- Quote banner ---------- */
.quote-banner {
	position: relative;
	overflow: hidden;
	min-height: 340px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.quote-banner img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(1) contrast(1.05) brightness(0.7);
}
.quote-banner .tint {
	position: absolute;
	inset: 0;
	background: var(--wp--preset--color--navy);
	opacity: 0.6;
	mix-blend-mode: multiply;
}
.quote-banner blockquote {
	position: relative;
	z-index: 2;
	max-width: 680px;
	margin: 0 32px;
	font-family: var(--wp--preset--font-family--heading);
	font-size: 26px;
	line-height: 1.3;
	color: #fff;
	font-weight: 500;
	text-transform: uppercase;
}
.quote-banner cite {
	position: relative;
	z-index: 2;
	display: block;
	margin-top: 16px;
	font-family: var(--wp--preset--font-family--accent);
	font-size: 20px;
	font-style: normal;
	color: var(--wp--preset--color--accent-light);
}
.quote-banner .quote-source {
	position: relative;
	z-index: 2;
	display: inline-block;
	margin-top: 18px;
	font-family: var(--wp--preset--font-family--heading);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #fff;
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
	padding-bottom: 2px;
}
.quote-banner .quote-source:hover,
.quote-banner .quote-source:focus-visible {
	color: var(--wp--preset--color--accent-light);
	border-color: var(--wp--preset--color--accent-light);
}

/* ---------- Involve band ---------- */
.involve {
	background: var(--wp--preset--color--accent);
	color: #fff;
	padding: 56px 32px;
	text-align: center;
}
.involve h2 {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 26px;
	text-transform: uppercase;
	margin: 0 0 10px;
}
.involve p {
	max-width: 560px;
	margin: 0 auto 22px;
	font-size: 15px;
	line-height: 1.6;
	color: #dceaf0;
}

/* ---------- Page hero (simple, centered) ---------- */
.inner {
	max-width: 960px;
	margin: 0 auto;
}
.pagehero {
	padding: 56px 32px 40px;
	text-align: center;
}
.pagehero .eyebrow {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.06em;
	color: var(--wp--preset--color--accent);
	text-transform: uppercase;
}
.pagehero h1 {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 38px;
	text-transform: uppercase;
	margin: 8px 0 16px;
}
.pagehero p {
	max-width: 680px;
	margin: 0 auto;
	font-size: 16px;
	line-height: 1.7;
	color: #2a2a2a;
}

/* ---------- Urgent / crisis bar (safety) ---------- */
.urgent {
	background: var(--wp--preset--color--ink);
	color: #fff;
	padding: 22px 32px;
	text-align: center;
}
.urgent .wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
}
.urgent p {
	margin: 0;
	font-size: 15px;
}
.urgent strong {
	color: var(--wp--preset--color--accent-light);
}

/* ---------- Help section: left-aligned section head ---------- */
section.help {
	padding: 48px 32px 8px;
}
.section-head--left {
	text-align: left;
	margin: 0 0 24px;
}
.section-head--left h2 {
	font-size: 22px;
}
.section-head--left p {
	font-size: 14.5px;
	color: #4a4a4a;
	margin: 8px 0 0;
	max-width: 680px;
}

/* ---------- Resource cards ---------- */
.rescards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-bottom: 48px;
}
.rescard {
	background: #fff;
	border: 1px solid var(--wp--preset--color--paper-shadow);
	border-radius: 8px;
	padding: 22px 24px;
}
.rescard .tag {
	display: inline-block;
	font-family: var(--wp--preset--font-family--heading);
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #fff;
	background: var(--wp--preset--color--accent);
	padding: 3px 9px;
	border-radius: 3px;
	margin-bottom: 10px;
}
.rescard h4 {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 16px;
	line-height: 1.3;
	margin: 0 0 8px;
}
.rescard p {
	font-size: 13.5px;
	line-height: 1.6;
	color: #4a4a4a;
	margin: 0 0 12px;
}
.rescard .num {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 20px;
	font-weight: 600;
	color: var(--wp--preset--color--ink);
	margin: 0 0 6px;
	display: block;
}
.rescard a {
	font-size: 13px;
	font-weight: 600;
}
@media (max-width: 900px) {
	.rescards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
	.rescards { grid-template-columns: 1fr; }
}

/* ---------- Steps list ---------- */
.stepslist {
	max-width: 760px;
	margin: 0 auto 48px;
}
.step {
	display: flex;
	gap: 18px;
	padding: 18px 0;
	border-bottom: 1px solid var(--wp--preset--color--paper-shadow);
}
.step:last-child {
	border-bottom: none;
}
.step .n {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 22px;
	font-weight: 600;
	color: var(--wp--preset--color--accent-light);
	flex-shrink: 0;
	width: 34px;
}
.step h4 {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 15px;
	text-transform: uppercase;
	margin: 0 0 6px;
}
.step p {
	font-size: 14.5px;
	line-height: 1.65;
	color: #4a4a4a;
	margin: 0;
}
.help-note {
	font-size: 13.5px;
	color: #6a6258;
	max-width: 680px;
}

/* ---------- Article body (prose column) ---------- */
.article {
	padding: 8px 32px;
}
.article .inner {
	max-width: 720px;
}
/* About page uses the wider content width. */
.about-page .article .inner {
	max-width: 960px;
}
.article h2 {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 22px;
	text-transform: uppercase;
	margin: 40px 0 14px;
	color: var(--wp--preset--color--ink);
}
.article h2:first-child {
	margin-top: 0;
}
.article p {
	font-size: 16px;
	line-height: 1.75;
	color: #2a2a2a;
	margin: 0 0 18px;
}
/* Narrow (720px) container for sections that align to the article column. */
.inner--narrow {
	max-width: 720px;
}

/* ---------- Freedom Train Project card ---------- */
.ftpcard {
	max-width: 720px;
	margin: 24px auto 8px;
	background: #fff;
	border: 1px solid var(--wp--preset--color--paper-shadow);
	border-radius: 10px;
	padding: 30px;
	display: flex;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
}
.ftpcard img {
	width: 150px;
	height: auto;
	max-height: 90px;
	object-fit: contain;
	flex-shrink: 0;
}
.ftpcard .txt {
	flex: 1;
	min-width: 240px;
}
/* On the wider About layout, let the card fill the column. */
.about-page .ftpcard {
	max-width: none;
}
.ftpcard .txt h4 {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 15px;
	text-transform: uppercase;
	margin: 0 0 6px;
}
.ftpcard .txt p {
	font-size: 14px;
	line-height: 1.6;
	color: #4a4a4a;
	margin: 0 0 8px;
}
.ftpcard .txt a {
	font-size: 13px;
	font-weight: 600;
}

/* ---------- Get Involved: section wrapper ---------- */
/* Named .involve-page to avoid colliding with the homepage maroon .involve band. */
.involve-page {
	padding: 8px 32px;
}

/* ---------- Ways to help grid ---------- */
.waysgrid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
	margin-bottom: 48px;
}
.waycard {
	background: #fff;
	border: 1px solid var(--wp--preset--color--paper-shadow);
	border-radius: 8px;
	padding: 20px;
}
.waycard .icon {
	font-size: 20px;
	margin-bottom: 8px;
	display: block;
}
.waycard h4 {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 13.5px;
	text-transform: uppercase;
	margin: 0 0 6px;
}
.waycard p {
	font-size: 13px;
	line-height: 1.55;
	color: #4a4a4a;
	margin: 0;
}
@media (max-width: 860px) {
	.waysgrid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
	.waysgrid { grid-template-columns: 1fr; }
}

/* ---------- Advocacy card ---------- */
.advcard {
	background: #fff;
	border: 1px solid var(--wp--preset--color--paper-shadow);
	border-radius: 8px;
	padding: 26px 28px;
	margin: 0 0 48px;
}
.advcard p {
	font-size: 14.5px;
	line-height: 1.7;
	color: #2a2a2a;
	margin: 0 0 14px;
}
.advcard p:last-child {
	margin-bottom: 0;
}
.advcard .statblock {
	margin-bottom: 18px;
}
.advcard .stat {
	display: block;
	font-family: var(--wp--preset--font-family--heading);
	font-size: 36px;
	font-weight: 600;
	color: var(--wp--preset--color--accent);
	line-height: 1;
}
.advcard .statlabel {
	display: block;
	font-size: 12.5px;
	color: #6a6258;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	margin-top: 6px;
}

/* ---------- Volunteer form ---------- */
.formcard {
	margin: 0 0 8px;
	background: #fff;
	border: 1px solid var(--wp--preset--color--paper-shadow);
	border-radius: 10px;
	padding: 32px;
}
.formcard label {
	display: block;
	font-family: var(--wp--preset--font-family--heading);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: var(--wp--preset--color--ink);
	margin: 0 0 6px;
}
.formcard .row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
	margin-bottom: 18px;
}
.formcard .field {
	margin-bottom: 18px;
}
.formcard input[type="text"],
.formcard input[type="email"],
.formcard select,
.formcard textarea {
	width: 100%;
	box-sizing: border-box;
	padding: 11px 13px;
	border: 1px solid var(--wp--preset--color--paper-shadow);
	border-radius: 5px;
	font-family: var(--wp--preset--font-family--sans);
	font-size: 14px;
	background: var(--wp--preset--color--paper);
	color: var(--wp--preset--color--ink);
}
.formcard textarea {
	min-height: 120px;
	resize: vertical;
}
.formcard .consent {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 13px;
	color: #4a4a4a;
	margin: 6px 0 22px;
}
.formcard .consent input {
	margin-top: 3px;
}
.formcard .consent label {
	text-transform: none;
	font-weight: 400;
	font-family: var(--wp--preset--font-family--sans);
	font-size: 13px;
	color: #4a4a4a;
	margin: 0;
}
/* Visible focus ring on form controls (accessibility). */
.formcard input:focus-visible,
.formcard select:focus-visible,
.formcard textarea:focus-visible {
	outline: 2px solid var(--wp--preset--color--accent);
	outline-offset: 1px;
	border-color: var(--wp--preset--color--accent);
}
/* Honeypot: off-screen for humans, still fillable by bots. */
.hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}
/* Persistent safety/guidance note at the top of the form. */
.forminfo {
	margin: 0 0 22px;
	padding: 14px 16px;
	background: var(--wp--preset--color--paper);
	border: 1px solid var(--wp--preset--color--paper-shadow);
	border-left: 3px solid var(--wp--preset--color--accent);
	border-radius: 6px;
	font-family: var(--wp--preset--font-family--sans);
	font-size: 13.5px;
	line-height: 1.55;
	color: #4a4a4a;
}
.forminfo a {
	color: var(--wp--preset--color--accent);
	font-weight: 600;
}

/* Submission status message. */
.formnote {
	margin: 0 0 18px;
	padding: 12px 15px;
	border-radius: 6px;
	border: 1px solid transparent;
	font-family: var(--wp--preset--font-family--sans);
	font-size: 14px;
	line-height: 1.5;
}
.formnote--ok {
	background: #eef6ee;
	border-color: #bcd9bc;
	color: #22521f;
}
.formnote--err {
	background: var(--wp--preset--color--paper-shadow);
	border-color: var(--wp--preset--color--accent-light);
	color: var(--wp--preset--color--accent);
}
.formnote a { color: inherit; }
@media (max-width: 560px) {
	.formcard .row { grid-template-columns: 1fr; }
}

/* ---------- Myths & Facts: source note under hero ---------- */
.pagehero .source {
	max-width: 700px;
	margin: 14px auto 0;
	font-size: 13px;
	color: #6a6258;
}

/* ---------- Myths & Facts: factor groups + CAMAS list ----------
 * Scoped under .factor so this bright-tag treatment does not collide with the
 * homepage myth-teaser's dark-layer .mythrow styling. */
.factor {
	padding: 8px 32px 48px;
}
.factor .heading {
	max-width: 1096px;
	margin: 0 auto 18px;
}
.factor .heading .tag {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #fff;
	padding: 4px 10px;
	border-radius: 3px;
	display: inline-block;
	margin-bottom: 8px;
}
.factor .heading h2 {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 24px;
	text-transform: uppercase;
	margin: 0 0 6px;
}
.factor .heading p {
	font-size: 14px;
	color: #4a4a4a;
	margin: 0;
	max-width: 700px;
}
.factor .mythlist {
	max-width: 1096px;
	margin: 0 auto;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}
.factor .mythrow {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	padding: 22px 28px;
	color: #fff;
}
.factor .mythrow + .mythrow {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.factor .mythrow .num {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	opacity: 0.7;
	flex-shrink: 0;
	width: 74px;
	padding-top: 3px;
}
.factor .mythrow .iconwrap {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.14);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 17px;
	flex-shrink: 0;
}
.factor .mythrow .content {
	display: flex;
	flex: 1;
	gap: 26px;
	flex-wrap: wrap;
}
.factor .mythrow .m,
.factor .mythrow .r {
	flex: 1;
	min-width: 220px;
}
.factor .mythrow .r {
	border-left: 1px solid rgba(255, 255, 255, 0.18);
	padding-left: 26px;
}
.factor .mythrow .label {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	opacity: 0.65;
}
.factor .mythrow .r .label {
	opacity: 1;
}
.factor .mythrow .m p {
	margin: 5px 0 0;
	font-size: 14.5px;
	font-weight: 600;
	line-height: 1.4;
}
.factor .mythrow .r p {
	margin: 5px 0 0;
	font-size: 14.5px;
	font-weight: 400;
	line-height: 1.5;
	color: #f0ede6;
}
.factor .mythrow .r .cite {
	font-size: 12.5px;
	opacity: 0.75;
	display: block;
	margin-top: 4px;
}
@media (max-width: 640px) {
	.factor .mythrow { flex-direction: column; gap: 12px; }
	.factor .mythrow .content { flex-direction: column; gap: 14px; }
	.factor .mythrow .r { border-left: none; padding-left: 0; border-top: 1px solid rgba(255, 255, 255, 0.15); padding-top: 12px; }
	.factor .mythrow .num { width: auto; }
}
.refnote {
	max-width: 1096px;
	margin: 40px auto 0;
	padding: 22px 26px;
	background: #fff;
	border: 1px solid var(--wp--preset--color--paper-shadow);
	border-radius: 8px;
	font-size: 13px;
	line-height: 1.7;
	color: #4a4a4a;
}
.refnote strong {
	color: var(--wp--preset--color--ink);
}

/* ======================================================================
   WEEK / LAUNCH SYSTEM (launch.html, week1–5.html)
   Colors are scoped by .week-1..5 / .launch so per-week hues don't collide.
   ====================================================================== */

/* ---------- Week hero ---------- */
.weekhero {
	position: relative;
	overflow: hidden;
	min-height: 340px;
	display: flex;
	align-items: center;
}
.weekhero img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(1) contrast(1.05) brightness(0.55);
}
.weekhero .tint {
	position: absolute;
	inset: 0;
	opacity: 0.55;
	mix-blend-mode: multiply;
}
.weekhero .scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(100deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.5) 55%, rgba(0, 0, 0, 0.15) 100%);
}
.weekhero-content {
	position: relative;
	z-index: 2;
	padding: 64px 0;
	max-width: 720px;
}
.weekhero .eyebrow {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
	color: var(--wp--preset--color--accent-light);
	text-transform: uppercase;
}
.weekhero h1 {
	margin: 12px 0 16px;
	font-family: var(--wp--preset--font-family--heading);
	font-size: 40px;
	line-height: 1.05;
	color: #fff;
	text-transform: uppercase;
}
.weekhero p.sub {
	color: #e7e2da;
	font-size: 16px;
	line-height: 1.6;
	max-width: 600px;
	margin: 0 0 22px;
}
.hashtags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.hashtags span {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 11.5px;
	letter-spacing: 0.03em;
	color: #cfd8dc;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 20px;
	padding: 4px 11px;
}

/* ---------- Per-week color theming ---------- */
.week-1 .weekhero, .week-1 .weekhero .tint, .week-1 .callout { background: var(--wp--preset--color--navy); }
.week-1 .article h3 { color: var(--wp--preset--color--navy-tag); }
.week-2 .weekhero, .week-2 .weekhero .tint, .week-2 .callout { background: var(--wp--preset--color--olive); }
.week-2 .article h3 { color: var(--wp--preset--color--olive-tag); }
.week-3 .weekhero, .week-3 .weekhero .tint, .week-3 .callout { background: var(--wp--preset--color--maroon); }
.week-3 .article h3 { color: var(--wp--preset--color--maroon-tag); }
.week-4 .weekhero, .week-4 .weekhero .tint, .week-4 .callout { background: var(--wp--preset--color--teal); }
.week-4 .article h3 { color: var(--wp--preset--color--teal-tag); }
/* Launch + Week 5 capstone bookends: brand maroon over ink, no image. */
.week-5 .weekhero, .launch .weekhero { background: var(--wp--preset--color--ink); min-height: 320px; }
.week-5 .weekhero .tint, .launch .weekhero .tint { background: var(--wp--preset--color--accent); opacity: 0.4; }

/* ---------- Week/Launch article overrides ---------- */
.article p.lede {
	font-size: 18px;
	line-height: 1.7;
	color: var(--wp--preset--color--ink);
}
.article .cite-inline {
	color: #6a6258;
}
.week .article, .launch .article {
	padding: 56px 32px 8px;
}
.week .article .inner, .launch .article .inner {
	max-width: 760px;
}
/* Tactic weeks (1–4) use larger h2 + colored h3 subheads. */
.tactic .article h2 {
	font-size: 24px;
	margin: 44px 0 16px;
}
.tactic .article h3 {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	margin: 26px 0 10px;
}

/* ---------- Myth/reality callout (inline in week article) ---------- */
.callout {
	max-width: 760px;
	margin: 8px auto 40px;
	border-radius: 8px;
	padding: 26px 30px;
	color: #fff;
}
.callout .label {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	opacity: 0.65;
}
.callout .m p {
	margin: 5px 0 16px;
	font-size: 15px;
	font-weight: 600;
	color: #fff;
}
.callout .r .label {
	color: var(--wp--preset--color--accent-light);
	opacity: 1;
}
.callout .r p {
	margin: 5px 0 0;
	font-size: 15px;
	color: #e9e6e0;
}

/* ---------- References list ---------- */
.refs {
	padding: 8px 32px 56px;
}
.refs .inner {
	max-width: 760px;
	margin: 0 auto;
}
.refs h2 {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 20px;
	text-transform: uppercase;
	margin: 0 0 18px;
}
.refs p {
	font-size: 13.5px;
	line-height: 1.7;
	color: #4a4a4a;
	margin: 0 0 12px;
	padding-left: 26px;
	text-indent: -26px;
}

/* ---------- Resources to share ---------- */
section.resources {
	padding: 48px 32px 56px;
	background: var(--wp--preset--color--paper-shadow);
}
.resources .inner {
	max-width: 960px;
	margin: 0 auto;
}
.resources .section-head {
	text-align: left;
	margin: 0 0 30px;
}
.resources .section-head h2 {
	font-size: 24px;
	margin: 6px 0 0;
}
.reslabel {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--wp--preset--color--ink);
	margin: 0 0 14px;
	padding-bottom: 8px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.resources .rescards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-bottom: 36px;
}
.resources .rescard {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 6px;
	padding: 18px 20px;
}
.resources .rescard h4 {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 14.5px;
	line-height: 1.3;
	margin: 0 0 6px;
}
.resources .rescard p {
	font-size: 13px;
	line-height: 1.55;
	color: #4a4a4a;
	margin: 0 0 10px;
}
.resources .rescard a {
	font-size: 12.5px;
	font-weight: 600;
}

/* ---------- Free-to-use assets (weeks 1–4) ---------- */
section.assets {
	padding: 48px 32px 56px;
}
.assets .inner {
	max-width: 960px;
	margin: 0 auto;
}
.assets .section-head {
	text-align: left;
	margin: 0 0 20px;
}
.assets .section-head h2 {
	font-size: 24px;
	margin: 6px 0 0;
}
.assets .section-head p {
	font-size: 14.5px;
	color: #4a4a4a;
	margin: 8px 0 0;
	max-width: 700px;
}
.assetgrid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-bottom: 14px;
}
.assetcard {
	background: #fff;
	border: 1px solid var(--wp--preset--color--paper-shadow);
	border-radius: 8px;
	overflow: hidden;
}
.assetcard .thumb {
	aspect-ratio: 1 / 1;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-family: var(--wp--preset--font-family--heading);
	text-transform: uppercase;
	font-size: 12.5px;
	letter-spacing: 0.04em;
	text-align: center;
	padding: 20px;
	line-height: 1.45;
}
.assetcard .body {
	padding: 16px 18px 18px;
}
.assetcard h4 {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 14px;
	text-transform: uppercase;
	margin: 0 0 6px;
}
.assetcard p {
	font-size: 12.5px;
	color: #4a4a4a;
	margin: 0 0 12px;
	line-height: 1.55;
}
.assetcard a.dl {
	font-size: 12.5px;
	font-weight: 600;
}
.assetnote {
	font-size: 13px;
	color: #8a8478;
	font-style: italic;
	margin: 4px 0 0;
	max-width: 700px;
}

/* ---------- Recap grid (launch + week 5) ---------- */
.recapgrid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
	margin: 20px 0 8px;
}
.recapcard {
	background: #fff;
	border: 1px solid var(--wp--preset--color--paper-shadow);
	border-radius: 6px;
	padding: 16px;
}
.recapcard .bar {
	height: 5px;
	border-radius: 3px;
	margin-bottom: 10px;
}
.recapcard .num {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: var(--wp--preset--color--accent);
	text-transform: uppercase;
}
.recapcard h4 {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 13.5px;
	line-height: 1.25;
	margin: 5px 0 8px;
	text-transform: uppercase;
}
.recapcard p {
	font-size: 12.5px;
	line-height: 1.5;
	color: #4a4a4a;
	margin: 0 0 10px;
}
.recapcard a {
	font-size: 12px;
	font-weight: 600;
}
@media (max-width: 760px) {
	.recapgrid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 460px) {
	.recapgrid { grid-template-columns: 1fr; }
}

/* ---------- Week nav (prev / next) ---------- */
.weeknav {
	padding: 0 32px 56px;
}
.launch .weeknav {
	padding: 40px 32px 56px;
}
.launch .paths .inner, .week-5 .paths .inner {
	max-width: 760px;
}
.weeknav .inner {
	max-width: 760px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
	padding-top: 28px;
	border-top: 1px solid var(--wp--preset--color--paper-shadow);
}
.weeknav a {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

/* ======================================================================
   404 — Page not found
   ====================================================================== */
.pagehero.error-hero {
	padding: 56px 32px 32px;
	position: relative;
	overflow: hidden;
}
.pagehero .num404 {
	font-family: var(--wp--preset--font-family--heading);
	font-size: clamp(72px, 14vw, 148px);
	font-weight: 700;
	color: var(--wp--preset--color--accent);
	opacity: 0.14;
	letter-spacing: 0.01em;
	line-height: 1;
	margin: 0 0 -18px;
	user-select: none;
}
.pagehero .error-hero-body {
	position: relative;
}
section.lost {
	padding: 16px 32px 8px;
}
.lost .inner {
	max-width: 960px;
	margin: 0 auto;
}
.lostgrid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-bottom: 8px;
}
.lostcard {
	background: #fff;
	border: 1px solid var(--wp--preset--color--paper-shadow);
	border-radius: 8px;
	padding: 22px 24px;
}
.lostcard .tag {
	display: inline-block;
	font-family: var(--wp--preset--font-family--heading);
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #fff;
	background: var(--wp--preset--color--accent);
	padding: 3px 9px;
	border-radius: 3px;
	margin-bottom: 10px;
}
.lostcard h4 {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 16px;
	line-height: 1.3;
	margin: 0 0 8px;
}
.lostcard p {
	font-size: 13.5px;
	line-height: 1.6;
	color: #4a4a4a;
	margin: 0 0 12px;
}
.lostcard a {
	font-size: 13px;
	font-weight: 600;
}
@media (max-width: 900px) {
	.lostgrid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
	.lostgrid { grid-template-columns: 1fr; }
}

/* ======================================================================
   Search results
   ====================================================================== */
.pagehero.search-hero {
	padding: 48px 32px 32px;
}
.search-hero h1 {
	font-size: 32px;
	text-transform: none;
	margin: 8px 0 6px;
}
.search-hero h1 .search-term {
	color: var(--wp--preset--color--accent);
}
.search-hero .count {
	font-size: 14px;
	color: #6a6258;
	margin: 0 0 24px;
}
.searchform {
	max-width: 640px;
	margin: 0 auto;
	display: flex;
	gap: 10px;
}
.searchform .wp-block-search__inside-wrapper {
	display: flex;
	gap: 10px;
}
.searchform input,
.searchform .wp-block-search__input {
	flex: 1;
	font-family: var(--wp--preset--font-family--sans);
	font-size: 15px;
	padding: 13px 16px;
	border: 1px solid var(--wp--preset--color--paper-shadow);
	border-radius: 4px;
	background: #fff;
	color: var(--wp--preset--color--ink);
}
.searchform input:focus,
.searchform .wp-block-search__input:focus {
	outline: 2px solid var(--wp--preset--color--accent);
	outline-offset: 1px;
}
.searchform .wp-block-search__button {
	margin: 0;
	background: var(--wp--preset--color--accent);
	color: #fff;
	font-family: var(--wp--preset--font-family--heading);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	padding: 13px 26px;
	border: none;
	border-radius: 3px;
	cursor: pointer;
}
section.searchresults {
	padding: 8px 32px 8px;
}
.searchresults .inner {
	max-width: 960px;
	margin: 0 auto;
}
.resultcount {
	font-size: 13.5px;
	color: #6a6258;
	margin: 0 0 18px;
}
.results {
	display: flex;
	flex-direction: column;
	gap: 4px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.resultcard {
	padding: 18px 0;
	border-bottom: 1px solid var(--wp--preset--color--paper-shadow);
}
.resultcard:first-child {
	padding-top: 0;
}
.resultcard h3,
.resultcard .wp-block-post-title {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 17px;
	text-transform: none;
	margin: 0 0 6px;
	font-weight: 600;
}
.resultcard h3 a,
.resultcard .wp-block-post-title a {
	color: var(--wp--preset--color--accent);
}
.resultcard .wp-block-post-excerpt {
	margin: 0 0 8px;
}
.resultcard p,
.resultcard .wp-block-post-excerpt p {
	font-size: 14px;
	line-height: 1.65;
	color: #3a3a3a;
	margin: 0 0 8px;
}
.resultcard mark {
	background: rgba(148, 0, 50, 0.14);
	color: var(--wp--preset--color--ink);
	padding: 0 2px;
	border-radius: 2px;
}
.resultcard .updated,
.resultcard .wp-block-post-date {
	font-size: 12px;
	color: #9a9488;
}
/* Pagination */
.wp-block-query-pagination.pagination {
	justify-content: center;
	align-items: center;
	gap: 6px;
	margin: 32px 0 8px;
}
.pagination a,
.pagination span,
.wp-block-query-pagination.pagination .wp-block-query-pagination-numbers a,
.wp-block-query-pagination.pagination .wp-block-query-pagination-numbers span {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 13px;
	padding: 8px 13px;
	border-radius: 4px;
	color: var(--wp--preset--color--ink);
}
.pagination .current,
.wp-block-query-pagination.pagination .current {
	background: var(--wp--preset--color--accent);
	color: #fff;
}

/* ======================================================================
   NEWS (blog index)
   ====================================================================== */
section.news {
	padding: 8px 32px;
}
.news .inner {
	max-width: 960px;
	margin: 0 auto;
}
.campaigngrid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-bottom: 16px;
}
.campcard {
	background: #fff;
	border: 1px solid var(--wp--preset--color--paper-shadow);
	border-radius: 8px;
	overflow: hidden;
}
.campcard .bar {
	height: 5px;
}
.campcard .body {
	padding: 18px 20px 20px;
}
.campcard .num {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: var(--wp--preset--color--accent);
	text-transform: uppercase;
	margin: 0 0 8px;
	display: block;
}
.campcard h4 {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 15.5px;
	margin: 0 0 8px;
	text-transform: uppercase;
}
.campcard p {
	font-size: 13.5px;
	line-height: 1.6;
	color: #4a4a4a;
	margin: 0 0 12px;
}
.campcard a {
	font-size: 12.5px;
	font-weight: 600;
}
.archivenote {
	font-size: 13.5px;
	color: #6a6258;
	max-width: 680px;
	margin: 0 0 48px;
}
.newsgrid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-bottom: 16px;
}
.newscard {
	background: #fff;
	border: 1px solid var(--wp--preset--color--paper-shadow);
	border-radius: 8px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
.newscard img {
	width: 100%;
	height: 150px;
	object-fit: cover;
	display: block;
	filter: grayscale(0.2) contrast(1.02);
}
.newscard .body {
	padding: 18px 20px 20px;
	display: flex;
	flex-direction: column;
	flex: 1;
}
.newscard .date {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 11px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #8a8478;
	margin-bottom: 8px;
}
.newscard h4 {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 15.5px;
	line-height: 1.32;
	margin: 0 0 10px;
}
.newscard p {
	font-size: 13.5px;
	line-height: 1.6;
	color: #4a4a4a;
	margin: 0 0 14px;
	flex: 1;
}
.newscard a.readmore {
	font-size: 12.5px;
	font-weight: 600;
}
@media (max-width: 900px) {
	.campaigngrid, .newsgrid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
	.campaigngrid, .newsgrid { grid-template-columns: 1fr; }
}

/* ======================================================================
   SINGLE ARTICLE (single.html)
   ====================================================================== */
.single-post .pagehero {
	padding: 48px 32px 24px;
}
.single-post .pagehero h1,
.single-post .pagehero .wp-block-post-title {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 34px;
	line-height: 1.15;
	text-transform: uppercase;
	margin: 10px auto 0;
	max-width: 760px;
}
.single-post .article {
	padding: 32px 32px 8px;
}
.single-post .article .inner {
	max-width: 760px;
}
/*
 * Post-content headings/lede are styled via the block classes (which exist in
 * both the editor canvas and the front end) rather than the .single-post
 * .article template wrapper (front end only), so the editor preview matches.
 * These classes are only emitted by core blocks — the raw-HTML headings in the
 * page templates don't carry them, so those are unaffected.
 */
h2.wp-block-heading {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 22px;
	text-transform: uppercase;
	margin: 36px 0 14px;
	color: var(--wp--preset--color--ink);
}
h3.wp-block-heading {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	margin: 22px 0 10px;
	color: var(--wp--preset--color--accent);
}
.wp-block-paragraph.lede,
p.lede {
	font-size: 18px;
	line-height: 1.7;
	color: var(--wp--preset--color--ink);
}
.article ul {
	margin: 0 0 18px;
	padding-left: 22px;
}
.article li {
	font-size: 16px;
	line-height: 1.7;
	color: #2a2a2a;
	margin-bottom: 8px;
}

/* Help / crisis callout inside article content (safety) */
.helpcallout {
	background: #fff;
	border: 1px solid var(--wp--preset--color--paper-shadow);
	border-left: 4px solid var(--wp--preset--color--maroon-tag);
	border-radius: 6px;
	padding: 22px 24px;
	margin: 28px 0;
}
.helpcallout p {
	margin: 0 0 14px;
	font-size: 15.5px;
	line-height: 1.65;
	color: #2a2a2a;
}
.helpcallout p:last-child {
	margin-bottom: 0;
}
.helpcallout strong {
	color: var(--wp--preset--color--ink);
}

/* Post meta row */
.postmeta {
	padding: 0 32px 8px;
}
.postmeta .inner {
	max-width: 760px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
	padding: 10px 0 0;
}
.postmeta .tag,
.postmeta .wp-block-post-terms a {
	display: inline-block;
	font-family: var(--wp--preset--font-family--heading);
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #fff;
	background: var(--wp--preset--color--accent);
	padding: 3px 9px;
	border-radius: 3px;
	text-decoration: none;
}
/* Color-code the category chip by week (navy/olive/maroon/teal), matching
 * the campaign palette; other categories keep the default maroon. */
.postmeta .wp-block-post-terms a[href*="/category/week-1"] { background: var(--wp--preset--color--navy-tag); }
.postmeta .wp-block-post-terms a[href*="/category/week-2"] { background: var(--wp--preset--color--olive-tag); }
.postmeta .wp-block-post-terms a[href*="/category/week-3"] { background: var(--wp--preset--color--maroon-tag); }
.postmeta .wp-block-post-terms a[href*="/category/week-4"] { background: var(--wp--preset--color--teal-tag); }
.postmeta .date,
.postmeta .wp-block-post-date {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 12px;
	color: #6a6258;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}
.postmeta .by {
	font-size: 12.5px;
	color: #6a6258;
}
.postmeta .dot {
	color: #b9b3a7;
}

/* Cover image */
.postcover {
	padding: 20px 32px 0;
}
.postcover img,
.postcover .wp-block-post-featured-image img {
	width: 100%;
	max-width: 960px;
	max-height: 380px;
	object-fit: cover;
	display: block;
	margin: 0 auto;
	border-radius: 8px;
	filter: grayscale(0.1);
}

/* Pull quote is styled in theme.json (styles.blocks.core/pullquote) so it
 * renders identically in the block editor and on the front end. */

/* Author box */
.authorbox {
	padding: 16px 32px 8px;
}
.authorbox .inner {
	max-width: 760px;
	margin: 0 auto;
	padding-top: 22px;
	border-top: 1px solid var(--wp--preset--color--paper-shadow);
	display: flex;
	gap: 14px;
	align-items: center;
}
.authorbox img {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	object-fit: contain;
	flex-shrink: 0;
	background: var(--wp--preset--color--paper-shadow);
}
.authorbox .name {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	margin: 0;
}
.authorbox .role {
	font-size: 12.5px;
	color: #6a6258;
	margin: 2px 0 0;
}

/* Post navigation */
.postnav {
	padding: 24px 32px 56px;
}
.postnav .inner {
	max-width: 760px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
	padding-top: 24px;
	border-top: 1px solid var(--wp--preset--color--paper-shadow);
}
.postnav a {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

/* ---------- Comments (native WordPress blocks, styled to the mockup) ---------- */
.comments {
	padding: 28px 32px 8px;
}
.comments .inner {
	max-width: 760px;
	margin: 0 auto;
}

/* "N Comments" heading */
.comments .wp-block-comments-title {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 20px;
	text-transform: uppercase;
	margin: 0 0 22px;
	color: var(--wp--preset--color--ink);
}

/* Comment list */
.comments .wp-block-comment-template {
	list-style: none;
	margin: 0 0 32px;
	padding: 0;
}
/* Target the group div only — WordPress also puts a `comment` class on the
 * <li>, and flexing that would lay a comment and its reply side by side. */
.comments .comment.wp-block-group {
	display: flex;
	gap: 14px;
	padding: 18px 0;
	border-bottom: 1px solid var(--wp--preset--color--paper-shadow);
	align-items: flex-start;
}
.comments .wp-block-comment-template > li:first-child > .comment.wp-block-group {
	padding-top: 0;
}
.comments .wp-block-comment-template .children {
	list-style: none;
	margin: 0 0 0 56px;
	padding: 0;
}
.comments .wp-block-avatar img {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	flex-shrink: 0;
	display: block;
}
.comments .comment-body {
	flex: 1;
	min-width: 0;
}
.comments .comment-meta {
	display: flex;
	align-items: baseline;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 6px;
}
.comments .wp-block-comment-author-name {
	font-family: var(--wp--preset--font-family--heading);
	font-weight: 600;
	text-transform: uppercase;
	font-size: 13.5px;
	color: var(--wp--preset--color--ink);
}
.comments .wp-block-comment-author-name a {
	color: inherit;
	text-decoration: none;
}
.comments .wp-block-comment-date,
.comments .wp-block-comment-date a {
	font-size: 12px;
	color: #8a8478;
	text-decoration: none;
}
.comments .wp-block-comment-content {
	margin: 0;
}
.comments .wp-block-comment-content p {
	font-size: 14.5px;
	line-height: 1.65;
	color: #2a2a2a;
	margin: 0 0 8px;
}
.comments .wp-block-comment-reply-link {
	font-size: 12px;
	font-weight: 600;
}

/* Comment form — white rounded card */
.comments .comment-respond {
	max-width: 760px;
	margin: 0 auto;
	background: #fff;
	border: 1px solid var(--wp--preset--color--paper-shadow);
	border-radius: 10px;
	padding: 28px 30px;
}
.comments .comment-reply-title {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 16px;
	text-transform: uppercase;
	margin: 0 0 6px;
	color: var(--wp--preset--color--ink);
}
.comments .comment-reply-title small {
	font-weight: 400;
	font-size: 13px;
	margin-left: 10px;
	text-transform: none;
}
.comments .comment-notes {
	font-size: 13px;
	color: #6a6258;
	margin: 0 0 20px;
}
.comments .comment-form label {
	display: block;
	font-family: var(--wp--preset--font-family--heading);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: var(--wp--preset--color--ink);
	margin: 0 0 6px;
}
.comments .comment-form input[type="text"],
.comments .comment-form input[type="email"],
.comments .comment-form input[type="url"],
.comments .comment-form textarea {
	width: 100%;
	padding: 11px 13px;
	border: 1px solid var(--wp--preset--color--paper-shadow);
	border-radius: 5px;
	font-family: var(--wp--preset--font-family--sans);
	font-size: 14px;
	background: var(--wp--preset--color--paper);
	color: var(--wp--preset--color--ink);
}
.comments .comment-form textarea {
	min-height: 110px;
	resize: vertical;
}
.comments .comment-form input:focus-visible,
.comments .comment-form textarea:focus-visible {
	outline: 2px solid var(--wp--preset--color--accent);
	outline-offset: 1px;
	border-color: var(--wp--preset--color--accent);
}
/* Comment textarea full width; Name / Email / Website in a 3-column row */
.comments .comment-form {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 16px;
}
.comments .comment-form > p {
	grid-column: 1 / -1;
	margin: 0;
}
.comments .comment-form > p.comment-form-author,
.comments .comment-form > p.comment-form-email,
.comments .comment-form > p.comment-form-url {
	grid-column: auto;
}
.comments .comment-form-cookies-consent {
	display: flex;
	align-items: flex-start;
	gap: 8px;
}
.comments .comment-form-cookies-consent input {
	margin-top: 3px;
}
.comments .comment-form-cookies-consent label {
	font-family: var(--wp--preset--font-family--sans);
	text-transform: none;
	font-weight: 400;
	font-size: 12.5px;
	letter-spacing: normal;
	color: #6a6258;
	margin: 0;
}
.comments .form-submit input[type="submit"] {
	background: var(--wp--preset--color--accent);
	color: #fff;
	font-family: var(--wp--preset--font-family--heading);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	padding: 13px 26px;
	border: none;
	border-radius: 3px;
	cursor: pointer;
}
@media (max-width: 560px) {
	.comments .comment-form { grid-template-columns: 1fr; }
}

.commentnote {
	font-size: 12px;
	color: #8a8478;
	max-width: 760px;
	margin: 14px auto 0;
}

/* ======================================================================
   COMMITTEE — role cards
   ====================================================================== */
section.committee {
	padding: 8px 32px;
}
.committee .inner {
	max-width: 960px;
	margin: 0 auto;
}
.rolegrid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-bottom: 16px;
}
.rolecard {
	background: #fff;
	border: 1px solid var(--wp--preset--color--paper-shadow);
	border-radius: 8px;
	padding: 22px 24px;
}
.rolecard .tag {
	display: inline-block;
	font-family: var(--wp--preset--font-family--heading);
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #fff;
	background: var(--wp--preset--color--accent);
	padding: 3px 9px;
	border-radius: 3px;
	margin-bottom: 10px;
}
.rolecard h4 {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 15.5px;
	line-height: 1.3;
	margin: 0 0 8px;
}
.rolecard p {
	font-size: 13.5px;
	line-height: 1.6;
	color: #4a4a4a;
	margin: 0;
}
.placeholdernote {
	font-size: 13px;
	color: #8a8478;
	max-width: 700px;
	margin: 6px 0 48px;
	font-style: italic;
}
@media (max-width: 900px) {
	.rolegrid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
	.rolegrid { grid-template-columns: 1fr; }
}

/* ======================================================================
   HISTORY — timeline
   ====================================================================== */
section.history {
	padding: 8px 32px;
}
.history .inner {
	max-width: 760px;
	margin: 0 auto;
}
.history-page .paths .inner {
	max-width: 760px;
}
.timeline {
	margin: 0 0 16px;
}
.tlrow {
	display: flex;
	gap: 24px;
	padding: 22px 0;
	border-bottom: 1px solid var(--wp--preset--color--paper-shadow);
}
.tlrow:first-child {
	padding-top: 0;
}
.tlrow:last-child {
	border-bottom: none;
}
.tlrow .yr {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 26px;
	font-weight: 600;
	color: var(--wp--preset--color--accent);
	flex-shrink: 0;
	width: 76px;
}
.tlrow h4 {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 15.5px;
	text-transform: uppercase;
	margin: 0 0 8px;
}
.tlrow p {
	font-size: 14.5px;
	line-height: 1.65;
	color: #4a4a4a;
	margin: 0;
}
.contextnote {
	background: #fff;
	border: 1px solid var(--wp--preset--color--paper-shadow);
	border-radius: 8px;
	padding: 22px 26px;
	margin: 8px 0 40px;
}
.contextnote h4 {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	margin: 0 0 10px;
	color: var(--wp--preset--color--accent);
}
.contextnote p {
	font-size: 14px;
	line-height: 1.7;
	color: #4a4a4a;
	margin: 0;
}

/* ======================================================================
   CONTACT — routing cards + direct card
   ====================================================================== */
section.contact {
	padding: 8px 32px 56px;
}
.contact .inner {
	max-width: 760px;
	margin: 0 auto;
}
.routegrid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-bottom: 40px;
}
.routecard {
	background: #fff;
	border: 1px solid var(--wp--preset--color--paper-shadow);
	border-radius: 8px;
	padding: 22px;
}
.routecard h4 {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 14.5px;
	text-transform: uppercase;
	margin: 0 0 8px;
}
.routecard p {
	font-size: 13.5px;
	line-height: 1.6;
	color: #4a4a4a;
	margin: 0 0 12px;
}
.routecard a {
	font-size: 13px;
	font-weight: 600;
}
.directcard {
	background: #fff;
	border: 1px solid var(--wp--preset--color--paper-shadow);
	border-radius: 8px;
	padding: 26px 28px;
}
.directcard h3 {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 18px;
	text-transform: uppercase;
	margin: 0 0 10px;
}
.directcard p {
	font-size: 14.5px;
	line-height: 1.7;
	color: #4a4a4a;
	margin: 0 0 16px;
}
.directcard .email {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 17px;
	font-weight: 600;
	color: var(--wp--preset--color--accent);
}
@media (max-width: 760px) {
	.routegrid { grid-template-columns: 1fr; }
}

/* ======================================================================
   LEGAL — Privacy Policy / Terms (draft-notice banner + prose)
   ====================================================================== */
.legal-page .pagehero {
	padding: 48px 32px 16px;
}
.legal-page .pagehero h1 {
	font-size: 34px;
}
.legal-page .pagehero p {
	font-size: 14px;
	color: #6a6258;
}
.draftnotice {
	background: #fff;
	border: 1px solid var(--wp--preset--color--accent-light);
	border-radius: 8px;
	padding: 16px 20px;
	max-width: 760px;
	margin: 0 auto 32px;
}
.draftnotice p {
	font-size: 13.5px;
	line-height: 1.6;
	color: #4a4a4a;
	margin: 0;
}
.draftnotice strong {
	color: var(--wp--preset--color--accent);
}
section.legal {
	padding: 8px 32px 56px;
}
.legal .inner {
	max-width: 760px;
	margin: 0 auto;
}
/*
 * The legal body is editable post content, so it uses the shared content
 * block styles (h2.wp-block-heading, native paragraphs/lists) — that way the
 * block editor preview matches the front end. Only the "last updated" line
 * needs its own rule.
 */
p.updated {
	font-size: 12.5px;
	color: #8a8478;
	margin-bottom: 28px;
}

/* ---------- Values bar ---------- */
.valuesbar {
	background: var(--wp--preset--color--fblack);
	padding: 22px 8px;
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	gap: 12px;
}
/* Neutralize flow-layout block margins so slots stay in one flex row. */
.valuesbar > * {
	margin-block: 0;
}
.valuesbar div {
	text-align: center;
	color: var(--wp--preset--color--paper);
	min-width: 90px;
}
.valuesbar div .ic {
	font-size: 18px;
}
.valuesbar div span {
	font-size: 12px;
	display: block;
	margin-top: 6px;
	font-family: var(--wp--preset--font-family--heading);
	letter-spacing: 0.02em;
	text-transform: uppercase;
}
/* Contextual 5th slot — overridable per template. */
.valuesbar-contextual {
	color: var(--wp--preset--color--accent-light) !important;
}

/* ---------- Footer ---------- */
.site-footer {
	background: var(--wp--preset--color--ink);
	color: #cfc9bd;
	padding: 44px 32px 24px;
}
.footgrid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	max-width: 1160px;
	margin: 0 auto;
}
.footgrid h4 {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 13px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #fff;
	margin: 0 0 12px;
}
.footgrid a {
	display: block;
	color: #b9b3a7;
	font-size: 13px;
	margin-bottom: 8px;
	text-decoration: none;
}
.footgrid a:hover,
.footgrid a:focus-visible {
	color: var(--wp--preset--color--accent-light);
}
.footer-ftp {
	color: #8a8478 !important;
}
.footbottom {
	max-width: 1160px;
	margin: 32px auto 0;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	font-size: 12px;
	color: #8a8478;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 8px;
}
@media (max-width: 700px) {
	.footgrid {
		grid-template-columns: 1fr 1fr;
	}
}
