/*
 * 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 (.x3e42e45a). clip (not hidden) keeps position:sticky
	   working for the header. */
	overflow-x: clip;
}

@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: 500;
	letter-spacing: -.01em;
	clear: both;
}

/* A serif carries size better than a grotesque, so the display end runs
   larger here — and lighter: Newsreader at 700 would shout. */
h1 { font-size: clamp(2.5rem, 5.4vw, 3.75rem); font-weight: 400; }
h2 { font-size: clamp(1.75rem, 2.9vw, 2.375rem); font-weight: 400; }
h3 { font-size: var(--sn-fs-lg); font-weight: 600; }

/* Section marker: a small oxblood square. Deliberately restrained — the
   serif at this size is what announces a section, not the mark. */
.site-main h2 {
	position: relative;
	padding-left: var(--sn-sp-4);
}

.site-main h2::before {
	content: '';
	position: absolute;
	left: 0;
	top: .5em;
	width: 7px;
	height: 7px;
	border-radius: 0;
	background: var(--sn-pink);
}

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

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

/* Opening paragraph of a section — Michael can set it in a WYSIWYG as
   <p class="xe4b99b7a">…</p>. Larger and calmer than body text, it gives a
   long guide somewhere to breathe between the heading and the detail. */
.xe4b99b7a {
	font-family: var(--sn-font-display);
	font-size: 1.3125rem;
	line-height: 1.55;
	color: var(--sn-heading);
	font-weight: 400;
}

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

a:hover,
a:focus {
	color: var(--sn-primary-hover);
	text-decoration: underline;
}

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

/* Links in RUNNING TEXT are underlined, not merely tinted. Measured: the link
   indigo #262678 and the body ink #333333 sit at a 1.02:1 luminance ratio, so
   colour alone leaves a link in a paragraph effectively invisible (WCAG 1.4.1).
   Component links opt out below — chips, cards, menus and the ToC carry their
   own affordance. */
/* :where() zeroes this rule's specificity on purpose, so ANY component rule
   (.x036f063b, .xf239d355 a, …) outranks it without a specificity arms race — the
   first version underlined the buttons. */
:where(.site-main p, .site-main li, .site-main td, .site-main th) a {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
	text-decoration-color: color-mix(in srgb, var(--sn-accent) 35%, transparent);
	transition: color .15s ease, text-decoration-color .15s ease;
}

:where(.site-main p, .site-main li) a:hover,
:where(.site-main p, .site-main li) a:focus {
	text-decoration-color: currentColor;
}

.xf239d355 a,
.xe607425d a,
.x15dc2080 a,
.xfe730afc a,
.xcd6b107d a,
.xe2e9a563 a,
.xb323ed4e a,
.x036f063b {
	text-decoration: none;
}

/* Keyboard focus: one visible ring everywhere instead of the browser default
   (which several components had suppressed). */
:focus-visible {
	outline: 2px solid var(--sn-primary);
	outline-offset: 3px;
}

/* Native controls inherit the brand. */
input,
select,
textarea {
	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 ---------- */

.x7559601d {
	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);
}

.x5773a068 {
	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) {
	.x7559601d,
	.x5773a068 {
		padding-left: var(--sn-sp-6);
		padding-right: var(--sn-sp-6);
	}
}

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

/* A flat oxblood block. Nothing floats in this direction, so there is no
   shadow, no lift and no sheen — the colour alone is the signal, and it is
   the only saturated thing on the page. */
.x036f063b {
	display: inline-block;
	padding: var(--sn-sp-3) var(--sn-sp-8);
	border: 1px solid var(--sn-primary);
	border-radius: 0;
	background: var(--sn-primary);
	/* Ink goes through a custom property so EVERY state reads one value.
	   A context that recolours the button (the paper block on the oxblood
	   band) sets --sn-btn-ink, never `color` — otherwise :visited below
	   repaints it and the label vanishes once the visitor comes back. */
	color: var(--sn-btn-ink, var(--sn-primary-dark));
	font-family: var(--sn-font);
	font-size: var(--sn-fs-sm);
	font-weight: 700;
	letter-spacing: .04em;
	line-height: 1.4;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition: background .15s ease, border-color .15s ease;
}

.x036f063b:hover,
.x036f063b:focus {
	background: var(--sn-primary-hover);
	border-color: var(--sn-primary-hover);
	color: var(--sn-btn-ink, var(--sn-primary-dark));
	text-decoration: none;
}

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

/* No sheen sweep on this skin — a gloss effect fights the editorial tone.
   The casino CTA arrow (::after) is the only pseudo-element on buttons. */

/* Secondary action: the same block, outlined. Only conversion buttons are
   filled, so an in-content link-out never competes with the money CTA. */
.x0df84f9e {
	--sn-btn-ink: var(--sn-primary);
	background: transparent;
	border-color: var(--sn-primary);
}

.x0df84f9e:hover,
.x0df84f9e:focus {
	--sn-btn-ink: var(--sn-primary-hover);
	background: var(--sn-primary-tint);
	border-color: var(--sn-primary);
}

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

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

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

/* No frame: the table is set on the paper and ruled, like a printed table. */
.x3e42e45a {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

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

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

/* Small caps label over a 2px ink rule; rows separated by hairlines. */
.x9a706c82 thead th {
	background: transparent;
	color: var(--sn-text-muted);
	font-size: .75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .12em;
	white-space: nowrap;
	border-bottom: 2px solid var(--sn-heading);
}

.x9a706c82 tbody tr {
	background: transparent;
	transition: background .15s ease;
}

.x9a706c82 tbody td,
.x9a706c82 tbody th {
	border-bottom: 1px solid var(--sn-border);
}

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

.x9a706c82 tbody tr:hover {
	background: color-mix(in srgb, var(--sn-accent) 6%, transparent);
}

/* 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. */
.xc2f6ce30 tr:first-child th {
	background: transparent;
	color: var(--sn-text-muted);
	font-size: .75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .12em;
	white-space: nowrap;
	border-bottom: 2px solid var(--sn-heading);
}

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

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

.x0bf3857e {
	background: var(--sn-surface);
	border: 1px solid var(--sn-border);
	padding: var(--sn-sp-6);
}

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

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

/* Paper header behind a hairline — nothing floats on this skin. The topbar
   stays ink so the 18+ compliance strip keeps its contrast. */
.x4e6a00b2 {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--sn-bg);
	border-bottom: 1px solid var(--sn-border);
}

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

/* Reading progress — sits ON the header's bottom edge, so it covers nothing
   (assets/js/ui.js drives the scale; no JS = a 0-width, invisible bar). */
.x4da44c0b {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2px;
	overflow: hidden;
	pointer-events: none;
}

.x4988e81c {
	display: block;
	width: 100%;
	height: 100%;
	transform: scaleX(0);
	transform-origin: 0 50%;
	background: var(--sn-primary);
	transition: transform .12s linear;
}

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

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

.xa98d6161 {
	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: 800;
}

.x610ca233 {
	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);
}

.xc1b54dfc {
	flex: 0 0 auto;
}

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

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

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

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

.x1be63da9 {
	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;
}

.x65ccf4cf {
	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;
}

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

/* Mobile: dropdown panel (covers both wp_nav_menu ul and wp_page_menu div>ul). */
.x1be63da9 > ul,
.x1be63da9 > 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);
}

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

/* Mobile-first: links live in the white dropdown panel — dark text. */
.x1be63da9 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;
}

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

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

/* Chevron on parent items (rotates up when open via .focus — navigation.js). */
.x1be63da9 li.menu-item-has-children > a::after,
.x1be63da9 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;
}

.x1be63da9 li.menu-item-has-children.focus > a::after,
.x1be63da9 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. */
.x1be63da9 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;
}

.x1be63da9 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). */
.x1be63da9.toggled ul ul {
	display: none;
}

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

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

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

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

	.x1be63da9 > ul,
	.x1be63da9 > 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: ink links, oxblood underline on hover/active. nowrap because
	   the container is narrower on this skin and two-word items were
	   breaking across lines. */
	.x1be63da9 li a {
		color: var(--sn-text);
		border-bottom: 1px solid transparent;
		border-radius: 0;
		white-space: nowrap;
		padding-left: 0;
		padding-right: 0;
		font-size: var(--sn-fs-sm);
		letter-spacing: .02em;
	}

	.x1be63da9 > ul,
	.x1be63da9 > div > ul {
		gap: var(--sn-sp-6);
	}

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

	.x1be63da9 li.current-menu-item > a,
	.x1be63da9 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). */
	.x1be63da9 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. */
	.x1be63da9 ul ul::before {
		content: '';
		position: absolute;
		top: -12px;
		left: 0;
		right: 0;
		height: 12px;
	}

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

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

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

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

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

/* ---------- Site footer (T2) — "Blue Ribbon" ---------- */
/* Deep indigo deck under a curved top edge (mirrors the hero's bottom arc):
   brand | two menus | the responsible-gambling CARD, then a slim bottom bar. */

.xc7c233a5 {
	position: relative;
	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: the four-column deck. */
.x8326f282 {
	display: grid;
	gap: var(--sn-sp-8);
	padding: var(--sn-sp-12) 0 var(--sn-sp-8);
}

.x70f37ce7 {
	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: 500;
	letter-spacing: -.01em;
}

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

.xb11de8a5 {
	margin: 0;
	max-width: 42ch;
}

.x8326f282 > * {
	min-width: 0; /* grid children must be allowed to shrink below content */
}

/* Both menus live in one grid cell (see the 1024px rule). */
.x0c0b2581 {
	display: flex;
	flex-direction: column;
	gap: var(--sn-sp-8);
}

.x62e2755c {
	min-width: 0;
	flex: 1 1 auto;
}

.xc6685642 {
	margin: 0 0 var(--sn-sp-4);
	color: var(--sn-on-chrome);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .08em;
	font-size: var(--sn-fs-xs);
}

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

.xb8889fd4 a {
	color: color-mix(in srgb, var(--sn-on-chrome) 62%, transparent);
	text-decoration: none;
	transition: color .15s ease, padding-left .15s ease;
}

.xb8889fd4 a:hover,
.xb8889fd4 a:focus {
	color: var(--sn-on-chrome);
	padding-left: var(--sn-sp-2);
	text-decoration: none;
}

/* The compliance card — sits in the deck, not in a strip below it. */
.xa3c431f7 {
	display: flex;
	flex-direction: column;
	gap: var(--sn-sp-4);
	padding: var(--sn-sp-6);
	background: color-mix(in srgb, var(--sn-on-chrome) 6%, transparent);
	border: 1px solid color-mix(in srgb, var(--sn-on-chrome) 12%, transparent);
	border-left: 3px solid var(--sn-primary);
	border-radius: var(--sn-radius);
}

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

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

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

/* Outlined chips — deliberately NOT the action colour (compliance links
   are informational, CLAUDE.md §7). */
.x94bd95a9 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-pill);
	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, background .15s ease;
}

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

/* Row 2: copyright + disclosure. */
.xe0f9cba7 {
	display: flex;
	flex-direction: column;
	gap: var(--sn-sp-2);
	padding: var(--sn-sp-6) 0;
	border-top: 1px solid color-mix(in srgb, var(--sn-on-chrome) 10%, transparent);
	font-size: var(--sn-fs-xs);
	/* 45% read 3.93:1 on the ink footer — below AA for 13px copyright and
	   affiliate-disclosure text, which is exactly the text that must be
	   readable. 58% reads 5.54. */
	color: color-mix(in srgb, var(--sn-on-chrome) 58%, transparent);
}

.x7f4678b6,
.xc677e851 {
	margin: 0;
}

@media (min-width: 768px) {
	.x8326f282 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: var(--sn-sp-8) var(--sn-sp-12);
	}

	.x0c0b2581 {
		flex-direction: row;
		gap: var(--sn-sp-12);
	}

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

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

@media (min-width: 1024px) {
	/* Exactly three columns — brand, the menu cell, the compliance card. The
	   menus share ONE cell so an unassigned menu location cannot change the
	   column count and squash the brand text. */
	.x8326f282 {
		grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.6fr) minmax(250px, 1.3fr);
		gap: var(--sn-sp-12);
		padding-top: var(--sn-sp-16);
	}
}

/* ---------- Scroll reveal ---------- */
/* COMPLIANCE BY CONSTRUCTION: the hidden state exists ONLY under .xbfedc8da,
   which assets/js/reveal.js adds after its prefers-reduced-motion check, and
   only for blocks still below the fold. No JS = nothing is ever hidden. */

.xbfedc8da .x1a75978b {
	opacity: 0;
	transform: translateY(14px);
}

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

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

	/* Decorative motion off: the progress bar and the button sheen carry no
	   information, so they simply disappear. */
	.x4da44c0b {
		display: none;
	}

	.x036f063b::before {
		display: none;
	}
}

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

/* Soft arc on the bottom edge of a full-bleed band — the reference's
   signature section transition. Apply to a section that sits directly on
   the page background. */
.x6c970659 {
	border-bottom-left-radius: 50% 40px;
	border-bottom-right-radius: 50% 40px;
}

.x90376a0b {
	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;
}
