/* === tokens === */
@font-face {
	font-family: 'Atma';
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url('/letters-88/atma-latin-500-normal.woff2') format('woff2');
}
@font-face {
	font-family: 'Atma';
	font-style: normal;
	font-weight: 600 700;
	font-display: swap;
	src: url('/letters-88/atma-latin-700-normal.woff2') format('woff2');
}

:root {
	--typ-display: 'Atma', 'Trebuchet MS', Verdana, sans-serif;
	--typ-base: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

	--sz-xxl: 48px;
	--sz-head: 36px;
	--sz-h3: 26px;
	--sz-h4: 21px;
	--sz-h5: 18px;
	--sz-micro-head: 16px;
	--sz-normal: 19px;
	--sz-caption: 16px;
	--sz-legal: 14px;

	--ld-snug: 1.2;
	--ld-default: 1.7;
	--ld-loose: 2;
	--wg-book: 400;
	--wg-mid: 500;
	--wg-strong: 600;
	--tr-packed: -0.01em;
	--tr-regular: 0;
	--tr-spread: 0.02em;

	--gut-1: 6px;
	--gut-2: 14px;
	--gut-3: 20px;
	--gut-4: 32px;
	--gut-5: 48px;
	--gut-6: 72px;
	--gut-7: 112px;
	--gut-8: 160px;

	--rd-1: 1px;
	--rd-2: 2px;
	--rd-3: 6px;
	--rd-4: 8px;
	--rd-5: 14px;
	--rd-6: 20px;
	--rd-7: 26px;
	--rd-8: 32px;
	--rd-capsule: 9999px;
	--rd-circle: 50%;

	--elev-1: 0 1px 1px rgba(3, 2, 20, 0.28);
	--elev-2: 0 1px 2px rgba(3, 2, 20, 0.34);
	--elev-3: 0 2px 4px rgba(3, 2, 20, 0.38);
	--elev-4: 0 4px 10px rgba(3, 2, 20, 0.42);
	--elev-5: 0 8px 20px rgba(3, 2, 20, 0.46);
	--elev-6: 0 12px 28px rgba(3, 2, 20, 0.5);
	--elev-7: 0 18px 40px rgba(3, 2, 20, 0.54);
	--elev-8: 0 26px 60px rgba(3, 2, 20, 0.58);

	--dur-swift: 117ms;
	--dur-base: 230ms;
	--dur-easy: 398ms;
	--crv-release: cubic-bezier(0.25, 0.92, 0.51, 0.98);
	--crv-smooth: cubic-bezier(0.35, 0.03, 0.42, 0.92);
	--crv-elastic: cubic-bezier(0.43, 1.2, 0.74, 1.3);

	--shl-page: 1400px;
	--shl-narrow: 680px;
	--shl-pad-lg: 64px;
	--shl-pad-md: 32px;
	--shl-pad-sm: 20px;

	--rl-light: 1px;
	--rl-regular: 2px;
	--rl-heavy: 3px;

	--bar-height-desktop: 88px;
	--bar-h-sm: 64px;

	--tone-base: #1a114a;
	--tone-focus: #f7a127;
	--tone-action-down: #e1910b;
	--tone-bg: #0d0c3b;
	--tone-raised: #17155a;
	--tone-glyph: #ffffff;
	--tone-muted: #c1c1c1;
	--tone-edge: #2c2a6d;
	--tone-rule-bold: #45419a;
	--tone-ramp-start: #ffffff;
	--tone-ramp-end: #40308b;
	--tone-advisory: #c81e1e;

	--sec-y: 44px;
	--rg-h: 30px;
	--h-pad: 118px;
	--shelf: calc(var(--shl-page) + 2 * var(--shl-pad-lg));
}

/* === base === */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html,
body {
	overflow-x: clip;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 130px;
}

body {
	margin: 0;
	padding-top: var(--h-pad, 118px);
	background: var(--tone-bg);
	color: var(--tone-glyph);
	font-family: var(--typ-base);
	font-size: var(--sz-normal);
	font-weight: var(--wg-book);
	line-height: var(--ld-default);
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	-webkit-text-size-adjust: 100%;
}

.pageFlow {
	flex: 1 0 auto;
	display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	overflow-wrap: anywhere;
	margin: 0 0 var(--gut-3);
	line-height: var(--ld-snug);
	letter-spacing: var(--tr-packed);
	color: var(--tone-glyph);
}

h1 {
	font-family: var(--typ-display);
	font-size: clamp(30px, 4.4vw, var(--sz-xxl));
	font-weight: var(--wg-strong);
}

h2 {
	font-family: var(--typ-display);
	font-size: clamp(25px, 3.2vw, var(--sz-head));
	font-weight: var(--wg-strong);
}

h3 {
	font-family: var(--typ-base);
	font-size: var(--sz-h3);
	font-weight: var(--wg-strong);
}

h4 {
	font-family: var(--typ-base);
	font-size: var(--sz-h4);
	font-weight: var(--wg-strong);
}

p {
	margin: 0 0 var(--gut-3);
}

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

a {
	color: var(--tone-focus);
	text-underline-offset: 3px;
}

a:hover {
	color: var(--tone-action-down);
}

button {
	font: inherit;
}

table {
	border-collapse: collapse;
}

:focus-visible {
	outline: var(--rl-regular) solid var(--tone-focus);
	outline-offset: 3px;
}

/* === a11y + reduced motion === */
.skip-jump {
	position: absolute;
	left: var(--gut-3);
	z-index: 140;
	padding: var(--gut-2) var(--gut-3);
	border-radius: var(--rd-4);
	background: var(--tone-focus);
	color: var(--tone-bg);
	font-weight: var(--wg-strong);
	text-decoration: none;
}

.skip-jump:not(:focus) {
	top: -200px !important;
}

.skip-jump:focus {
	top: 96px;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip-path: inset(50%);
	white-space: nowrap;
}

[data-step] {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity var(--dur-easy) var(--crv-release), transform var(--dur-easy) var(--crv-release);
}

[data-step].is-in {
	opacity: 1;
	transform: none;
}

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

	*,
	*::before,
	*::after {
		animation: none !important;
		transition-duration: 1ms !important;
	}

	[data-step] {
		opacity: 1;
		transform: none;
	}
}

/* === shared shapes === */
.moduleZone-core,
.elementWrapper-core,
.precinctWrapper-core,
.labelStrip-core,
.areaSpan-core,
.blockBlock-core,
.dartFooter-core,
.elementStrip-core,
.bayRegion-core,
.crateBar-core,
.regionFooter-core,
.chipPanel-core,
.blockBunch-core,
.districtStrip-core,
.stubLane-core {
	width: 100%;
	max-width: calc(var(--shl-page) + 2 * var(--shl-pad-lg));
	margin-inline: auto;
	padding-inline: var(--shl-pad-lg);
}

.moduleZone,
.elementWrapper,
.precinctWrapper,
.labelStrip,
.areaSpan,
.blockBlock,
.dartFooter,
.elementStrip,
.bayRegion,
.crateBar,
.regionFooter,
.chipPanel,
.blockBunch,
.districtStrip {
	display: block;
	position: relative;
	padding-block: var(--sec-y);
	background: var(--tone-bg);
	color: var(--tone-glyph);
}

.moduleZone {
	padding-block: 0;
}

.md-series,
.dartFooter-series {
	margin: 0 0 var(--gut-3);
	padding-left: var(--gut-4);
}

.md-series li {
	margin-bottom: var(--gut-1);
}

.ln-jump {
	color: var(--tone-focus);
	text-decoration: underline;
}

.ln-jump:hover {
	color: var(--tone-action-down);
}

/* === 18+ === */
.rg-bar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 120;
	margin: 0;
	padding: 5px var(--shl-pad-sm);
	display: block;
	text-align: center;
	background: var(--tone-advisory);
	color: var(--tone-glyph);
	font-size: var(--sz-legal);
	line-height: 1.4;
}

.rg-age {
	display: inline-flex;
	align-items: center;
	margin-right: var(--gut-1);
	padding: 0 6px;
	border-radius: var(--rd-capsule);
	background: var(--tone-glyph);
	color: var(--tone-advisory);
	font-weight: var(--wg-strong);
}

.rg-jump {
	color: var(--tone-glyph);
	text-decoration: underline;
}

.rg-jump:hover {
	color: var(--tone-glyph);
	background: var(--tone-advisory);
}

/* === header (HEAD-MIRROR) === */
.fragmentLane {
	position: fixed;
	top: var(--rg-h);
	left: 0;
	right: 0;
	z-index: 110;
	background: var(--tone-base);
	color: var(--tone-glyph);
	box-shadow: var(--elev-5);
}

.fragmentLane-row {
	height: 88px;
	max-width: 1440px;
	margin-inline: auto;
	padding-inline: var(--gut-4);
	display: flex;
	align-items: center;
	gap: var(--gut-4);
	flex-wrap: nowrap;
}

.fragmentLane-map {
	flex: 0 1 auto;
	min-width: 0;
	overflow: visible;
}

.fragmentLane-series {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: var(--gut-4);
	margin: 0;
	padding: 0;
	list-style: none;
}

.fragmentLane-node {
	position: relative;
	flex: 0 0 auto;
}

.fragmentLane-node[hidden] {
	display: none;
}

.fragmentLane-node + .fragmentLane-node::before {
	content: '\00B7';
	position: absolute;
	left: calc(var(--gut-4) / -2);
	top: 50%;
	transform: translate(-50%, -50%);
	color: var(--tone-rule-bold);
	pointer-events: none;
}

.fragmentLane-jump,
.fragmentLane-more-toggle {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	padding: 0;
	border: 0;
	background: var(--tone-base);
	color: var(--tone-glyph);
	font-family: var(--typ-base);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: var(--tr-spread);
	text-transform: uppercase;
	white-space: nowrap;
	text-decoration: none;
	cursor: pointer;
	transition: color var(--dur-swift) var(--crv-release), transform var(--dur-swift) var(--crv-release);
}

.fragmentLane-jump:hover,
.fragmentLane-more-toggle:hover {
	color: var(--tone-focus);
	background: var(--tone-base);
	transform: translateY(-2px);
}

.fragmentLane-jump[aria-current='page'] {
	color: var(--tone-focus);
	background: var(--tone-base);
}

.fragmentLane-jump[aria-current='page']::after {
	content: '';
	position: absolute;
	top: -14px;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--tone-focus);
}

.fragmentLane-more-menu {
	display: none;
	position: absolute;
	top: calc(100% + 10px);
	right: 0;
	z-index: 6;
	min-width: 220px;
	max-height: 62vh;
	overflow-y: auto;
	margin: 0;
	padding: var(--gut-2);
	list-style: none;
	border: var(--rl-light) solid var(--tone-edge);
	border-radius: var(--rd-4);
	background: var(--tone-raised);
	box-shadow: var(--elev-6);
}

.fragmentLane-more-menu.is-open {
	display: block;
}

.fragmentLane-more-menu:not(.is-open) {
	pointer-events: none;
}

.fragmentLane-more-menu .fragmentLane-node {
	display: block;
}

.fragmentLane-more-menu .fragmentLane-node + .fragmentLane-node::before {
	content: none;
}

.fragmentLane-more-menu .fragmentLane-jump {
	display: flex;
	width: 100%;
	padding: var(--gut-1) var(--gut-2);
	background: var(--tone-raised);
	color: var(--tone-glyph);
}

.fragmentLane-more-menu .fragmentLane-jump:hover {
	background: var(--tone-raised);
	color: var(--tone-focus);
	transform: none;
}

.fragmentLane-crest {
	flex-shrink: 0;
	margin-left: auto;
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.fragmentLane-crest-pic {
	display: block;
	flex-shrink: 0;
	width: auto;
	height: 60px;
}

.fragmentLane-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 46px;
	min-height: 44px;
	padding: 0;
	border: 0;
	border-radius: var(--rd-3);
	background: var(--tone-base);
	color: var(--tone-glyph);
	cursor: pointer;
}

.fragmentLane-lines {
	position: relative;
	display: block;
	width: 24px;
	height: 2px;
	background: var(--tone-glyph);
}

.fragmentLane-lines::before {
	content: '';
	position: absolute;
	left: 0;
	top: -8px;
	width: 24px;
	height: 2px;
	background: var(--tone-glyph);
	transition: transform var(--dur-swift) var(--crv-release);
}

.fragmentLane-lines {
	transition: transform var(--dur-swift) var(--crv-release);
}

.fragmentLane-toggle[aria-expanded='true'] .fragmentLane-lines {
	transform: rotate(-45deg);
}

.fragmentLane-toggle[aria-expanded='true'] .fragmentLane-lines::before {
	transform: translateY(8px) rotate(90deg);
}

.fragmentLane-sheet {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 5;
	max-height: calc(100vh - 160px);
	overflow-y: auto;
	border-top: var(--rl-light) solid var(--tone-edge);
	background: var(--tone-base);
	color: var(--tone-glyph);
	box-shadow: var(--elev-6);
}

.fragmentLane-sheet.is-open {
	display: block;
}

.fragmentLane-stack {
	display: flex;
	flex-direction: column;
	gap: var(--gut-1);
	margin: 0;
	padding: var(--gut-3) var(--shl-pad-sm) var(--gut-4);
	list-style: none;
}

.fragmentLane-stack-node {
	display: block;
}

.fragmentLane-sheetjump {
	display: flex;
	align-items: center;
	min-height: 46px;
	padding-inline: var(--gut-2);
	border-radius: var(--rd-3);
	background: var(--tone-base);
	color: var(--tone-glyph);
	font-size: var(--sz-caption);
	font-weight: 500;
	letter-spacing: var(--tr-spread);
	text-transform: uppercase;
	text-decoration: none;
}

.fragmentLane-sheetjump[aria-current='page'],
.fragmentLane-sheetjump:hover {
	background: var(--tone-raised);
	color: var(--tone-focus);
}

@media (max-width: 899px) {
	.fragmentLane-row {
		height: var(--bar-h-sm);
		padding-inline: var(--shl-pad-sm);
	}

	.fragmentLane-map {
		display: none;
	}

	.fragmentLane-toggle {
		display: inline-flex;
	}

	.fragmentLane-crest-pic {
		height: 40px;
	}
}

@media (min-width: 900px) and (max-width: 1180px) {
	.fragmentLane-crest-pic {
		height: 48px;
	}

	.fragmentLane-series {
		gap: var(--gut-3);
	}

	.fragmentLane-node + .fragmentLane-node::before {
		left: calc(var(--gut-3) / -2);
	}
}

@media (min-width: 900px) {
	.fragmentLane-sheet.is-open {
		display: none;
	}
}

/* === footer (FOOT-10) === */
.stubLane {
	flex-shrink: 0;
	background: var(--tone-base);
	color: var(--tone-glyph);
	padding-block: var(--sec-y) 0;
}

.stubLane-brandrow {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--gut-5);
	padding-block: var(--gut-5);
	border-bottom: var(--rl-light) solid var(--tone-edge);
}

.stubLane-crest-pic {
	display: block;
	flex-shrink: 0;
	width: auto;
	height: 56px;
}

.stubLane-slogan {
	max-width: 620px;
	color: var(--tone-muted);
	background: var(--tone-base);
	font-size: var(--sz-caption);
	line-height: var(--ld-default);
}

.stubLane-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--gut-5);
	padding-block: var(--gut-6);
	border-bottom: var(--rl-light) solid var(--tone-edge);
}

.stubLane-track {
	min-width: 0;
}

.stubLane-head {
	margin: 0 0 var(--gut-3);
	font-family: var(--typ-display);
	font-size: var(--sz-h5);
	font-weight: var(--wg-strong);
	letter-spacing: var(--tr-spread);
	text-transform: uppercase;
	color: var(--tone-focus);
	background: var(--tone-base);
}

.stubLane-series {
	display: flex;
	flex-direction: column;
	gap: var(--gut-1);
	margin: 0;
	padding: 0;
	list-style: none;
}

.stubLane-node {
	display: block;
}

.stubLane-jump {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	background: var(--tone-base);
	color: var(--tone-glyph);
	font-size: var(--sz-caption);
	text-decoration: none;
}

.stubLane-jump:hover {
	background: var(--tone-base);
	color: var(--tone-focus);
	text-decoration: underline;
}

.stubLane-prose {
	color: var(--tone-muted);
	background: var(--tone-base);
	font-size: var(--sz-caption);
}

.stubLane-fine {
	padding-block: var(--gut-4);
	border-bottom: var(--rl-light) solid var(--tone-edge);
	color: var(--tone-muted);
	background: var(--tone-base);
	font-size: var(--sz-legal);
	line-height: var(--ld-default);
}

.stubLane-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: var(--gut-3);
	padding-block: var(--gut-4);
}

.stubLane-copy {
	color: var(--tone-muted);
	background: var(--tone-base);
	font-size: var(--sz-legal);
}

@media (max-width: 899px) {
	.stubLane-brandrow {
		flex-direction: column;
		align-items: flex-start;
		gap: var(--gut-3);
		padding-block: var(--gut-4);
	}

	.stubLane-grid {
		grid-template-columns: minmax(0, 1fr);
		gap: var(--gut-4);
		padding-block: var(--gut-4);
	}

	.stubLane-crest-pic {
		height: 44px;
	}
}

/* === cookie (COOK-10) === */
.boxRail-veil {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 128;
	background: rgba(4, 3, 24, 0.55);
	pointer-events: none;
}

.boxRail-veil.is-on {
	display: block;
}

.boxRail {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 130;
	width: min(480px, calc(100vw - 2 * var(--gut-3)));
}

.boxRail.is-on {
	display: block;
}

.boxRail-box {
	width: 100%;
	padding: var(--gut-5);
	border: var(--rl-light) solid var(--tone-edge);
	border-radius: var(--rd-5);
	background: var(--tone-raised);
	color: var(--tone-glyph);
	box-shadow: var(--elev-7);
}

.boxRail-head {
	margin: 0 0 var(--gut-2);
	font-family: var(--typ-display);
	font-size: var(--sz-h5);
	font-weight: var(--wg-strong);
	color: var(--tone-glyph);
	background: var(--tone-raised);
}

.boxRail-message {
	margin-bottom: var(--gut-3);
	color: var(--tone-muted);
	background: var(--tone-raised);
	font-size: var(--sz-caption);
	line-height: var(--ld-default);
}

.boxRail-tools {
	display: flex;
	flex-wrap: wrap;
	gap: var(--gut-2);
}

.boxRail-accept,
.boxRail-skip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding-inline: var(--gut-4);
	border: var(--rl-light) solid var(--tone-focus);
	border-radius: var(--rd-4);
	font-family: var(--typ-display);
	font-weight: var(--wg-strong);
	cursor: pointer;
}

.boxRail-accept {
	background: var(--tone-focus);
	color: var(--tone-bg);
}

.boxRail-accept:hover {
	background: var(--tone-action-down);
	color: var(--tone-bg);
}

.boxRail-skip {
	background: var(--tone-raised);
	color: var(--tone-glyph);
}

.boxRail-skip:hover {
	background: var(--tone-base);
	color: var(--tone-focus);
}

@media (max-width: 720px) {
	.boxRail-box {
		padding: 12px 14px;
		font-size: 13px;
		line-height: 1.35;
	}

	.boxRail-head {
		display: none;
	}

	.boxRail-message {
		font-size: 13px;
		line-height: 1.35;
	}

	.boxRail-tools {
		flex-direction: column;
		gap: 8px;
	}

	.boxRail-accept,
	.boxRail-skip {
		width: 100%;
		min-height: 40px;
		padding-inline: 14px;
		font-size: 14px;
		white-space: normal;
	}
}

/* === hero (HERO-10) === */
.moduleZone {
	display: flex;
	align-items: center;
	min-height: clamp(520px, calc(100vh - var(--h-pad, 118px)), 760px);
	overflow: hidden;
	background-image: linear-gradient(105deg, rgba(13, 12, 59, 0.96) 0%, rgba(13, 12, 59, 0.86) 46%, rgba(26, 17, 74, 0.62) 100%), url('/pictures-88/signature.webp');
	background-size: cover;
	background-position: 62% center;
	background-repeat: no-repeat;
}

.moduleZone-mark {
	position: absolute;
	top: 0;
	bottom: 0;
	inset-inline-start: max(var(--shl-pad-lg), calc((100vw - var(--shl-page)) / 2));
	display: flex;
	align-items: center;
	max-width: calc(var(--shl-page) * 0.3);
	color: var(--tone-glyph);
	opacity: 0.07;
	font-family: var(--typ-display);
	font-size: 52vh;
	font-weight: var(--wg-strong);
	line-height: 1;
	pointer-events: none;
	user-select: none;
}

.moduleZone-core {
	position: relative;
	z-index: 2;
	padding-block: var(--gut-6);
	padding-inline-start: calc(var(--shl-pad-lg) + 12vw);
}

.moduleZone-chip {
	display: inline-flex;
	align-items: center;
	margin-bottom: var(--gut-3);
	padding: 4px var(--gut-2);
	border: var(--rl-light) solid var(--tone-focus);
	border-radius: var(--rd-capsule);
	background: var(--tone-bg);
	color: var(--tone-focus);
	font-size: var(--sz-legal);
	font-weight: var(--wg-mid);
	letter-spacing: var(--tr-spread);
	text-transform: uppercase;
}

.moduleZone h1 {
	max-width: 16ch;
	margin-bottom: var(--gut-3);
}

.moduleZone-deck {
	max-width: var(--shl-narrow);
	margin-bottom: var(--gut-4);
	color: var(--tone-muted);
	font-size: var(--sz-caption);
	line-height: var(--ld-default);
}

.moduleZone-note {
	display: block;
	margin-top: var(--gut-2);
	color: var(--tone-muted);
	font-size: var(--sz-legal);
}

@media (max-width: 1140px) {
	.moduleZone-core {
		padding-inline-start: calc(var(--shl-pad-lg) + 8vw);
	}

	.moduleZone-mark {
		font-size: 40vh;
	}
}

@media (max-width: 899px) {
	.moduleZone {
		min-height: clamp(440px, calc(100vh - var(--h-pad, 118px)), 640px);
	}

	.moduleZone-mark {
		inset-inline-start: var(--shl-pad-sm);
		font-size: 30vh;
		opacity: 0.05;
	}

	.moduleZone-core {
		padding-inline: var(--shl-pad-sm);
		padding-block: var(--gut-5);
	}

	.moduleZone h1 {
		max-width: none;
	}
}

/* === page-header (PHEAD-07) === */
.elementWrapper-core {
	display: grid;
	grid-template-columns: 120px minmax(0, 1fr);
	gap: var(--gut-5);
	align-items: start;
}

.elementWrapper-num {
	align-self: start;
	font-family: var(--typ-display);
	font-size: 62px;
	font-weight: var(--wg-strong);
	line-height: 1;
	color: var(--tone-focus);
	background: var(--tone-bg);
}

.elementWrapper-part {
	min-width: 0;
}

.elementWrapper-deck {
	margin: 0;
	color: var(--tone-muted);
	font-size: var(--sz-caption);
}

@media (max-width: 899px) {
	.elementWrapper-core {
		grid-template-columns: minmax(0, 1fr);
		gap: var(--gut-2);
	}

	.elementWrapper-num {
		font-size: 44px;
	}
}

/* === prose (PROSE-27) === */
.dartFooter-core {
	counter-reset: chapter;
}

.dartFooter-item {
	position: relative;
	counter-increment: chapter;
	padding-block: var(--gut-4) 84px;
}

.dartFooter-item::after {
	content: counter(chapter, decimal-leading-zero);
	position: absolute;
	right: 0;
	bottom: 0;
	color: var(--tone-glyph);
	opacity: 0.14;
	font-family: var(--typ-display);
	font-size: 6em;
	font-weight: var(--wg-strong);
	line-height: 0.9;
	pointer-events: none;
}

.dartFooter-head {
	position: relative;
	z-index: 2;
	margin-block: 0 var(--gut-3);
	font-size: clamp(23px, 2.6vw, 30px);
	font-weight: var(--wg-strong);
}

.dartFooter-item:first-child .dartFooter-head {
	margin-block-start: 0;
}

.dartFooter-item p,
.dartFooter-item li {
	position: relative;
	z-index: 2;
}

@media (max-width: 899px) {
	.dartFooter-item {
		padding-block: var(--gut-3) 56px;
	}

	.dartFooter-item::after {
		font-size: 3.4em;
	}
}

/* === items grid (GRID-01) === */
.precinctWrapper-head {
	margin-bottom: var(--gut-5);
}

.precinctWrapper-stack {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--gut-5);
}

.precinctWrapper-item {
	padding: var(--gut-4);
	border: var(--rl-light) solid var(--tone-edge);
	border-radius: var(--rd-4);
	background: var(--tone-raised);
	color: var(--tone-glyph);
	transition: border-color var(--dur-base) var(--crv-release), transform var(--dur-base) var(--crv-release);
}

.precinctWrapper-item:hover {
	border-color: var(--tone-focus);
	transform: translateY(-6px);
}

.precinctWrapper-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin-bottom: var(--gut-3);
	border: var(--rl-light) solid var(--tone-rule-bold);
	border-radius: var(--rd-circle);
	background: var(--tone-base);
	color: var(--tone-focus);
}

.precinctWrapper-mark svg {
	width: 21px;
	height: 21px;
	fill: currentColor;
}

.precinctWrapper-top {
	margin-bottom: var(--gut-3);
	font-family: var(--typ-display);
	font-size: var(--sz-h4);
	font-weight: var(--wg-strong);
	line-height: var(--ld-snug);
	color: var(--tone-glyph);
}

.precinctWrapper-prose {
	color: var(--tone-muted);
	background: var(--tone-raised);
	font-size: var(--sz-caption);
	line-height: var(--ld-default);
}

.precinctWrapper-tools {
	display: flex;
	justify-content: center;
	margin-top: var(--gut-5);
}

@media (max-width: 1140px) {
	.precinctWrapper-stack {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: var(--gut-4);
	}
}

@media (max-width: 780px) {
	.precinctWrapper-stack {
		grid-template-columns: minmax(0, 1fr);
	}
}

/* === data table (TABLE-03) === */
.elementStrip-head {
	margin-bottom: var(--gut-4);
}

.elementStrip-rail {
	overflow-x: auto;
}

.elementStrip-grid {
	width: 100%;
	border: var(--rl-light) solid var(--tone-edge);
	border-radius: var(--rd-4);
	overflow: hidden;
	font-size: var(--sz-caption);
}

.elementStrip-grid th {
	padding: var(--gut-3) var(--gut-4);
	border-bottom: var(--rl-light) solid var(--tone-edge);
	background: var(--tone-base);
	color: var(--tone-focus);
	font-family: var(--typ-display);
	font-weight: var(--wg-strong);
	letter-spacing: var(--tr-spread);
	text-align: left;
	text-transform: uppercase;
}

.elementStrip-grid td {
	padding: var(--gut-3) var(--gut-4);
	border-bottom: var(--rl-light) solid var(--tone-edge);
	background: var(--tone-raised);
	color: var(--tone-glyph);
	vertical-align: top;
}

.elementStrip-row:nth-child(even) td {
	background: var(--tone-base);
	color: var(--tone-glyph);
}

@media (max-width: 640px) {
	.elementStrip-grid,
	.elementStrip-grid thead,
	.elementStrip-grid tbody {
		display: block;
	}

	.elementStrip-grid thead {
		display: none;
	}

	.elementStrip-row {
		display: block;
		margin-block-end: var(--gut-4);
		padding: var(--gut-3);
		border: var(--rl-light) solid var(--tone-edge);
		border-radius: var(--rd-4);
		background: var(--tone-raised);
	}

	.elementStrip-grid td {
		display: block;
		padding: var(--gut-1) 0;
		border-bottom: 0;
		background: var(--tone-raised);
	}

	.elementStrip-grid td::before {
		content: attr(data-chip);
		display: block;
		color: var(--tone-focus);
		font-size: var(--sz-legal);
		letter-spacing: var(--tr-spread);
		text-transform: uppercase;
	}

	.elementStrip-row:nth-child(even) td {
		background: var(--tone-raised);
	}
}

/* === faq (FAQ-05) === */
.labelStrip-head {
	margin-bottom: var(--gut-4);
}

.labelStrip-series {
	margin: 0;
	padding: 0;
	list-style: none;
}

.labelStrip-node {
	display: block;
	border-bottom: var(--rl-light) solid var(--tone-edge);
}

.labelStrip-item {
	display: block;
	padding-block: var(--gut-4);
}

.labelStrip-ask {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 28px;
	align-items: center;
	gap: var(--gut-3);
	cursor: pointer;
	list-style: none;
}

.labelStrip-ask::-webkit-details-marker {
	display: none;
}

.labelStrip-ask::after {
	content: '';
	width: 12px;
	height: 12px;
	justify-self: end;
	border-right: var(--rl-regular) solid var(--tone-focus);
	border-bottom: var(--rl-regular) solid var(--tone-focus);
	transform: rotate(45deg);
	transition: transform var(--dur-base) var(--crv-release);
}

.labelStrip-item[open] .labelStrip-ask::after {
	transform: rotate(225deg);
}

.labelStrip-top {
	margin: 0;
	font-family: var(--typ-base);
	font-size: var(--sz-h5);
	font-weight: var(--wg-strong);
	color: var(--tone-glyph);
}

.labelStrip-ask:hover .labelStrip-top {
	color: var(--tone-focus);
}

.labelStrip-answer {
	padding-top: var(--gut-3);
	color: var(--tone-muted);
	font-size: var(--sz-caption);
}

.labelStrip-answer p {
	margin: 0;
}

/* === reviews (REV-03) === */
.areaSpan-head {
	margin-bottom: var(--gut-4);
}

.areaSpan-rail {
	display: flex;
	gap: var(--gut-4);
	overflow-x: auto;
	padding-bottom: var(--gut-3);
	scroll-snap-type: x mandatory;
	scrollbar-width: thin;
}

.areaSpan-box {
	flex: 0 0 auto;
	width: 360px;
	min-height: 240px;
	margin: 0;
	padding: var(--gut-4);
	border: var(--rl-light) solid var(--tone-edge);
	border-radius: var(--rd-4);
	background: var(--tone-raised);
	color: var(--tone-glyph);
	scroll-snap-align: start;
}

.areaSpan-row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: var(--gut-2);
	margin-bottom: var(--gut-2);
}

.areaSpan-who {
	font-family: var(--typ-display);
	font-weight: var(--wg-strong);
	color: var(--tone-glyph);
	background: var(--tone-raised);
}

.areaSpan-day {
	color: var(--tone-muted);
	background: var(--tone-raised);
	font-size: var(--sz-legal);
}

.areaSpan-score {
	display: flex;
	align-items: center;
	gap: var(--gut-1);
	margin-bottom: var(--gut-1);
}

.areaSpan-stars {
	color: var(--tone-focus);
	background: var(--tone-raised);
	letter-spacing: 2px;
}

.areaSpan-val {
	color: var(--tone-muted);
	background: var(--tone-raised);
	font-size: var(--sz-legal);
}

.areaSpan-bar {
	position: relative;
	width: 60%;
	height: 4px;
	margin-bottom: var(--gut-3);
	border-radius: var(--rd-capsule);
	background: var(--tone-base);
}

.areaSpan-fill {
	position: absolute;
	inset: 0 auto 0 0;
	width: var(--fill, 90%);
	border-radius: var(--rd-capsule);
	background: var(--tone-focus);
}

.areaSpan-prose {
	color: var(--tone-muted);
	background: var(--tone-raised);
	font-size: var(--sz-caption);
	line-height: var(--ld-default);
}

.areaSpan-dots {
	display: flex;
	justify-content: center;
	gap: var(--gut-1);
	margin-top: var(--gut-3);
}

.areaSpan-dot {
	width: 22px;
	height: 22px;
	padding: 0;
	border: 0;
	border-radius: var(--rd-circle);
	background: var(--tone-base);
	cursor: pointer;
}

.areaSpan-dot.is-on {
	background: var(--tone-focus);
}

@media (max-width: 640px) {
	.areaSpan-box {
		width: min(300px, 82vw);
	}
}

/* === cta strip (CTA-01) === */
.blockBlock {
	background: var(--tone-focus);
	color: var(--tone-bg);
	padding-block: var(--sec-y);
}

.blockBlock-core {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--gut-5);
}

.blockBlock-part {
	min-width: 0;
}

.blockBlock-top {
	max-width: var(--shl-narrow);
	margin-bottom: var(--gut-2);
	color: var(--tone-bg);
	background: var(--tone-focus);
	font-family: var(--typ-display);
	font-size: clamp(24px, 3vw, var(--sz-head));
	font-weight: var(--wg-strong);
	letter-spacing: var(--tr-packed);
	text-transform: uppercase;
}

.blockBlock-deck {
	max-width: var(--shl-narrow);
	margin: 0;
	color: var(--tone-bg);
	background: var(--tone-focus);
	font-size: var(--sz-caption);
	line-height: var(--ld-default);
}

@media (max-width: 899px) {
	.blockBlock-core {
		flex-direction: column;
		align-items: flex-start;
		gap: var(--gut-3);
	}
}

/* === inline cta (INLINE-CTA-05) === */
.districtStrip {
	background: var(--tone-raised);
	color: var(--tone-glyph);
}

.districtStrip-pane {
	max-width: var(--shl-narrow);
	margin-inline: auto;
	text-align: center;
}

.districtStrip-quote {
	margin: 0 0 var(--gut-3);
	color: var(--tone-glyph);
	background: var(--tone-raised);
	font-family: var(--typ-display);
	font-size: var(--sz-h3);
	font-style: italic;
	line-height: var(--ld-snug);
}

/* === byline (BYLINE-04) === */
.chipPanel {
	background: var(--tone-bg);
}

.chipPanel-quote {
	max-width: 620px;
	margin: 0 auto;
	text-align: center;
}

.chipPanel-prose {
	position: relative;
	margin-bottom: var(--gut-3);
	color: var(--tone-glyph);
	background: var(--tone-bg);
	font-family: var(--typ-display);
	font-size: var(--sz-h4);
	font-style: italic;
	line-height: var(--ld-snug);
}

.chipPanel-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: var(--gut-2);
}

.chipPanel-shot {
	width: 32px;
	height: 32px;
	border-radius: var(--rd-circle);
	object-fit: cover;
}

.chipPanel-who {
	font-style: normal;
	font-weight: var(--wg-strong);
}

.chipPanel-jump {
	color: var(--tone-focus);
	background: var(--tone-bg);
	text-decoration: none;
}

.chipPanel-jump:hover {
	color: var(--tone-action-down);
	background: var(--tone-bg);
	text-decoration: underline;
}

.chipPanel-job,
.chipPanel-day {
	color: var(--tone-muted);
	background: var(--tone-bg);
	font-size: var(--sz-legal);
	font-style: italic;
}

/* === offer button base === */
.moduleZone-press,
.blockBlock-press,
.districtStrip-press,
.precinctWrapper-press,
.blockBunch-press {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding-inline: var(--gut-5);
	border-radius: var(--rd-4);
	font-family: var(--typ-display);
	font-weight: var(--wg-strong);
	letter-spacing: var(--tr-spread);
	text-decoration: none;
	white-space: nowrap;
	flex-shrink: 0;
}

.blockBunch-press {
	background: var(--tone-focus);
	color: var(--tone-bg);
}

.blockBunch-press:hover {
	background: var(--tone-action-down);
	color: var(--tone-bg);
}

/* === legal (LEGAL-06) === */
.bayRegion-core {
	counter-reset: clause;
}

.bayRegion-deck {
	margin-bottom: var(--gut-4);
	color: var(--tone-muted);
	background: var(--tone-bg);
	font-size: var(--sz-normal);
	line-height: var(--ld-default);
}

.bayRegion-stack {
	display: block;
}

.bayRegion-item {
	counter-increment: clause;
	padding-block: var(--gut-4);
	border-top: var(--rl-light) solid var(--tone-edge);
}

.bayRegion-head {
	margin-block: 0 var(--gut-2);
	font-family: var(--typ-base);
	font-size: var(--sz-h4);
	font-weight: var(--wg-strong);
}

.bayRegion-head::before {
	content: '§ ' counter(clause) '. ';
	color: var(--tone-focus);
}

.bayRegion-item p {
	margin-bottom: var(--gut-2);
	color: var(--tone-muted);
	background: var(--tone-bg);
	font-size: var(--sz-caption);
	line-height: var(--ld-default);
}

.bayRegion-series {
	margin: var(--gut-4) 0 0;
	padding: var(--gut-4);
	list-style: none;
	border: var(--rl-light) solid var(--tone-edge);
	border-radius: var(--rd-4);
	background: var(--tone-raised);
	color: var(--tone-glyph);
}

.bayRegion-node {
	margin-bottom: var(--gut-2);
	color: var(--tone-glyph);
	background: var(--tone-raised);
	font-size: var(--sz-caption);
}

.bayRegion-fine {
	margin-top: var(--gut-4);
	color: var(--tone-muted);
	background: var(--tone-bg);
	font-size: var(--sz-legal);
	line-height: var(--ld-default);
}

/* === contact form (FORM-01) === */
.crateBar-shell {
	padding: var(--gut-5);
	border: var(--rl-light) solid var(--tone-edge);
	border-radius: var(--rd-4);
	background: var(--tone-raised);
	color: var(--tone-glyph);
	box-shadow: var(--elev-3);
}

.crateBar-done {
	display: none;
	margin-bottom: var(--gut-3);
	padding: var(--gut-3);
	border: var(--rl-light) solid #2f7d4f;
	border-radius: var(--rd-4);
	background: #123a26;
	color: var(--tone-glyph);
	font-size: var(--sz-caption);
}

.crateBar-done.is-on {
	display: block;
}

.crateBar-form {
	display: flex;
	flex-direction: column;
	gap: var(--gut-4);
}

.crateBar-slot {
	display: flex;
	flex: 0 0 auto;
	flex-direction: column;
	gap: var(--gut-1);
}

.crateBar-chip {
	color: var(--tone-glyph);
	background: var(--tone-raised);
	font-size: var(--sz-legal);
	font-weight: var(--wg-mid);
	letter-spacing: var(--tr-spread);
	text-transform: uppercase;
}

.crateBar-input,
.crateBar-area {
	width: 100%;
	padding: var(--gut-2) var(--gut-3);
	border: var(--rl-light) solid var(--tone-edge);
	border-radius: var(--rd-4);
	background: var(--tone-bg);
	color: var(--tone-glyph);
	font-family: var(--typ-base);
	font-size: var(--sz-caption);
}

.crateBar-input {
	height: 48px;
}

.crateBar-area {
	min-height: 130px;
	resize: vertical;
}

.crateBar-input:focus,
.crateBar-area:focus {
	border-color: var(--tone-focus);
	outline: none;
}

.crateBar-send {
	align-self: flex-start;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding-inline: var(--gut-5);
	border: 0;
	border-radius: var(--rd-4);
	background: var(--tone-focus);
	color: var(--tone-bg);
	font-family: var(--typ-display);
	font-weight: var(--wg-strong);
	letter-spacing: var(--tr-spread);
	text-transform: uppercase;
	cursor: pointer;
}

.crateBar-send:hover {
	background: var(--tone-action-down);
	color: var(--tone-bg);
}

/* === author card (AUTH-07) === */
.regionFooter-box {
	display: grid;
	grid-template-columns: 100px minmax(0, 1fr);
	gap: var(--gut-5);
	padding: var(--gut-5);
	border-left: 4px solid var(--tone-focus);
	border-radius: var(--rd-4);
	background: var(--tone-raised);
	color: var(--tone-glyph);
}

.regionFooter-shot {
	width: 100px;
	height: 100px;
	align-self: start;
	border-radius: var(--rd-circle);
	object-fit: cover;
}

.regionFooter-part {
	min-width: 0;
}

.regionFooter-quote {
	display: block;
	color: var(--tone-focus);
	background: var(--tone-raised);
	font-family: var(--typ-display);
	font-size: var(--sz-xxl);
	font-weight: var(--wg-strong);
	line-height: 0.6;
}

.regionFooter-prose {
	margin-bottom: var(--gut-3);
	color: var(--tone-glyph);
	background: var(--tone-raised);
	font-size: var(--sz-h5);
	font-style: italic;
	line-height: var(--ld-default);
}

.regionFooter-row {
	color: var(--tone-muted);
	background: var(--tone-raised);
	font-size: var(--sz-caption);
	letter-spacing: var(--tr-spread);
}

.regionFooter-skills {
	display: flex;
	flex-wrap: wrap;
	gap: var(--gut-1);
	margin: var(--gut-3) 0 0;
	padding: 0;
	list-style: none;
}

.regionFooter-skill {
	padding: 4px var(--gut-2);
	border: var(--rl-light) solid var(--tone-rule-bold);
	border-radius: var(--rd-capsule);
	background: var(--tone-base);
	color: var(--tone-glyph);
	font-size: var(--sz-legal);
}

.regionFooter-articles {
	margin-top: var(--gut-5);
}

.regionFooter-head {
	margin-bottom: var(--gut-3);
	font-size: var(--sz-h3);
}

.regionFooter-series {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--gut-2);
	margin: 0;
	padding: 0;
	list-style: none;
}

.regionFooter-node {
	display: block;
}

.regionFooter-jump {
	display: block;
	padding: var(--gut-2);
	border: var(--rl-light) solid var(--tone-edge);
	border-radius: var(--rd-4);
	background: var(--tone-bg);
	color: var(--tone-glyph);
	font-size: var(--sz-caption);
	text-decoration: none;
}

.regionFooter-jump:hover {
	border-color: var(--tone-focus);
	background: var(--tone-bg);
	color: var(--tone-focus);
}

@media (max-width: 899px) {
	.regionFooter-box {
		grid-template-columns: minmax(0, 1fr);
		gap: var(--gut-3);
		padding: var(--gut-4);
	}

	.regionFooter-series {
		grid-template-columns: minmax(0, 1fr);
	}
}

/* === error (ERR-06) === */
.blockBunch {
	padding-block: var(--sec-y);
}

.blockBunch-core {
	display: flex;
	flex: 1 0 auto;
	align-items: center;
	justify-content: center;
}

.blockBunch-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--gut-3);
	max-width: var(--shl-narrow);
	margin-inline: auto;
	padding: var(--gut-6) var(--gut-5);
	border: var(--rl-regular) solid var(--tone-focus);
	border-radius: var(--rd-5);
	background: var(--tone-raised);
	color: var(--tone-glyph);
	box-shadow: var(--elev-4);
	text-align: center;
}

.blockBunch-num {
	font-family: var(--typ-display);
	font-size: clamp(56px, 16vw, 110px);
	font-weight: var(--wg-strong);
	line-height: 1;
	color: var(--tone-focus);
	background: var(--tone-raised);
}

.blockBunch-top {
	margin: 0;
	max-width: var(--shl-narrow);
	font-size: clamp(24px, 4vw, var(--sz-head));
}

.blockBunch-prose {
	margin: 0;
	color: var(--tone-muted);
	background: var(--tone-raised);
	font-size: var(--sz-caption);
}

/* === narrow screens: type scale === */
@media (max-width: 780px) {
	:root {
		--sz-xxl: 32px;
		--sz-head: 26px;
		--sz-h3: 22px;
		--sz-h4: 19px;
		--sz-h5: 17px;
		--sz-micro-head: 15px;
		--sz-normal: 18px;
		--sz-caption: 15px;
		--sz-legal: 13px;
		--shl-pad-lg: 20px;
		--sec-y: 36px;
	}
}

@media (min-width: 781px) and (max-width: 1140px) {
	:root {
		--shl-pad-lg: 32px;
	}
}

/* === offer CTA (scripts/cta-style.mjs, приём shine-breathe) === */
@property --shine_relb {
	syntax: '<percentage>';
	inherits: false;
	initial-value: -30%;
}

.relb-act {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 30px;
	border: 2px solid #0D0C3B;
	border-radius: 0;
	background: #DB2777;
	color: #FFFFFF;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 2.4px;
	box-shadow: 4px 4px 0 #0D0C3B;
	transition: background .12s ease, color .12s ease, transform .12s ease, box-shadow .12s ease;
	animation: breathe_relb 2.65s linear infinite;
}

.relb-act::after {
	content: "";
	position: absolute;
	inset: 0;
	width: 100%;
	transform: none;
	pointer-events: none;
	background: linear-gradient(100deg, transparent calc(var(--shine_relb) - 24%), rgba(255, 255, 255, .42) var(--shine_relb), transparent calc(var(--shine_relb) + 24%));
	animation: shine_relb 2.65s ease-in-out infinite;
}

.relb-act:hover {
	background: #BE185D;
	color: #FFFFFF;
	box-shadow: 2px 2px 0 #0D0C3B;
	animation: none;
}

.relb-act:hover::after {
	animation: none;
}

.relb-act:active {
	background: #9D174D;
	color: #FFFFFF;
}

.relb-act:focus-visible {
	outline: 3px solid #0D0C3B;
	outline-offset: 3px;
}

@keyframes breathe_relb {
	0% {
		transform: scale(1);
		animation-timing-function: cubic-bezier(.25, .8, .35, 1);
	}

	20.755% {
		transform: scale(1.055);
		animation-timing-function: cubic-bezier(.45, .05, .55, .95);
	}

	58.491%,
	100% {
		transform: scale(1);
	}
}

@keyframes shine_relb {
	0%,
	3.774% {
		--shine_relb: -30%;
	}

	52.830%,
	100% {
		--shine_relb: 130%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.relb-act,
	.relb-act::after {
		animation: none !important;
		transition: none !important;
	}
}

/* === доборы === */
.fragmentLane-node--more {
	position: relative;
}

.fragmentLane-sheetmap {
	display: block;
}

.stubLane-crest {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
	text-decoration: none;
}

/* колонка навигации в подвале: восемь пунктов в столбик дают пустоту справа */
@media (min-width: 900px) {
	.stubLane-track:first-child .stubLane-series {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: var(--gut-1) var(--gut-3);
	}
}

@media (max-width: 513px) {
  .fragmentLane-map,
  .fragmentLane-series,
  .fragmentLane-jump { display: none !important; }
  .fragmentLane-more-toggle { display: flex !important; }
}

.precinctWrapper-page-figure {
	margin-block: var(--typ-display);
}

.precinctWrapper-page-figure img {
	display: block;
	max-width: 100%;
	max-height: 56vh;
	width: auto;
	height: auto;
	margin-inline: auto;
}

.elementStrip-page-figure {
	margin-block: var(--typ-display);
}

.elementStrip-page-figure img {
	display: block;
	max-width: 100%;
	max-height: 56vh;
	width: auto;
	height: auto;
	margin-inline: auto;
}

.areaSpan-page-figure {
	margin-block: var(--typ-display);
}

.areaSpan-page-figure img {
	display: block;
	max-width: 100%;
	max-height: 56vh;
	width: auto;
	height: auto;
	margin-inline: auto;
}
