/*
 * Base layer — global typography, layout wrappers, shared components.
 * Loads after style.css and tokens.css. Blocks reuse these classes,
 * never redefine them (see CLAUDE.md §4).
 */

/* ---------- Global ---------- */

html {
	/* In-page anchors (TOC, #cta links) glide instead of jumping.
	   NOTE: overflow-x:clip must NOT sit on html — Chromium then refuses to
	   run smooth/programmatic scrolls entirely. The sideways-scroll guard
	   lives on #page below instead. */
	scroll-behavior: smooth;
}

#page {
	/* The page never scrolls sideways — wide content must live inside its
	   own scroller (.x07c53059). clip (not hidden) keeps position:sticky
	   working for the header. */
	overflow-x: clip;
	position: relative;
}

/* Atmosphere: one very soft warm-teal wash at the top of the page so a long
   article is not sitting on a single flat fill. Decorative and non-interactive
   — it must never intercept a click. */
#page::before {
	content: '';
	position: absolute;
	inset: 0 0 auto;
	height: 620px;
	background:
		radial-gradient(80% 100% at 15% 0%, rgba(11, 110, 120, .07), transparent 70%),
		radial-gradient(60% 90% at 90% 5%, rgba(63, 212, 224, .07), transparent 70%);
	pointer-events: none;
	z-index: 0;
}

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

/* Anchor targets land BELOW the sticky header instead of underneath it
   (header is ~92px: topbar + purple bar), with a little breathing room. */
[id] {
	scroll-margin-top: 116px;
}

body {
	background: var(--sn-bg);
	color: var(--sn-text);
	font-family: var(--sn-font);
	font-size: var(--sn-fs-md);
	line-height: var(--sn-lh-body);
}

h1, h2, h3, h4, h5, h6 {
	color: var(--sn-heading);
	line-height: var(--sn-lh-heading);
	font-family: var(--sn-font-display);
	font-weight: 700; /* Space Grotesk tops out at 700 */
	clear: both;
}

/* Fluid display sizes: the token is the FLOOR (phone) and the clamp scales up
   to a desktop ceiling. A fixed h2 is the same size on a 375px phone and a
   1440px screen, which is what made earlier skins feel flat at the top end. */
h1 { font-size: clamp(var(--sn-fs-2xl), 2rem + 2.4vw, 3.5rem); }
h2 { font-size: clamp(var(--sn-fs-xl), 1.5rem + 1.2vw, 2.375rem); }
h3 { font-size: var(--sn-fs-lg); }

/* Section marker: an OPEN petrol ring in front of every content H2.
   It is a ring rather than a filled mark on purpose — it rhymes with the
   "cleared" circular tick that runs through the site's artwork
   (IMAGE-STYLE-AU2.md), and it is distinct from every sibling site's marker
   (NL underline, DE vertical rule, SE filled square, TH gold lozenge).
   Do NOT add per-block heading markers on top of this one. */
.site-main h2 {
	position: relative;
	padding-left: var(--sn-sp-6);
}

.site-main h2::before {
	content: '';
	position: absolute;
	left: 0;
	top: .46em;
	width: 11px;
	height: 11px;
	border: 2px solid var(--sn-pink);
	border-radius: 50%;
	background: transparent;
}

/* Eyebrow label above section headings (reference style) — Michael can drop
   it in a WYSIWYG as <p class="x995b5a1e">…</p> right before a heading. */
.x995b5a1e {
	margin: 0 0 var(--sn-sp-1);
	color: var(--sn-primary);
	font-family: var(--sn-font-display);
	font-size: var(--sn-fs-xs);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
}

.x995b5a1e + h2,
.x995b5a1e + h3 {
	margin-top: 0;
}

/* Lede: the opening paragraph of an article, one step up from body. Michael
   applies it in a WYSIWYG as <p class="x52c4908a">…</p>. */
.x52c4908a {
	font-size: 1.1875rem;
	line-height: 1.62;
	color: var(--sn-heading);
}

a {
	color: var(--sn-accent);
	text-decoration: none;
}

/* HOVERS DARKEN, they never brighten: --sn-primary-hover (#085861) is a step
   DOWN from --sn-accent (#0B6E78), measured 7.36 vs 5.40 on paper. On a skin
   with a light action colour the same rule written as "hover to primary" made
   every content link vanish — do not reintroduce that shape here. */
a:hover,
a:focus {
	color: var(--sn-primary-hover);
	text-decoration: underline;
}

a:visited {
	color: var(--sn-accent);
}

/* PROSE LINKS ARE UNDERLINED. Colour alone is not a distinction: petrol
   #0B6E78 against body ink #35403F is a ~1.3:1 luminance difference, so a
   link in a paragraph is effectively invisible to anyone who does not
   perceive the hue.
   :where() keeps this at ZERO specificity so the opt-out list below always
   wins — an earlier skin wrote it as `.site-main p a` (0,1,2), which outranked
   `.x2ab4bdba` (0,1,0) and underlined every button sitting in a paragraph. */
:where(.site-main, .xf7a9358e) :where(p, li, td, th, dd, blockquote) a {
	text-decoration: underline;
	text-underline-offset: .15em;
}

:where(.site-main, .xf7a9358e) :where(p, li, td, th, dd, blockquote) :where(.x2ab4bdba, .xb0c32d27) {
	text-decoration: none;
}

/* Global keyboard focus ring. There was none at all: only one search input
   had a visible focus state. :focus-visible keeps it off mouse clicks. */
:focus-visible {
	outline: 2px solid var(--sn-primary);
	outline-offset: 3px;
	border-radius: var(--sn-radius-sm);
}

/* Native controls (checkbox, radio, range, text caret) pick up the brand
   instead of the browser's default blue. */
:root {
	accent-color: var(--sn-primary);
	caret-color: var(--sn-primary);
}

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

/* Content lists: ONE compact hanging indent. Underscores ships
   `margin: 0 0 1.5em 3em` on top of the browser's ~40px padding-left —
   a double indent that wrecks lists inside callouts and flex layouts.
   Blocks that restyle their own lists (toc, faq, chips, sources…) set
   explicit margins/paddings with class selectors and are unaffected. */
ul,
ol {
	margin: 0 0 1.5em;
	padding-left: var(--sn-sp-6);
}

li > ul,
li > ol {
	margin: var(--sn-sp-1) 0 0;
}

::selection {
	background: var(--sn-accent);
	color: var(--sn-on-chrome);
}

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

.xce633f69 {
	width: 100%;
	max-width: var(--sn-container);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--sn-sp-4);
	padding-right: var(--sn-sp-4);
}

.xf7a9358e {
	width: 100%;
	max-width: var(--sn-content);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--sn-sp-4);
	padding-right: var(--sn-sp-4);
}

@media (min-width: 768px) {
	.xce633f69,
	.xf7a9358e {
		padding-left: var(--sn-sp-6);
		padding-right: var(--sn-sp-6);
	}
}

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

/*
 * NEVER set `color` on .x2ab4bdba from a context — set --sn-btn-ink instead.
 * WHY, because this bug shipped twice: base.css forced
 * `.x2ab4bdba:visited { color: … }` while a context (the CTA band, the casino
 * panels) recoloured the same button. Equal specificity meant that AFTER the
 * visitor followed the link the label was repainted to the base ink, which on
 * a light band is the same colour as the band — the label simply vanished.
 * Routing ink through a custom property means a context override is inherited
 * by the base, hover and visited rules alike and cannot lose that race.
 */
.x2ab4bdba {
	display: inline-block;
	padding: var(--sn-sp-3) var(--sn-sp-8);
	border: 1px solid transparent;
	border-radius: var(--sn-radius-sm);
	background: var(--sn-primary);
	color: var(--sn-btn-ink, var(--sn-primary-dark));
	font-family: var(--sn-font-display);
	font-size: var(--sn-fs-sm);
	font-weight: 600;
	/* No uppercase and no tracking: the other Australian site's buttons are
	   uppercase letterspaced print slabs, and this one must not echo them. */
	line-height: 1.4;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	box-shadow: var(--sn-shadow);
	transition: background .16s ease, transform .16s ease, box-shadow .16s ease;
}

.x2ab4bdba:hover,
.x2ab4bdba:focus {
	background: var(--sn-primary-hover); /* darkens */
	color: var(--sn-btn-ink, var(--sn-primary-dark));
	text-decoration: none;
	transform: translateY(-1px);
	box-shadow: var(--sn-glow);
}

.x2ab4bdba:visited {
	color: var(--sn-btn-ink, var(--sn-primary-dark));
}

/*
 * Secondary is an OUTLINE, not a filled slab. A dark filled secondary competes
 * with the money CTA wherever both appear mid-article; an outline reads as
 * clearly subordinate while staying a 5.4:1 target on paper.
 */
.xb0c32d27 {
	background: transparent;
	border-color: var(--sn-primary);
	--sn-btn-ink: var(--sn-primary);
	box-shadow: none;
}

.xb0c32d27:hover,
.xb0c32d27:focus {
	background: var(--sn-primary-tint);
	border-color: var(--sn-primary-hover);
	--sn-btn-ink: var(--sn-primary-hover);
	box-shadow: none;
	transform: translateY(-1px);
}

/* ---------- Images (rendered by blocks) ---------- */

.xe9822840 {
	display: block;
	border-radius: var(--sn-radius);
	height: auto;
	max-width: 100%;
}

/* ---------- Shared table base ---------- */
/* Table blocks wrap their <table class="x5df9ee8e"> in .x07c53059 — mandatory. */

/*
 * Harbour tables read as a BANK STATEMENT: a white card with a toned header
 * band and hairline row rules. The other Australian site's tables are frameless
 * and rule-only, so this is a deliberate structural difference, not a tweak.
 *
 * WHENEVER THE THEAD BACKGROUND CHANGES, re-check the sticky corner in
 * blocks/comparison-table/style.css — it has to be painted with the SAME
 * colour as the band or it reads as a patch. That has been missed on two
 * separate market passes.
 */
.x07c53059 {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	background: var(--sn-surface);
	border: 1px solid var(--sn-border);
	border-radius: var(--sn-radius);
	box-shadow: var(--sn-shadow);
}

.x5df9ee8e {
	width: 100%;
	margin: 0;
	border-collapse: collapse;
	font-size: var(--sn-fs-sm);
}

.x5df9ee8e th,
.x5df9ee8e td {
	padding: var(--sn-sp-3) var(--sn-sp-4);
	border: 0;
	text-align: left;
	vertical-align: top;
}

.x5df9ee8e thead th {
	background: var(--sn-surface-2);
	color: var(--sn-heading);
	font-size: var(--sn-fs-xs);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .05em;
	white-space: nowrap;
	border-bottom: 1px solid var(--sn-border);
}

.x5df9ee8e tbody tr {
	background: var(--sn-surface);
	transition: background .15s ease;
}

.x5df9ee8e tbody td,
.x5df9ee8e tbody th {
	border-bottom: 1px solid color-mix(in srgb, var(--sn-border) 25%, transparent);
}

.x5df9ee8e tbody tr:last-child td,
.x5df9ee8e tbody tr:last-child th {
	border-bottom: 0;
}

.x5df9ee8e tbody tr:hover {
	background: color-mix(in srgb, var(--sn-accent) 5%, var(--sn-surface));
}

/* WYSIWYG tables (auto-wrapped by sterrennacht_wrap_naked_tables) usually
   keep their header cells in the first body row — style them like a thead.
   Zebra offset: skip the header row when striping. */
.xb3a1a913 tr:first-child th {
	background: transparent;
	color: var(--sn-text-muted);
	font-size: var(--sn-fs-xs);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .05em;
	white-space: nowrap;
	border-bottom: 2px solid var(--sn-heading);
}

.xb3a1a913 td {
	min-width: 120px; /* keeps pasted tables readable before the wrap scrolls */
}

/* ---------- Panels ---------- */

.x3e5f7aba {
	background: var(--sn-surface);
	border: 1px solid var(--sn-border);
	border-radius: var(--sn-radius);
	padding: var(--sn-sp-6);
	box-shadow: var(--sn-shadow);
}

@media (min-width: 768px) {
	.x3e5f7aba {
		padding: var(--sn-sp-8);
	}
}

/* ---------- Site header (T1) ---------- */

/* Print: ecru header (same as the page) behind a thin near-black rule —
   no shadow, the line does the work. The topbar stays dark green (18+
   compliance strip keeps its contrast). */
.x2d97c47e {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--sn-bg);
	border-bottom: 1px solid var(--sn-border);
}

.admin-bar .x2d97c47e {
	top: 32px;
}

.x32956af2 {
	background: var(--sn-purple);
	font-size: var(--sn-fs-xs);
	color: color-mix(in srgb, var(--sn-on-chrome) 80%, transparent);
}

.xbe010ebe {
	display: flex;
	align-items: center;
	gap: var(--sn-sp-2);
	padding-top: var(--sn-sp-1);
	padding-bottom: var(--sn-sp-1);
}

.x8a84d472 {
	display: inline-flex;
	align-items: center;
	padding: 0 var(--sn-sp-2);
	border: 1px solid var(--sn-gold);
	border-radius: var(--sn-radius-sm);
	color: var(--sn-gold);
	font-weight: 700;
}

.xf7330de3 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--sn-sp-4);
	padding-top: var(--sn-sp-3);
	padding-bottom: var(--sn-sp-3);
}

.xde55f91f {
	flex: 0 0 auto;
}

.x5035164f {
	margin: 0;
	font-family: var(--sn-font-display);
	font-size: 1.625rem;
	font-weight: 700;
	white-space: nowrap;
}

.x5035164f a {
	color: var(--sn-heading);
	text-decoration: none;
}

.x5035164f a::after {
	content: '.';
	color: var(--sn-primary);
}

.x2d97c47e .custom-logo {
	max-height: 70px;
	width: auto;
}

.x184cbc93 {
	position: relative;
	/* Underscores sets .main-navigation to width:100%; flex keeps the
	   hamburger pinned to the far right on mobile. */
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.x38e16e7d {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: var(--sn-sp-2);
	background: var(--sn-purple-tint);
	border: 1px solid var(--sn-border);
	border-radius: var(--sn-radius-sm);
	color: var(--sn-heading);
	cursor: pointer;
}

.x184cbc93 ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* Mobile: dropdown panel (covers both wp_nav_menu ul and wp_page_menu div>ul). */
.x184cbc93 > ul,
.x184cbc93 > div > ul {
	display: none;
	position: absolute;
	right: 0;
	top: calc(100% + var(--sn-sp-2));
	min-width: 220px;
	padding: var(--sn-sp-2);
	background: var(--sn-surface);
	border: 1px solid var(--sn-border);
	border-radius: var(--sn-radius);
	box-shadow: var(--sn-shadow);
}

.x184cbc93.toggled > ul,
.x184cbc93.toggled > div > ul {
	display: block;
}

/* Mobile-first: links live in the white dropdown panel — dark text. */
.x184cbc93 li a {
	display: block;
	padding: var(--sn-sp-2) var(--sn-sp-3);
	border-radius: var(--sn-radius-sm);
	color: var(--sn-text);
	font-size: var(--sn-fs-sm);
	font-weight: 600;
	text-decoration: none;
}

.x184cbc93 li a:hover,
.x184cbc93 li a:focus {
	background: var(--sn-purple-tint);
	color: var(--sn-heading);
	text-decoration: none;
}

.x184cbc93 li.current-menu-item > a,
.x184cbc93 li.current_page_item > a {
	color: var(--sn-accent);
}

/* Chevron on parent items (rotates up when open via .focus — navigation.js). */
.x184cbc93 li.menu-item-has-children > a::after,
.x184cbc93 li.page_item_has_children > a::after {
	content: '';
	display: inline-block;
	margin-left: var(--sn-sp-2);
	border: solid currentColor;
	border-width: 0 2px 2px 0;
	padding: 2.5px;
	transform: translateY(-3px) rotate(45deg);
	transition: transform .15s ease;
}

.x184cbc93 li.menu-item-has-children.focus > a::after,
.x184cbc93 li.page_item_has_children.focus > a::after {
	transform: translateY(1px) rotate(225deg);
}

/* Mobile submenu: nested inline inside the white panel, indented, collapsed
   until the parent gets .focus (tap — handled by navigation.js/nav.js).
   Overrides underscores' absolute/-999em positioning. */
.x184cbc93 ul ul {
	display: none;
	position: static;
	float: none;
	margin: var(--sn-sp-1) 0 var(--sn-sp-1) var(--sn-sp-3);
	padding: 0 0 0 var(--sn-sp-2);
	border-left: 2px solid color-mix(in srgb, var(--sn-accent) 25%, transparent);
	box-shadow: none;
}

.x184cbc93 li.focus > ul {
	display: block;
	left: auto;
}

/* Underscores force-opens all nested uls when .toggled — collapse them back
   so the mobile submenu is a tap-to-expand accordion (chevron on parent). */
.x184cbc93.toggled ul ul {
	display: none;
}

.x184cbc93.toggled li.focus > ul {
	display: block;
}

.x184cbc93 ul ul a {
	width: auto; /* underscores forces 200px */
	font-weight: 500;
}

@media (min-width: 768px) {
	.x38e16e7d {
		display: none;
	}

	.x184cbc93 {
		justify-content: flex-start; /* Desktop: menu sits next to the logo. */
	}

	.x184cbc93 > ul,
	.x184cbc93 > div > ul {
		display: flex !important; /* Beat underscores' .main-navigation rules. */
		position: static;
		gap: var(--sn-sp-1);
		min-width: 0;
		padding: 0;
		background: transparent;
		border: 0;
		box-shadow: none;
	}

	/* Desktop: dark links on the WHITE bar, amber underline on hover/active
	   (no pill background — Nordic flat). */
	.x184cbc93 li a {
		color: var(--sn-text);
		border-bottom: 2px solid transparent;
		border-radius: 0;
	}

	.x184cbc93 li a:hover,
	.x184cbc93 li a:focus {
		background: transparent;
		color: var(--sn-heading);
		border-bottom-color: var(--sn-primary);
	}

	.x184cbc93 li.current-menu-item > a,
	.x184cbc93 li.current_page_item > a {
		color: var(--sn-heading);
		border-bottom-color: var(--sn-primary);
	}

	/* Desktop dropdown: white card under the parent item. Opens on hover,
	   keyboard focus, or click (.focus via nav.js). */
	.x184cbc93 ul ul {
		display: none;
		position: absolute;
		top: calc(100% + 10px);
		left: 0;
		min-width: 230px;
		margin: 0;
		padding: var(--sn-sp-2);
		background: var(--sn-surface);
		border: 1px solid var(--sn-border);
		border-radius: var(--sn-radius);
		box-shadow: var(--sn-shadow);
	}

	/* Invisible bridge so the pointer can cross the gap without closing. */
	.x184cbc93 ul ul::before {
		content: '';
		position: absolute;
		top: -12px;
		left: 0;
		right: 0;
		height: 12px;
	}

	.x184cbc93 li:hover > ul,
	.x184cbc93 li:focus-within > ul,
	.x184cbc93 li.focus > ul {
		display: block;
		left: 0;
	}

	/* Dropdown links sit on a white card — dark text (overrides the
	   white-on-purple rule above). */
	.x184cbc93 ul ul li a {
		color: var(--sn-text);
	}

	.x184cbc93 ul ul li a:hover,
	.x184cbc93 ul ul li a:focus {
		background: var(--sn-purple-tint);
		color: var(--sn-heading);
	}

	.x184cbc93 ul ul li.current-menu-item > a,
	.x184cbc93 ul ul li.current_page_item > a {
		color: var(--sn-accent);
	}

	/* Chevron opens on hover too. */
	.x184cbc93 li.menu-item-has-children:hover > a::after,
	.x184cbc93 li.page_item_has_children:hover > a::after {
		transform: translateY(1px) rotate(225deg);
	}
}

/* ---------- Site footer (T2) — "Nordic Ledger" ---------- */
/* Three stacked rows behind thin rules: brand/menus, the prominent
   responsible-gambling strip, then copyright + disclosure. */

.x01b1f117 {
	margin-top: var(--sn-sp-16);
	background: var(--sn-purple-deep);
	color: color-mix(in srgb, var(--sn-on-chrome) 62%, transparent);
	font-size: var(--sn-fs-sm);
	border-top: 3px solid var(--sn-primary);
}

/* Row 1: brand + about | menus. */
.xad0977cb {
	display: grid;
	gap: var(--sn-sp-8);
	padding: var(--sn-sp-12) 0 var(--sn-sp-8);
}

.xd671ea54 {
	margin: 0 0 var(--sn-sp-3);
	color: var(--sn-on-chrome);
	font-family: var(--sn-font-display);
	font-size: var(--sn-fs-lg);
	font-weight: 700;
}

.xd671ea54::after {
	content: '.';
	color: var(--sn-primary);
}

.xcd4d4bb5 {
	margin: 0;
	max-width: 46ch;
}

.xd764e73a {
	margin: 0 0 var(--sn-sp-3);
	color: var(--sn-on-chrome);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .06em;
	font-size: var(--sn-fs-xs);
}

.x9ed17b85 {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: var(--sn-sp-2);
}

.x9ed17b85 a {
	color: color-mix(in srgb, var(--sn-on-chrome) 62%, transparent);
	text-decoration: none;
}

.x9ed17b85 a:hover,
.x9ed17b85 a:focus {
	color: var(--sn-on-chrome);
	text-decoration: underline;
	text-decoration-color: var(--sn-primary);
	text-underline-offset: 3px;
}

/* Row 2: responsible-gambling strip — compliance made prominent. */
.x8d6c0c12 {
	display: flex;
	flex-direction: column;
	gap: var(--sn-sp-4);
	padding: var(--sn-sp-4) 0;
	border-top: 1px solid color-mix(in srgb, var(--sn-on-chrome) 12%, transparent);
	border-bottom: 1px solid color-mix(in srgb, var(--sn-on-chrome) 12%, transparent);
}

.x0b1bf1f9 {
	display: flex;
	align-items: center;
	gap: var(--sn-sp-3);
}

.x0b1bf1f9 p {
	margin: 0;
	color: color-mix(in srgb, var(--sn-on-chrome) 80%, transparent);
}

.xc1505f31 {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: var(--sn-sp-2);
	margin: 0;
	padding: 0;
}

/* Outlined chips — deliberately NOT the amber action colour (compliance
   links are informational, CLAUDE.md §7). */
.xc1505f31 a {
	display: inline-block;
	padding: var(--sn-sp-1) var(--sn-sp-3);
	border: 1px solid color-mix(in srgb, var(--sn-on-chrome) 28%, transparent);
	border-radius: var(--sn-radius-sm);
	color: color-mix(in srgb, var(--sn-on-chrome) 80%, transparent);
	font-size: var(--sn-fs-xs);
	font-weight: 600;
	text-decoration: none;
	transition: border-color .15s ease, color .15s ease;
}

.xc1505f31 a:hover,
.xc1505f31 a:focus {
	border-color: color-mix(in srgb, var(--sn-on-chrome) 65%, transparent);
	color: var(--sn-on-chrome);
	text-decoration: none;
}

/* Row 3: copyright + disclosure. */
.x266aadb1 {
	display: flex;
	flex-direction: column;
	gap: var(--sn-sp-2);
	padding: var(--sn-sp-4) 0 var(--sn-sp-6);
	font-size: var(--sn-fs-xs);
	color: color-mix(in srgb, var(--sn-on-chrome) 45%, transparent);
}

.xfb627554,
.x830fc00b {
	margin: 0;
}

@media (min-width: 768px) {
	.xad0977cb {
		grid-template-columns: minmax(0, 1.5fr) auto auto;
		gap: var(--sn-sp-16);
	}

	.x8d6c0c12 {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}

	.x266aadb1 {
		flex-direction: row;
		align-items: baseline;
		justify-content: space-between;
		gap: var(--sn-sp-8);
	}

	.x830fc00b {
		text-align: right;
		max-width: 62ch;
	}
}

/* ---------- Scroll reveal ---------- */
/*
 * This state was MISSING on this branch while assets/js/reveal.js was still
 * enqueued, so the whole reveal feature was dead: the script added .is-inview
 * to elements that had no hidden state to come out of.
 *
 * COMPLIANCE BY CONSTRUCTION: the hidden state exists ONLY under .xf4a38677,
 * which reveal.js adds after its own prefers-reduced-motion check and only for
 * blocks still below the fold. No JS means nothing is EVER hidden, which is
 * what keeps this on the right side of the standing rule that no page content
 * may be obscured (CLAUDE.md §7).
 */

.xf4a38677 .x16380b58 {
	opacity: 0;
	transform: translateY(14px);
}

.xf4a38677 .x16380b58.is-inview {
	opacity: 1;
	transform: none;
	transition: opacity .5s ease, transform .5s ease;
}

@media (prefers-reduced-motion: reduce) {
	.xf4a38677 .x16380b58,
	.xf4a38677 .x16380b58.is-inview {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* ---------- Utilities ---------- */

.x3b209be2 {
	color: var(--sn-text-muted);
	font-size: var(--sn-fs-sm);
}

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