:root {
	--ec-yellow: #FFC000;
	--ec-black: #000000;
	--ec-dark: #111111;
	--ec-white: #FFFFFF;
	--ec-gray-100: #F5F5F5;
	--ec-gray-200: #E5E5E5;
	--ec-gray-600: #666666;
	--ec-font: Inter, Arial, Helvetica, sans-serif;
	--ec-content-width: 1120px;
}

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

body {
	margin: 0;
	color: var(--ec-dark);
	background: var(--ec-white);
	font-family: var(--ec-font);
	font-size: 16px;
	line-height: 1.6;
}

body.ec-mobile-open { overflow: hidden; }

a { color: inherit; text-underline-offset: 0.18em; }
img, video, iframe, svg { max-width: 100%; height: auto; }

:focus-visible {
	outline: 3px solid var(--ec-yellow);
	outline-offset: 3px;
}

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

.skip-link:focus {
	top: 10px;
	left: 10px;
	z-index: 10000;
	width: auto;
	height: auto;
	padding: 10px 14px;
	clip: auto;
	color: var(--ec-black);
	background: var(--ec-yellow);
}

.ec-container {
	width: min(calc(100% - 32px), var(--ec-content-width));
	margin-inline: auto;
}

.ec-container-wide {
	width: min(calc(100% - 32px), 1320px);
	margin-inline: auto;
}

.ec-main { min-height: 60vh; }

.ec-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 10px 18px;
	border: 1px solid transparent;
	border-radius: 4px;
	font-weight: 800;
	font-size: 0.875rem;
	text-decoration: none;
}

.ec-button-primary {
	color: var(--ec-black);
	background: var(--ec-yellow);
	border-color: var(--ec-yellow);
}

.ec-button-outline {
	color: var(--ec-white);
	background: transparent;
	border-color: var(--ec-white);
}
