:root {
	--cst-container: 1120px;
	--cst-container-narrow: 840px;
	--cst-gutter: 24px;
	--cst-header-height: 76px;
	--cst-radius: 8px;
	--cst-border: rgba(31, 41, 55, 0.14);
	--cst-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
	--color-primary: #0f766e;
	--color-secondary: #164e63;
	--color-accent: #f59e0b;
	--color-background: #ffffff;
	--color-text: #1f2937;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--color-background);
	color: var(--color-text);
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1.75;
	overflow-x: clip;
	text-size-adjust: 100%;
}

body.cst-menu-open {
	overflow: hidden;
}

img,
iframe,
embed,
object,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
}

img {
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

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

button,
input,
textarea,
select {
	font: inherit;
}

:focus-visible {
	outline: 3px solid color-mix(in srgb, var(--color-accent), #ffffff 16%);
	outline-offset: 3px;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.cst-skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 1000;
	transform: translateY(-140%);
	padding: 10px 14px;
	border-radius: 6px;
	background: var(--color-text);
	color: #fff;
}

.cst-skip-link:focus {
	transform: translateY(0);
}

.cst-container {
	width: min(100% - (var(--cst-gutter) * 2), var(--cst-container));
	margin-inline: auto;
}

.cst-container--narrow {
	width: min(100% - (var(--cst-gutter) * 2), var(--cst-container-narrow));
}

.cst-main {
	min-height: 50vh;
}

.cst-page-content,
.cst-section {
	padding-block: 88px;
}

.cst-rich-text,
.cst-section-heading__intro {
	overflow-wrap: anywhere;
}

.cst-rich-text > :first-child,
.cst-section-heading__intro > :first-child {
	margin-top: 0;
}

.cst-rich-text > :last-child,
.cst-section-heading__intro > :last-child {
	margin-bottom: 0;
}

.cst-rich-text table,
.cst-section-heading__intro table {
	display: block;
	max-width: 100%;
	overflow-x: auto;
	border-collapse: collapse;
}

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

