



:root {
	--px-text-body: 1.8rem;       
	--px-text-eyebrow: 1.9rem;    
	--px-text-h3: 2.2rem;         
	--px-text-h2: 3.2rem;         
	--px-text-banner: 4rem;       

	--px-line-body: 1.45;
	--px-line-heading: 1.15;
	--px-line-tight: 1.1;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Just Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: var(--px-text-body);
	font-weight: 400;
	line-height: var(--px-line-body);
	color: var(--text-body);
	background-color: var(--bg-body);
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-top: 0;
	margin-bottom: var(--space-s);
	font-family: "Just Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: var(--px-line-heading);
	color: var(--text-title);
}

h1 {
	font-size: var(--px-text-banner);
	font-weight: 600;
}

h2 {
	font-size: var(--px-text-h2);
	font-weight: 600;
	color: var(--primary);
}

h3 {
	font-size: var(--px-text-h3);
	font-weight: 600;
	color: var(--primary);
}

h4,
h5,
h6 {
	font-weight: 600;
}

p {
	margin-top: 0;
	margin-bottom: var(--space-s);
}

a {
	color: inherit;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.22em;
}

img,
picture,
svg,
video {
	display: block;
	max-width: 100%;
	height: auto;
}

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

button {
	cursor: pointer;
}

ul,
ol {
	margin-top: 0;
	margin-bottom: var(--space-s);
	padding-left: 1.4em;
}

strong,
b {
	font-weight: 700;
}

::selection {
	background-color: var(--primary-20);
	color: var(--text-title);
}



.c-eyebrow {
	display: block;
	margin: 0;
	font-size: var(--px-text-eyebrow);
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.02em;
	color: var(--primary);
}

.c-heading {
	margin: 0;
	font-size: var(--px-text-h2);
	font-weight: 600;
	line-height: var(--px-line-heading);
	color: var(--primary);
}

.c-subheading {
	margin: 0;
	font-size: var(--px-text-h3);
	font-weight: 600;
	line-height: 1.2;
	color: var(--primary);
}

.c-lead {
	margin: 0;
	font-size: var(--px-text-body);
	font-weight: 400;
	line-height: var(--px-line-body);
	color: var(--text-body);
}

.c-body {
	margin: 0;
	font-size: var(--px-text-body);
	font-weight: 400;
	line-height: var(--px-line-body);
	color: var(--text-body);
}

.c-small {
	margin: 0;
	font-size: var(--text-s);
	font-weight: 400;
	line-height: 1.5;
	color: var(--tertiary);
}

.c-banner-title {
	margin: 0;
	font-size: var(--px-text-banner);
	font-weight: 600;
	line-height: var(--px-line-heading);
	color: var(--light);
}

.c-banner-text {
	margin: 0;
	font-size: var(--px-text-body);
	font-weight: 400;
	line-height: var(--px-line-body);
	color: var(--light);
}



.c-list {
	margin: 0;
	padding-left: 1.4em;
}

.c-list > li + li {
	margin-top: var(--space-xs);
}

.c-list--check {
	margin: 0;
	padding-left: 0;
	list-style: none;
}

.c-list--check > li {
	position: relative;
	padding-left: var(--space-m);
}

.c-list--check > li + li {
	margin-top: var(--space-xs);
}

.c-list--check > li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.35em;
	width: 1em;
	height: 1em;
	background-color: var(--primary);
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
}



.c-section-header {
	display: flex;
	flex-direction: column;
	gap: var(--space-s);
	max-width: 68rem;
}

.c-section-header--center {
	align-items: center;
	margin-inline: auto;
	text-align: center;
}

.c-section-header--wide {
	max-width: 86rem;
}



.c-badge {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	padding: 0.35em 0.8em;
	border-radius: 0;
	font-size: var(--text-xs);
	font-weight: 700;
	line-height: 1;
}

.c-badge--primary {
	background-color: var(--primary-10);
	color: var(--primary-d-2);
}

.c-badge--secondary {
	background-color: var(--secondary-10);
	color: var(--secondary-d-2);
}

.c-badge--accent {
	background-color: var(--accent-20);
	color: var(--dark);
}

.c-tag {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	padding: 0.35em 0.8em;
	border: 1px solid var(--border-primary);
	border-radius: 0;
	background-color: var(--bg-surface);
	color: var(--text-body);
	font-size: var(--text-xs);
	font-weight: 600;
	text-decoration: none;
	transition:
		background-color 0.2s ease,
		border-color 0.2s ease,
		color 0.2s ease;
}

.c-tag:hover,
.c-tag:focus-visible {
	background-color: var(--primary-10);
	border-color: var(--primary-30);
	color: var(--primary-d-2);
}



.c-alert {
	padding: var(--space-s) var(--space-m);
	border: 1px solid transparent;
	border-radius: 0;
	font-size: var(--text-s);
	font-weight: 600;
	line-height: 1.5;
}

.c-alert--success {
	background-color: var(--success-10);
	border-color: var(--success-20);
	color: var(--success);
}

.c-alert--error {
	background-color: var(--error-10);
	border-color: var(--error-20);
	color: var(--error);
}

.c-alert--warning {
	background-color: rgba(230, 119, 0, 0.1);
	border-color: rgba(230, 119, 0, 0.25);
	color: var(--warning);
}



.c-text-link,
#brx-content .brxe-text a:not(.bricks-button):not([class*="button"]):not([class*="btn"]):not(.c-btn),
#brx-content .brxe-text-basic a:not(.bricks-button):not([class*="button"]):not([class*="btn"]):not(.c-btn),
#brx-content .brxe-post-content a:not(.bricks-button):not([class*="button"]):not([class*="btn"]):not(.c-btn),
#brx-content p a:not(.bricks-button):not([class*="button"]):not([class*="btn"]):not(.c-btn),
#brx-content li a:not(.bricks-button):not([class*="button"]):not([class*="btn"]):not(.c-btn) {
	color: var(--primary-d-2);
	font-weight: 700;
	text-decoration: underline;
	text-decoration-color: var(--primary-40);
	text-underline-offset: 0.25em;
	transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.c-text-link:hover,
.c-text-link:focus-visible,
#brx-content .brxe-text a:not(.bricks-button):not([class*="button"]):not([class*="btn"]):not(.c-btn):hover,
#brx-content .brxe-text-basic a:not(.bricks-button):not([class*="button"]):not([class*="btn"]):not(.c-btn):hover,
#brx-content .brxe-post-content a:not(.bricks-button):not([class*="button"]):not([class*="btn"]):not(.c-btn):hover,
#brx-content p a:not(.bricks-button):not([class*="button"]):not([class*="btn"]):not(.c-btn):hover,
#brx-content li a:not(.bricks-button):not([class*="button"]):not([class*="btn"]):not(.c-btn):hover {
	color: var(--primary-d-1);
	text-decoration-color: var(--primary);
}

#brx-content .brxe-text a:not(.bricks-button):not([class*="button"]):not([class*="btn"]):not(.c-btn):focus-visible,
#brx-content .brxe-text-basic a:not(.bricks-button):not([class*="button"]):not([class*="btn"]):not(.c-btn):focus-visible,
#brx-content .brxe-post-content a:not(.bricks-button):not([class*="button"]):not([class*="btn"]):not(.c-btn):focus-visible,
#brx-content p a:not(.bricks-button):not([class*="button"]):not([class*="btn"]):not(.c-btn):focus-visible,
#brx-content li a:not(.bricks-button):not([class*="button"]):not([class*="btn"]):not(.c-btn):focus-visible {
	color: var(--primary-d-1);
	outline: 2px solid var(--primary);
	outline-offset: 0.18em;
}