/**
 * ARNF design system and global shell (P3).
 *
 * Typeface: TeX Gyre Adventor (supplied). GUST e-foundry license in /fonts.
 * Primary colour: #89a18a. Do not add web fonts or replace the typeface.
 */

/* ---------------------------------------------------------------- Fonts */

@font-face {
	font-family: 'TeX Gyre Adventor';
	src: url('../fonts/texgyreadventor-regular.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'TeX Gyre Adventor';
	src: url('../fonts/texgyreadventor-italic.woff2') format('woff2');
	font-weight: 400;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: 'TeX Gyre Adventor';
	src: url('../fonts/texgyreadventor-bold.woff2') format('woff2');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'TeX Gyre Adventor';
	src: url('../fonts/texgyreadventor-bolditalic.woff2') format('woff2');
	font-weight: 700;
	font-style: italic;
	font-display: swap;
}

/* --------------------------------------------------------------- Tokens */

:root {
	/* Brand. #89a18a is too light to carry text, so text and solid buttons
	   use the darkened sage below. Same hue, readable contrast. */
	--arnf-primary: #89a18a;
	--arnf-primary-ink: #355036;       /* sage-deep, 8.42:1 on paper */
	--arnf-primary-ink-hover: #1a1815;
	--arnf-primary-wash: #e8eee8;

	/* Warm monochrome. Quiet Trust paper ground. */
	--arnf-canvas: #f9f8f5;
	--arnf-surface: #f9f8f5;
	--arnf-surface-alt: #e8eee8;
	--arnf-ink: #1a1815;
	--arnf-ink-2: #2b2822;
	--arnf-muted: #6b655c;
	--arnf-border: #e2dcd1;
	--arnf-border-strong: #6e8570;

	/* Pastel accents, for tags and callouts only. */
	--arnf-pale-green: #edf3ec;
	--arnf-pale-green-ink: #346538;
	--arnf-pale-yellow: #fbf3db;
	--arnf-pale-yellow-ink: #956400;
	--arnf-pale-blue: #e1f3fe;
	--arnf-pale-blue-ink: #1f6c9f;
	--arnf-pale-red: #fdebec;
	--arnf-pale-red-ink: #9f2f2d;

	/* Type. */
	--arnf-font: 'TeX Gyre Adventor', 'Century Gothic', system-ui, sans-serif;
	--arnf-font-mono: ui-monospace, 'Cascadia Mono', 'JetBrains Mono', monospace;
	--arnf-step--1: 0.8125rem;
	--arnf-step-0: 1.0625rem;
	--arnf-step-1: clamp(1.15rem, 0.4vw + 1.05rem, 1.3rem);
	--arnf-step-2: clamp(1.4rem, 0.9vw + 1.2rem, 1.75rem);
	--arnf-step-3: clamp(1.75rem, 1.6vw + 1.4rem, 2.4rem);
	--arnf-step-4: clamp(2.1rem, 3vw + 1.4rem, 3.4rem);

	/* Space and shape. */
	--arnf-space-1: 0.5rem;
	--arnf-space-2: 1rem;
	--arnf-space-3: 1.5rem;
	--arnf-space-4: 2.5rem;
	--arnf-space-5: 4rem;
	--arnf-space-6: 6rem;
	--arnf-section-y: clamp(3.5rem, 7vw, 7rem);
	--arnf-radius: 8px;
	--arnf-radius-sm: 4px;
	--arnf-container: 1200px;
	--arnf-measure: 68ch;
	--arnf-hover-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
	--arnf-ease: cubic-bezier(0.16, 1, 0.3, 1);

	/* Header plus the Home identity band, measured. Retune if either changes
	   height. Desktop 133px + 226px; phone 111px + 186px. */
	--arnf-shell: 25rem;
	--arnf-shell-mobile: 21rem;
}

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

body {
	background-color: var(--arnf-canvas);
	color: var(--arnf-ink-2);
	font-family: var(--arnf-font);
	font-size: var(--arnf-step-0);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;                /* belt and braces against 320px overflow */
}

.entry-content,
.site-content {
	overflow-wrap: break-word;
}

h1, h2, h3, h4, h5, h6,
.arnf-h1, .arnf-h2, .arnf-h3 {
	color: var(--arnf-ink);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.02em;
	margin: 0 0 var(--arnf-space-2);
	text-wrap: balance;
}

/* Headings get air above them unless they open a block. */
* + h2, * + .arnf-h2 { margin-top: var(--arnf-space-4); }
* + h3, * + h4, * + .arnf-h3 { margin-top: var(--arnf-space-3); }

h1, .arnf-h1 { font-size: var(--arnf-step-4); }
h2, .arnf-h2 { font-size: var(--arnf-step-3); }
h3, .arnf-h3 { font-size: var(--arnf-step-2); }
h4 { font-size: var(--arnf-step-1); }
h5, h6 { font-size: var(--arnf-step-0); letter-spacing: 0; }

p, ul, ol, dl, table, blockquote { margin-bottom: var(--arnf-space-3); }
p:last-child { margin-bottom: 0; }

.entry-content > p,
.entry-content > ul,
.entry-content > ol,
.arnf-prose { max-width: var(--arnf-measure); }

a {
	color: var(--arnf-primary-ink);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
	transition: color 200ms var(--arnf-ease);
}

a:hover { color: var(--arnf-primary-ink-hover); }

::selection {
	background: var(--arnf-primary);
	color: #ffffff;
}

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

hr, .arnf-rule {
	border: 0;
	border-top: 1px solid var(--arnf-border);
	margin: var(--arnf-space-4) 0;
}

blockquote {
	border-left: 3px solid var(--arnf-primary);
	color: var(--arnf-ink);
	font-size: var(--arnf-step-1);
	font-style: italic;
	margin-inline: 0;
	padding: var(--arnf-space-1) 0 var(--arnf-space-1) var(--arnf-space-3);
}

code, kbd, samp { font-family: var(--arnf-font-mono); font-size: 0.9em; }

code {
	background: var(--arnf-surface-alt);
	border-radius: var(--arnf-radius-sm);
	padding: 0.1em 0.35em;
}

kbd {
	background: var(--arnf-surface-alt);
	border: 1px solid var(--arnf-border);
	border-radius: var(--arnf-radius-sm);
	padding: 0.15em 0.45em;
}

/* ------------------------------------------------------ Focus and skip */

:focus-visible {
	/* The pale primary only reaches 2.8:1 on white, short of the 3:1 that
	   WCAG asks of a focus indicator, so the ring uses the darker sage. */
	outline: 2px solid var(--arnf-primary-ink);
	outline-offset: 2px;
	border-radius: 2px;
}

/* GeneratePress prints the skip link. Make it visible once focused. */
.screen-reader-text:focus {
	background: var(--arnf-surface);
	border: 1px solid var(--arnf-primary);
	border-radius: var(--arnf-radius-sm);
	box-shadow: none;
	clip: auto !important;
	clip-path: none;
	color: var(--arnf-ink);
	font-size: var(--arnf-step--1);
	height: auto;
	left: var(--arnf-space-2);
	padding: 0.75rem 1.25rem;
	text-decoration: none;
	top: var(--arnf-space-2);
	width: auto;
	z-index: 100000;
}

/* --------------------------------------------------------------- Layout */

/* The measure lives on .arnf-container, not on .site-content, so a section
   can run full-bleed and still hold its text to 1200px. */
.inside-navigation,
.arnf-container {
	margin-inline: auto;
	max-width: var(--arnf-container);
	width: 100%;
}

/* The header band runs edge to edge, logo flush left and Donate flush right,
   so it reads as one piece of architecture with the full-bleed sections. */
.inside-header {
	margin-inline: auto;
	max-width: none;
	padding-inline: clamp(1.5rem, 3.5vw, 4rem);
	width: 100%;
}

.site-content { width: 100%; }

/* Pages built on the P6 templates release the outer container so a section can
   run edge to edge. Every block that needs the measure asks for it with
   .arnf-container, so nothing loses its reading width. */
.site:has(.arnf-main) {
	max-width: none;
	padding-inline: 0;
}

.site:has(.arnf-main) .site-content { padding-inline: 0; }

/* GeneratePress lays .site-content out as a flex row. A direct child with no
   width shrinks to its narrowest content, so every child claims the row. */
.site-content > * {
	min-width: 0;
	width: 100%;
}

.arnf-container { padding-inline: var(--arnf-space-3); }

.arnf-section { padding-block: var(--arnf-section-y); }

.arnf-section--tint { background: var(--arnf-surface-alt); }

.arnf-section--edge { border-top: 1px solid var(--arnf-border); }

.arnf-stack > * + * { margin-top: var(--arnf-space-3); }

/* A row of buttons or links that must not collide. */
.arnf-actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: var(--arnf-space-2);
}

/* Bento grid. Cards claim extra width with the span modifiers. */
.arnf-grid {
	display: grid;
	gap: var(--arnf-space-3);
	grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
}

.arnf-grid--bento { grid-template-columns: repeat(6, 1fr); }
.arnf-grid--bento > * { grid-column: span 6; }

@media (min-width: 768px) {
	.arnf-grid--bento > * { grid-column: span 3; }
	.arnf-grid--bento > .arnf-span-wide { grid-column: span 6; }
}

@media (min-width: 1024px) {
	.arnf-grid--bento > * { grid-column: span 2; }
	.arnf-grid--bento > .arnf-span-wide { grid-column: span 4; }
	.arnf-grid--bento > .arnf-span-full { grid-column: span 6; }
}

/* Fixed image ratios, so an odd upload cannot break a grid. */
.arnf-ratio-16x9,
.arnf-ratio-4x3,
.arnf-ratio-1x1,
.arnf-ratio-3x4 {
	background: var(--arnf-surface-alt);
	display: block;
	object-fit: cover;
	width: 100%;
}

/* The class works on the image itself (P3) or on a wrapper holding it (P6). */
.arnf-ratio-16x9 > img,
.arnf-ratio-4x3 > img,
.arnf-ratio-1x1 > img,
.arnf-ratio-3x4 > img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.arnf-ratio-16x9 { aspect-ratio: 16 / 9; }
.arnf-ratio-4x3 { aspect-ratio: 4 / 3; }
.arnf-ratio-1x1 { aspect-ratio: 1 / 1; }
.arnf-ratio-3x4 { aspect-ratio: 3 / 4; }

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

.site-header {
	background: var(--arnf-surface);
	border-bottom: 1px solid var(--arnf-border);
}

.inside-header {
	align-items: center;
	padding-block: var(--arnf-space-3);
	padding-inline: var(--arnf-space-3);
}

/* The badge sits beside the name rather than above it. GeneratePress stacks
   them by default, which pushes the header past 200px tall. */
.site-branding-container {
	align-items: center;
	display: flex;
	gap: var(--arnf-space-2);
}

.site-branding .main-title,
.site-logo img {
	margin: 0;
}

/* Capped so the eight-item navigation keeps its row beside the branding. */
.site-branding .main-title {
	font-size: var(--arnf-step-0);
	letter-spacing: -0.02em;
	line-height: 1.25;
	max-width: 14ch;
}

.site-branding .main-title a { color: var(--arnf-ink); text-decoration: none; }

/* The logo is a portrait badge, so it is capped by height, not width. The
   name curved inside it is decorative at this size; the title beside it is
   what people actually read. */
.site-logo img {
	height: auto;
	max-height: 84px;
	width: auto;
}

@media (max-width: 768px) {
	.site-logo img { max-height: 64px; }
}

/* On a narrow phone the branding takes whatever the toggle leaves and wraps
   inside it, rather than pushing the toggle onto a second row. */
@media (max-width: 600px) {
	.site-branding-container { flex: 1; min-width: 0; }

	.site-branding .main-title { max-width: none; }
}

/* --------------------------------------------------------- Desktop nav */

.main-navigation { background: transparent; }

/* The navigation sits inside .inside-header, which is already padded.
   Eight items plus the Donate button need every pixel of that row. */
.site-header .main-navigation .inside-navigation { padding-inline: 0; }

.main-navigation .inside-navigation { padding-inline: var(--arnf-space-3); }

.main-navigation .main-nav ul li a {
	color: var(--arnf-ink-2);
	font-size: var(--arnf-step--1);
	letter-spacing: 0.02em;
	line-height: 1;
	padding: 0.85rem 0.65rem;
	text-decoration: none;
	text-transform: uppercase;
	transition: color 200ms var(--arnf-ease);
}

.main-navigation .main-nav ul li:hover > a,
.main-navigation .main-nav ul li a:focus-visible,
.main-navigation .main-nav ul li.current-menu-item > a,
.main-navigation .main-nav ul li.current-menu-ancestor > a {
	color: var(--arnf-primary-ink);
}

.main-navigation .main-nav ul li.current-menu-item > a {
	box-shadow: inset 0 -2px 0 var(--arnf-primary);
}

/* Dropdowns: flat, one hairline border. */
.main-navigation ul ul {
	background: var(--arnf-surface);
	border: 1px solid var(--arnf-border);
	border-radius: var(--arnf-radius);
	box-shadow: var(--arnf-hover-shadow);
	padding-block: var(--arnf-space-1);
	width: 240px;
}

.main-navigation ul ul li a { padding: 0.6rem var(--arnf-space-2); text-transform: none; }

/* Donate is the only button in the navigation. The menu item carries the
   CSS class arnf-nav-donate (set by arnf-core/bin/setup-menu.php). */
.main-navigation .main-nav ul li.arnf-nav-donate > a {
	background: var(--arnf-primary-ink);
	border-radius: var(--arnf-radius-sm);
	color: #ffffff;
	margin-inline-start: var(--arnf-space-2);
	padding-inline: 1.35rem;
	transition: background-color 200ms var(--arnf-ease), transform 120ms var(--arnf-ease);
}

.main-navigation .main-nav ul li.arnf-nav-donate:hover > a,
.main-navigation .main-nav ul li.arnf-nav-donate > a:focus-visible {
	background: var(--arnf-primary-ink-hover);
	color: #ffffff;
}

.main-navigation .main-nav ul li.arnf-nav-donate > a:active { transform: scale(0.98); }

/* ---------------------------------------------------------- Mobile nav */

.menu-toggle,
.mobile-menu-control-wrapper .menu-toggle {
	background: transparent;
	border: 1px solid var(--arnf-border);
	border-radius: var(--arnf-radius-sm);
	color: var(--arnf-ink);
	font-family: var(--arnf-font);
	font-size: var(--arnf-step--1);
	letter-spacing: 0.05em;
	min-height: 44px;
	padding-inline: var(--arnf-space-2);
	text-transform: uppercase;
}

.menu-toggle:hover,
.menu-toggle:focus { background: var(--arnf-surface-alt); color: var(--arnf-ink); }

.main-navigation.toggled .main-nav {
	background: var(--arnf-surface);
	border-top: 1px solid var(--arnf-border);
}

.main-navigation.toggled .main-nav > ul > li { border-bottom: 1px solid var(--arnf-border); }

.main-navigation.toggled .main-nav ul li a {
	line-height: 1.4;
	min-height: 44px;
	padding: 0.9rem var(--arnf-space-3);
}

/* Donate becomes a full-width block once the menu collapses. */
.main-navigation.toggled .main-nav ul li.arnf-nav-donate { border-bottom: 0; }

.main-navigation.toggled .main-nav ul li.arnf-nav-donate > a {
	border-radius: 0;
	margin-inline-start: 0;
	text-align: center;
}

/* -------------------------------------------------------------- Buttons */

.arnf-btn,
input[type="submit"],
button[type="submit"] {
	align-items: center;
	background: var(--arnf-primary-ink);
	border: 1px solid transparent;
	border-radius: var(--arnf-radius-sm);
	box-shadow: none;
	color: #ffffff;
	cursor: pointer;
	display: inline-flex;
	font-family: var(--arnf-font);
	font-size: var(--arnf-step--1);
	font-weight: 700;
	gap: var(--arnf-space-1);
	justify-content: center;
	letter-spacing: 0.04em;
	line-height: 1;
	min-height: 44px;
	padding: 0.9rem 1.5rem;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color 200ms var(--arnf-ease), transform 120ms var(--arnf-ease);
}

.arnf-btn:hover,
input[type="submit"]:hover,
button[type="submit"]:hover {
	background: var(--arnf-primary-ink-hover);
	color: #ffffff;
}

.arnf-btn:active,
input[type="submit"]:active,
button[type="submit"]:active { transform: scale(0.98); }

.arnf-btn--ghost {
	background: transparent;
	border-color: var(--arnf-border-strong);
	color: var(--arnf-ink);
}

.arnf-btn--ghost:hover {
	background: var(--arnf-surface-alt);
	border-color: var(--arnf-primary);
	color: var(--arnf-ink);
}

.arnf-btn--quiet {
	background: transparent;
	color: var(--arnf-primary-ink);
	min-height: 0;
	padding: 0;
	text-transform: none;
}

.arnf-btn--quiet:hover { background: transparent; color: var(--arnf-primary-ink-hover); }

/* ---------------------------------------------------------------- Cards */

.arnf-card {
	background: var(--arnf-surface);
	border: 1px solid var(--arnf-border);
	border-radius: var(--arnf-radius);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transition: box-shadow 200ms var(--arnf-ease), border-color 200ms var(--arnf-ease);
}

.arnf-card:hover {
	border-color: var(--arnf-border-strong);
	box-shadow: var(--arnf-hover-shadow);
}

.arnf-card__body { padding: var(--arnf-space-3); }

@media (min-width: 768px) {
	.arnf-card__body { padding: var(--arnf-space-4); }
}

.arnf-card__body > :last-child { margin-bottom: 0; }

.arnf-card__title { font-size: var(--arnf-step-1); margin-bottom: var(--arnf-space-1); }

.arnf-card__title a { color: inherit; text-decoration: none; }

.arnf-card:hover .arnf-card__title a { color: var(--arnf-primary-ink); }

.arnf-card__meta {
	color: var(--arnf-muted);
	font-size: var(--arnf-step--1);
	letter-spacing: 0.04em;
	margin-bottom: var(--arnf-space-1);
	text-transform: uppercase;
}

/* Eyebrow label above a section heading. */
.arnf-eyebrow {
	align-items: center;
	color: var(--arnf-muted);
	display: flex;
	font-size: var(--arnf-step--1);
	gap: var(--arnf-space-2);
	letter-spacing: 0.12em;
	margin-bottom: var(--arnf-space-2);
	text-transform: uppercase;
}

.arnf-eyebrow::after {
	background: var(--arnf-primary);
	content: '';
	flex: 1;
	height: 1px;
}

/* ------------------------------------------------------- Tags and notes */

.arnf-tag {
	background: var(--arnf-pale-green);
	border-radius: 9999px;
	color: var(--arnf-pale-green-ink);
	display: inline-block;
	font-size: 0.75rem;
	letter-spacing: 0.05em;
	line-height: 1.4;
	padding: 0.2rem 0.7rem;
	text-transform: uppercase;
}

.arnf-tag--blue { background: var(--arnf-pale-blue); color: var(--arnf-pale-blue-ink); }
.arnf-tag--yellow { background: var(--arnf-pale-yellow); color: var(--arnf-pale-yellow-ink); }
.arnf-tag--red { background: var(--arnf-pale-red); color: var(--arnf-pale-red-ink); }

.arnf-note {
	background: var(--arnf-primary-wash);
	border-radius: var(--arnf-radius);
	padding: var(--arnf-space-3);
}

/* ---------------------------------------------------------------- Forms */

label,
.arnf-label {
	color: var(--arnf-ink);
	display: block;
	font-size: var(--arnf-step--1);
	font-weight: 700;
	letter-spacing: 0.02em;
	margin-bottom: 0.4rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="number"],
input[type="search"],
input[type="password"],
select,
textarea {
	background: var(--arnf-surface);
	border: 1px solid var(--arnf-border-strong);
	border-radius: var(--arnf-radius-sm);
	color: var(--arnf-ink);
	font-family: var(--arnf-font);
	font-size: var(--arnf-step-0);
	line-height: 1.5;
	min-height: 44px;
	padding: 0.7rem 0.9rem;
	width: 100%;
}

textarea { min-height: 10rem; }

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
	border-color: var(--arnf-primary-ink);
	outline: 2px solid var(--arnf-primary-ink);
	outline-offset: 1px;
}

::placeholder { color: var(--arnf-muted); opacity: 1; }

.arnf-field-error,
.arnf-error {
	color: var(--arnf-pale-red-ink);
	font-size: var(--arnf-step--1);
	margin-top: 0.35rem;
}

input[aria-invalid="true"],
textarea[aria-invalid="true"] { border-color: var(--arnf-pale-red-ink); }

/* --------------------------------------------------------------- Tables */

table { border-collapse: collapse; width: 100%; }

.arnf-table-scroll { overflow-x: auto; }

/* GeneratePress boxes every cell; one horizontal rule reads calmer. */
th, td {
	border: 0;
	border-bottom: 1px solid var(--arnf-border);
	padding: 0.85rem 1rem;
	text-align: left;
	vertical-align: top;
}

th:first-child, td:first-child { padding-left: 0; }
th:last-child, td:last-child { padding-right: 0; }

thead th {
	color: var(--arnf-muted);
	font-size: var(--arnf-step--1);
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

tbody tr:last-child td { border-bottom: 0; }

/* ---------------------------------------------------------- Breadcrumbs */

.arnf-breadcrumbs {
	color: var(--arnf-muted);
	font-size: var(--arnf-step--1);
	padding-block: var(--arnf-space-2);
}

.arnf-breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.arnf-breadcrumbs li + li::before {
	color: var(--arnf-border-strong);
	content: '/';
	margin-inline-end: 0.5rem;
}

.arnf-breadcrumbs a { color: var(--arnf-muted); }
.arnf-breadcrumbs a:hover { color: var(--arnf-primary-ink); }
.arnf-breadcrumbs [aria-current="page"] { color: var(--arnf-ink); }

/* ------------------------------------------------------------- Accordion */

.arnf-accordion details { border-bottom: 1px solid var(--arnf-border); }

.arnf-accordion summary {
	align-items: center;
	color: var(--arnf-ink);
	cursor: pointer;
	display: flex;
	font-weight: 700;
	gap: var(--arnf-space-2);
	justify-content: space-between;
	list-style: none;
	min-height: 44px;
	padding-block: var(--arnf-space-2);
}

.arnf-accordion summary::-webkit-details-marker { display: none; }

.arnf-accordion summary::after {
	color: var(--arnf-primary-ink);
	content: "+";
	font-size: 1.25rem;
	line-height: 1;
}

.arnf-accordion details[open] summary::after { content: "\2212"; }

.arnf-accordion details > :not(summary) { padding-bottom: var(--arnf-space-3); }

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

.arnf-footer {
	background: var(--arnf-surface);
	border-top: 1px solid var(--arnf-border);
	color: var(--arnf-ink-2);
	padding-block: var(--arnf-space-5) var(--arnf-space-3);
}

.arnf-footer__grid {
	display: grid;
	gap: var(--arnf-space-4);
	grid-template-columns: 1fr;
}

@media (min-width: 768px) {
	.arnf-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

.arnf-footer__heading {
	color: var(--arnf-muted);
	font-size: var(--arnf-step--1);
	font-weight: 700;
	letter-spacing: 0.12em;
	margin-bottom: var(--arnf-space-2);
	text-transform: uppercase;
}

.arnf-footer__logo {
	display: inline-block;
	margin-bottom: var(--arnf-space-2);
}

.arnf-footer__logo img { display: block; height: auto; }

.arnf-footer__org {
	color: var(--arnf-ink);
	font-size: var(--arnf-step-1);
	letter-spacing: -0.02em;
	margin-bottom: var(--arnf-space-1);
}

.arnf-footer__charity {
	color: var(--arnf-muted);
	font-size: var(--arnf-step--1);
	margin-bottom: var(--arnf-space-3);
}

.arnf-footer address {
	font-style: normal;
	margin-bottom: var(--arnf-space-2);
	white-space: pre-line;
}

.arnf-footer__contact { list-style: none; margin: 0 0 var(--arnf-space-3); padding: 0; }
.arnf-footer__contact li + li { margin-top: 0.35rem; }

.arnf-social {
	display: flex;
	flex-wrap: wrap;
	gap: var(--arnf-space-1);
	list-style: none;
	margin: 0;
	padding: 0;
}

.arnf-social a {
	align-items: center;
	border: 1px solid var(--arnf-border);
	border-radius: var(--arnf-radius-sm);
	color: var(--arnf-ink-2);
	display: inline-flex;
	height: 44px;
	justify-content: center;
	transition: border-color 200ms var(--arnf-ease), color 200ms var(--arnf-ease);
	width: 44px;
}

.arnf-social a:hover {
	border-color: var(--arnf-primary);
	color: var(--arnf-primary-ink);
}

.arnf-social svg { height: 18px; width: 18px; }

.arnf-footer__legal {
	border-top: 0;
	color: var(--arnf-muted);
	display: flex;
	flex-wrap: wrap;
	font-size: var(--arnf-step--1);
	gap: var(--arnf-space-1) var(--arnf-space-3);
	justify-content: space-between;
	margin-top: var(--arnf-space-4);
	padding-top: var(--arnf-space-3);
}

.arnf-footer__legal p { margin: 0; }
.arnf-footer__legal a { color: var(--arnf-muted); }
.arnf-footer__legal a:hover { color: var(--arnf-primary-ink); }

/* --------------------------------------------------------------- Motion */

/* Entry animation runs once on load and always finishes visible. A scroll-
   triggered version needs JavaScript, and any JavaScript that fails to fire
   leaves real content stuck at zero opacity. Not worth the risk here. */
@keyframes arnf-rise {
	from { opacity: 0; transform: translateY(12px); }
	to { opacity: 1; transform: none; }
}

.arnf-reveal {
	animation: arnf-rise 600ms var(--arnf-ease) both;
	animation-delay: calc(var(--arnf-index, 0) * 80ms);
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}

	.arnf-reveal { animation: none; }
}

/* ------------------------------------------------------- P6 page furniture */

.arnf-main {
	display: block;
	width: 100%;   /* fill the GeneratePress flex row instead of shrinking to content */
}

/* The Home identity band. Credential small, tagline large, both inside one h1
   so the page keeps a single heading that reads as a sentence. */
.arnf-band {
	padding-block: clamp(2.5rem, 5vw, 4.5rem) clamp(2rem, 4vw, 3.5rem);
	text-align: center;
}

.arnf-band__title {
	margin: 0;
	text-wrap: balance;
}

.arnf-band__credential {
	color: var(--arnf-primary-ink);
	display: block;
	font-size: var(--arnf-step-0);
	font-weight: 400;
	margin-bottom: var(--arnf-space-2);
}

.arnf-band__lead {
	display: block;
	font-size: var(--arnf-step-4);
	margin-inline: auto;
}

/* Two territories: the two things the fund does, each panel a whole link. */
.arnf-territories__split {
	background: var(--arnf-primary);   /* shows through as the seam */
	display: grid;
	gap: 6px;
	grid-template-columns: 1fr;
}

@media (min-width: 768px) {
	.arnf-territories__split { gap: 12px; }
}

@media (min-width: 768px) {
	.arnf-territories__split { grid-template-columns: 1fr 1fr; }
}

.arnf-territory {
	background: var(--arnf-surface-alt);
	color: var(--arnf-ink);
	display: block;
	isolation: isolate;
	min-height: max(11rem, calc((100svh - var(--arnf-shell-mobile) - 6px) / 2));
	overflow: hidden;
	position: relative;
	text-decoration: none;
}

/* The first viewport is the band plus both panels and nothing else, on a phone
   as well as a desktop: seeing only one of the two things the fund does is the
   whole argument half-made. Phone splits the remaining height between the two
   panels; desktop gives each the full remainder side by side. The WordPress
   admin bar exists for signed-in staff only, so it is subtracted rather than
   baked into the constants. */
.admin-bar .arnf-territory {
	min-height: max(11rem, calc((100svh - var(--arnf-shell-mobile) - 6px - 46px) / 2));
}

@media (min-width: 768px) and (min-height: 40rem) {
	.arnf-territory { min-height: max(20rem, calc(100svh - var(--arnf-shell))); }

	.admin-bar .arnf-territory { min-height: max(20rem, calc(100svh - var(--arnf-shell) - 32px)); }
}

.arnf-territory__image {
	height: 100%;
	inset: 0;
	object-fit: cover;
	position: absolute;
	transition: transform 600ms var(--arnf-ease);
	width: 100%;
}

.arnf-territory::after {
	background: linear-gradient(to top, rgba(17, 17, 17, 0.82) 0%, rgba(17, 17, 17, 0.45) 34%, rgba(17, 17, 17, 0) 62%);
	content: "";
	inset: 0;
	position: absolute;
}

.arnf-territory__body {
	bottom: 0;
	display: flex;
	flex-direction: column;
	padding: var(--arnf-space-3);
	position: absolute;
	z-index: 1;
}

@media (min-width: 768px) {
	.arnf-territory__body { padding: var(--arnf-space-4); }
}

.arnf-territory__label {
	align-self: start;
	background: var(--arnf-surface-alt);
	color: var(--arnf-ink);
	display: inline-block;
	font-size: var(--arnf-step--1);
	font-weight: 700;
	letter-spacing: 0.06em;
	line-height: 1.3;
	margin-bottom: var(--arnf-space-2);
	padding: 0.35em 0.7em;
	text-transform: uppercase;
}

.arnf-territory__summary {
	color: #ffffff;
	display: block;
	font-size: var(--arnf-step-1);
	max-width: 40ch;
}

/* A panel with no photograph still has to read. */
.arnf-territory:not(:has(.arnf-territory__image))::after { background: none; }

.arnf-territory:not(:has(.arnf-territory__image)) .arnf-territory__label {
	background: var(--arnf-surface);
	color: var(--arnf-ink);
}

.arnf-territory:not(:has(.arnf-territory__image)) .arnf-territory__summary { color: var(--arnf-muted); }

.arnf-territory:hover .arnf-territory__image,
.arnf-territory:focus-visible .arnf-territory__image { transform: scale(1.03); }

.arnf-territory:focus-visible { outline-offset: -4px; }

/* Inner page opening. */
.arnf-pagehead { padding-block: clamp(2rem, 4vw, 3.5rem) 0; }

.arnf-pagehead .arnf-container {
	display: grid;
	gap: var(--arnf-space-4);
	grid-template-columns: 1fr;
}

@media (min-width: 900px) {
	.arnf-pagehead:has(.arnf-pagehead__media) .arnf-container {
		align-items: start;
		grid-template-columns: 1.2fr 1fr;
	}
}

.arnf-pagehead__title {
	font-size: var(--arnf-step-4);
	margin-bottom: var(--arnf-space-2);
}

.arnf-pagehead__tagline {
	color: var(--arnf-muted);
	font-size: var(--arnf-step-2);
	margin-bottom: var(--arnf-space-3);
	max-width: 24ch;
}

/* Mission block and the founder's own words. */
.arnf-mission__heading { font-size: var(--arnf-step-3); }

.arnf-quote {
	border-top: 1px solid var(--arnf-border);
	margin: var(--arnf-space-4) 0 0;
	padding-top: var(--arnf-space-3);
}

.arnf-quote blockquote {
	border: 0;
	font-size: var(--arnf-step-1);
	margin: 0;
	max-width: var(--arnf-measure);
	padding: 0;
}

.arnf-quote blockquote p { margin: 0; }

.arnf-quote figcaption {
	color: var(--arnf-muted);
	font-size: var(--arnf-step--1);
	letter-spacing: 0.06em;
	margin-top: var(--arnf-space-2);
	text-transform: uppercase;
}

.arnf-quote figcaption::before { content: "\2014\00a0"; }

/* Portraits want a taller card than the auto-fit default allows. */
@media (min-width: 768px) {
	.arnf-grid--children { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
	.arnf-grid--children { grid-template-columns: repeat(4, 1fr); }
}

.arnf-card__media {
	display: block;
	overflow: hidden;
}

.arnf-more { margin-top: var(--arnf-space-3); }

/* The closing line, given the room it asks for. */
.arnf-closing {
	padding-block: clamp(3rem, 6vw, 5rem);
	text-align: center;
}

.arnf-closing__text {
	font-size: var(--arnf-step-3);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.2;
	margin: 0 auto;
	max-width: 24ch;
	text-wrap: balance;
}

/* Call to action band. */
.arnf-cta {
	background: var(--arnf-primary-wash);
	border-top: 1px solid var(--arnf-border);
	padding-block: clamp(2.5rem, 5vw, 4rem);
}

.arnf-cta .arnf-actions { justify-content: center; }

.arnf-cta__note {
	margin: 0 auto var(--arnf-space-3);
	max-width: 42ch;
	text-align: center;
}

/* Galleries and figures. */
.arnf-gallery figure { margin: 0; }

.arnf-gallery figcaption,
.entry-content figcaption {
	color: var(--arnf-muted);
	font-size: var(--arnf-step--1);
	margin-top: var(--arnf-space-1);
}

/* Giving table: the amount column should not wrap. */
.arnf-giving__amount {
	font-variant-numeric: tabular-nums;
	white-space: nowrap;
}

/* Contact page. */
.arnf-contact-layout {
	display: grid;
	gap: var(--arnf-space-4);
	grid-template-columns: 1fr;
}

@media (min-width: 900px) {
	.arnf-contact-layout { grid-template-columns: 1fr 1fr; }
}

.arnf-contact__item + .arnf-contact__item { margin-top: var(--arnf-space-3); }

.arnf-contact__label {
	color: var(--arnf-muted);
	font-size: var(--arnf-step--1);
	font-weight: 400;
	letter-spacing: 0.08em;
	margin-bottom: var(--arnf-space-1);
	text-transform: uppercase;
}

.arnf-contact address {
	font-style: normal;
	margin: 0;
}

.arnf-contact p { margin: 0; }

.arnf-map {
	line-height: 0;
	margin-top: var(--arnf-space-4);
}

.arnf-map iframe {
	border: 0;
	display: block;
	height: clamp(18rem, 42vh, 26rem);
	width: 100%;
}

/* Donations: the three ways to give. */
.arnf-ways {
	display: grid;
	gap: var(--arnf-space-4);
	grid-template-columns: 1fr;
}

@media (min-width: 900px) {
	.arnf-ways { grid-template-columns: repeat(3, 1fr); }
}

.arnf-way h2 { font-size: var(--arnf-step-1); }

.arnf-bank {
	display: grid;
	gap: 0;
	grid-template-columns: auto 1fr;
	margin: 0;
}

.arnf-bank dt {
	border-top: 1px solid var(--arnf-border);
	color: var(--arnf-muted);
	font-size: var(--arnf-step--1);
	padding: var(--arnf-space-1) var(--arnf-space-2) var(--arnf-space-1) 0;
}

.arnf-bank dd {
	border-top: 1px solid var(--arnf-border);
	font-variant-numeric: tabular-nums;
	margin: 0;
	padding: var(--arnf-space-1) 0;
}

/* The Gift Aid declaration is printed exactly as the client approved it. */
.arnf-giftaid {
	background: var(--arnf-surface);
	border-left: 1px solid var(--arnf-primary);
	font-style: normal;
	margin: var(--arnf-space-3) 0 0;
	padding: var(--arnf-space-3);
}

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

/* Pagination. */
.arnf-pagination { margin-top: var(--arnf-space-4); }

.arnf-pagination ul {
	display: flex;
	flex-wrap: wrap;
	gap: var(--arnf-space-1);
	list-style: none;
	margin: 0;
	padding: 0;
}

.arnf-pagination a,
.arnf-pagination span {
	align-items: center;
	border: 1px solid var(--arnf-border-strong);
	border-radius: var(--arnf-radius-sm);
	display: inline-flex;
	justify-content: center;
	min-height: 44px;
	min-width: 44px;
	padding-inline: var(--arnf-space-2);
	text-decoration: none;
}

.arnf-pagination a:hover { border-color: var(--arnf-primary-ink); }

.arnf-pagination .current {
	background: var(--arnf-primary-ink);
	border-color: var(--arnf-primary-ink);
	color: #ffffff;
}

.arnf-pagination .dots { border-color: transparent; }

/* ------------------------------------------- P6 archives, singles, dead ends */

/* One child profile. Portrait beside the name, story below at reading width. */
.arnf-profile__top {
	display: grid;
	gap: var(--arnf-space-4);
	grid-template-columns: 1fr;
	padding-top: clamp(2rem, 4vw, 3.5rem);
}

@media (min-width: 768px) {
	.arnf-profile__top {
		align-items: start;
		grid-template-columns: minmax(0, 20rem) 1fr;
	}
}

.arnf-profile__portrait { border-radius: var(--arnf-radius); overflow: hidden; }

.arnf-profile__name {
	font-size: var(--arnf-step-4);
	margin-bottom: var(--arnf-space-2);
}

.arnf-profile__born {
	color: var(--arnf-muted);
	font-size: var(--arnf-step--1);
	letter-spacing: 0.08em;
	margin-bottom: var(--arnf-space-3);
	text-transform: uppercase;
}

.arnf-profile__summary {
	font-size: var(--arnf-step-1);
	max-width: 42ch;
}

/* Articles are long letters, so the column and the figures carry the page. */
.arnf-article__head { padding-top: clamp(2rem, 4vw, 3.5rem); }

.arnf-article__title {
	font-size: var(--arnf-step-4);
	margin-bottom: var(--arnf-space-2);
	max-width: 24ch;
}

.arnf-article__meta {
	color: var(--arnf-muted);
	font-size: var(--arnf-step--1);
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.arnf-article__lead {
	border-radius: var(--arnf-radius);
	margin-bottom: var(--arnf-space-4);
	overflow: hidden;
}

.entry-content img {
	border-radius: var(--arnf-radius);
	height: auto;
}

.entry-content figure {
	margin: var(--arnf-space-4) 0;
	max-width: var(--arnf-measure);
}

/* Previous and next article. */
.arnf-postnav {
	border-top: 1px solid var(--arnf-border);
	display: grid;
	gap: var(--arnf-space-3);
	grid-template-columns: 1fr;
	margin-top: var(--arnf-space-5);
	padding-top: var(--arnf-space-3);
}

@media (min-width: 768px) {
	.arnf-postnav { grid-template-columns: 1fr 1fr; }
}

.arnf-postnav__link {
	display: block;
	text-decoration: none;
}

.arnf-postnav__link span:last-child { text-decoration: underline; text-underline-offset: 3px; }

.arnf-postnav__link--next { text-align: left; }

@media (min-width: 768px) {
	.arnf-postnav__link--next {
		grid-column: 2;
		text-align: right;
	}
}

.arnf-postnav__label {
	color: var(--arnf-muted);
	display: block;
	font-size: var(--arnf-step--1);
	letter-spacing: 0.08em;
	margin-bottom: var(--arnf-space-1);
	text-transform: uppercase;
}

/* Search results. */
.arnf-results-count {
	color: var(--arnf-muted);
	margin-bottom: var(--arnf-space-3);
}

.arnf-results {
	list-style: none;
	margin: var(--arnf-space-4) 0 0;
	padding: 0;
}

.arnf-result {
	border-top: 1px solid var(--arnf-border);
	padding-block: var(--arnf-space-3);
}

.arnf-result:last-child { border-bottom: 1px solid var(--arnf-border); }

.arnf-result__title {
	font-size: var(--arnf-step-1);
	margin-bottom: var(--arnf-space-1);
}

.arnf-result__kind {
	color: var(--arnf-muted);
	font-size: var(--arnf-step--1);
	letter-spacing: 0.08em;
	margin-bottom: var(--arnf-space-1);
	text-transform: uppercase;
}

.arnf-result p:last-child {
	margin-bottom: 0;
	max-width: var(--arnf-measure);
}

/* Dead ends: 404 and an empty search. */
.arnf-lost { max-width: var(--arnf-measure); }

.arnf-lost h1 { font-size: var(--arnf-step-3); }

.arnf-wayfinding {
	display: flex;
	flex-wrap: wrap;
	gap: var(--arnf-space-2);
	list-style: none;
	margin: var(--arnf-space-4) 0 0;
	padding: 0;
}

.arnf-wayfinding a {
	border: 1px solid var(--arnf-border-strong);
	border-radius: var(--arnf-radius-sm);
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	padding-inline: var(--arnf-space-2);
	text-decoration: none;
}

.arnf-wayfinding a:hover { border-color: var(--arnf-primary-ink); }

/* Search field. */
.arnf-search {
	display: flex;
	gap: var(--arnf-space-1);
	margin-top: var(--arnf-space-3);
	max-width: 32rem;
}

.arnf-search input[type="search"] { flex: 1 1 auto; }

.arnf-search .arnf-btn { flex: 0 0 auto; }

/* ------------------------------------------- P7 forms and click-to-load embeds */

.arnf-contact-form .ff-el-group { margin-bottom: var(--arnf-space-3); }

.arnf-contact-form .ff-el-input--label label {
	color: var(--arnf-ink);
	font-size: var(--arnf-step--1);
	font-weight: 700;
}

.arnf-contact-form .ff-el-is-error .error,
.arnf-contact-form .text-danger,
.arnf-contact-form .ff-el-helper {
	color: var(--arnf-pale-red-ink);
	font-size: var(--arnf-step--1);
}

.arnf-contact-form .ff-message-success {
	background: var(--arnf-primary-wash);
	border-left: 1px solid var(--arnf-primary);
	padding: var(--arnf-space-3);
}

.arnf-contact-form .ff-message-success p:last-child { margin-bottom: 0; }

.arnf-contact-form .ff-btn-submit {
	margin-top: var(--arnf-space-1);
}

.arnf-way address {
	font-style: normal;
	margin: 0;
}

.arnf-embed {
	background: var(--arnf-surface-alt);
	min-height: clamp(18rem, 42vh, 26rem);
	position: relative;
}

.arnf-embed--youtube { aspect-ratio: 16 / 9; min-height: 0; }

.arnf-embed__poster {
	display: block;
	height: 100%;
	left: 0;
	object-fit: cover;
	position: absolute;
	top: 0;
	width: 100%;
}

/* With a poster behind it the prompt is dark ink on a photograph, so it gets
   its own ground and light type rather than gambling on the still. */
.arnf-embed:has(.arnf-embed__poster) .arnf-embed__prompt {
	background: linear-gradient(
		180deg,
		rgba(20, 18, 15, 0.25) 0%,
		rgba(20, 18, 15, 0.62) 100%
	);
}

.arnf-embed:has(.arnf-embed__poster) .arnf-embed__note {
	color: rgba(249, 248, 245, 0.86);
	text-shadow: 0 1px 10px rgba(20, 18, 15, 0.6);
}

.arnf-embed__prompt {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: var(--arnf-space-2);
	inset: 0;
	justify-content: center;
	padding: var(--arnf-space-3);
	position: absolute;
	text-align: center;
	z-index: 1;
}

.arnf-embed__note {
	color: var(--arnf-muted);
	font-size: var(--arnf-step--1);
	margin: 0;
	max-width: 36ch;
}

.arnf-embed__play {
	display: inline-flex;
	margin-inline-end: 0.4rem;
	vertical-align: -0.15em;
}

.arnf-embed iframe {
	border: 0;
	display: block;
	height: 100%;
	min-height: clamp(18rem, 42vh, 26rem);
	width: 100%;
}

.arnf-embed--youtube iframe { min-height: 0; }

.arnf-embed[data-loaded="1"] { background: var(--arnf-ink); }

.arnf-map { line-height: 0; margin-top: var(--arnf-space-4); }

/* ------------------------------------------- Home: Face to Face (DEC-035) */

/* One child fills the first viewport. The header is subtracted so the
   photograph ends exactly where the fold does and the statement below is the
   first thing a scroll reveals. svh, not vh, so a phone's collapsing address
   bar cannot crop it. */
.arnf-lead {
	background: var(--arnf-ink);
	height: calc(100svh - var(--arnf-header, 8.5rem));
	margin: 0;
	min-height: 26rem;
	overflow: hidden;
	position: relative;
}

.admin-bar .arnf-lead { height: calc(100svh - var(--arnf-header, 8.5rem) - 32px); }

/* Off-centre crop: the caption block sits lower left, so the face is placed
   up and right of it. Covering a child's face with a caption is the one thing
   this composition cannot afford to do. */
.arnf-lead__image {
	height: 100%;
	object-fit: cover;
	object-position: 42% 30%;
	width: 100%;
}

/* Seats the block against the foot of the picture. It is not carrying any
   contrast — the block does that. */
.arnf-lead__veil {
	background: linear-gradient(to top, rgba(17, 17, 17, 0.5) 0%, rgba(17, 17, 17, 0.12) 30%, rgba(17, 17, 17, 0) 55%);
	inset: 0;
	position: absolute;
}

.arnf-lead__caption {
	bottom: 0;
	left: 0;
	padding-bottom: clamp(1.5rem, 4vh, 2.75rem);
	position: absolute;
	right: 0;
}

/* Solid, not translucent. Contrast then belongs to the template and cannot be
   broken by whichever photograph is chosen next. */
.arnf-lead__panel {
	background: var(--arnf-ink);
	max-width: 33rem;
	padding: clamp(1.25rem, 2.5vw, 1.9rem) clamp(1.25rem, 2.5vw, 2rem);
}

.arnf-lead__eyebrow {
	color: rgba(255, 255, 255, 0.78);
	font-size: var(--arnf-step--1);
	letter-spacing: 0.08em;
	margin: 0 0 0.4rem;
	text-transform: uppercase;
}

.arnf-lead__name {
	color: #ffffff;
	font-size: var(--arnf-step-4);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1;
	margin: 0 0 var(--arnf-space-2);
}

.arnf-lead__line {
	color: #ffffff;
	font-size: var(--arnf-step-1);
	line-height: 1.45;
	margin: 0;
	max-width: 38ch;
}

.arnf-lead__more { margin: var(--arnf-space-3) 0 0; }

.arnf-lead__more a {
	color: #ffffff;
	font-size: var(--arnf-step--1);
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.arnf-lead__more a:hover { color: var(--arnf-primary); }

.arnf-lead__more a:focus-visible { outline-color: #ffffff; }

/* After the face, the page goes quiet and states the case. */
.arnf-say__credential {
	color: var(--arnf-muted);
	font-size: var(--arnf-step--1);
	letter-spacing: 0.08em;
	margin: 0 0 var(--arnf-space-2);
	text-transform: uppercase;
}

.arnf-say__title {
	font-size: var(--arnf-step-4);
	margin-bottom: var(--arnf-space-3);
	max-width: 22ch;
}

.arnf-facts {
	border-top: 1px solid var(--arnf-ink);
	display: grid;
	gap: 0;
	grid-template-columns: 1fr;
	margin: var(--arnf-space-5) 0 0;
}

@media (min-width: 768px) {
	.arnf-facts { grid-template-columns: repeat(3, 1fr); }
}

.arnf-fact {
	border-bottom: 1px solid var(--arnf-border);
	padding: var(--arnf-space-3) var(--arnf-space-3) var(--arnf-space-3) 0;
}

@media (min-width: 768px) {
	.arnf-fact { border-bottom: 0; border-right: 1px solid var(--arnf-border); }
	.arnf-fact:last-child { border-right: 0; }
}

.arnf-fact dt {
	color: var(--arnf-muted);
	font-size: var(--arnf-step--1);
	letter-spacing: 0.08em;
	margin-bottom: 0.4rem;
	text-transform: uppercase;
}

.arnf-fact dd {
	color: var(--arnf-ink);
	margin: 0;
	max-width: 28ch;
}

.arnf-quote--lead blockquote { font-size: var(--arnf-step-2); }

/* The rest of the roster, small enough that the portrait above stays the
   subject of the page. */
.arnf-others__heading { font-size: var(--arnf-step-2); }

.arnf-others {
	display: grid;
	gap: var(--arnf-space-2);
	grid-template-columns: repeat(auto-fit, minmax(8.5rem, 1fr));
}

.arnf-other { text-decoration: none; }

.arnf-other__image {
	aspect-ratio: 4 / 5;
	object-fit: cover;
	object-position: center 20%;
	width: 100%;
}

.arnf-other__name {
	color: var(--arnf-ink);
	display: block;
	font-weight: 700;
	font-size: var(--arnf-step--1);
	margin-top: 0.5rem;
}

.arnf-other__year {
	color: var(--arnf-muted);
	display: block;
	font-size: var(--arnf-step--1);
	font-variant-numeric: tabular-nums;
}

.arnf-other:hover .arnf-other__name { color: var(--arnf-primary-ink); }

/* The two territories, no longer opening the page, sized as a section of it.
   The full-height rules above are scoped to the split variant only. */
.arnf-territories--band { padding-bottom: var(--arnf-section-y); }

.arnf-territories__heading {
	font-size: var(--arnf-step-2);
	margin-bottom: var(--arnf-space-3);
}

.arnf-territories--band .arnf-territory,
.admin-bar .arnf-territories--band .arnf-territory {
	min-height: clamp(13rem, 30vh, 20rem);
}
