/**
 * Reset, typography, utilities
 * @package Vertex
 */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	margin: 0;
	-webkit-font-smoothing: antialiased;
}

body {
	margin: 0;
	font-family: var(--font-family-base);
	font-size: var(--fs-body);
	line-height: var(--lh-body);
	color: var(--color-neutral-darkest);
	background: var(--color-neutral-lightest);
}

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

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

a:hover {
	text-decoration: underline;
}

ul,
ol {
	margin: 0;
	padding: 0;
}

ul[class],
ol[class] {
	list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 0.5em;
	font-weight: var(--fw-bold);
	line-height: var(--lh-tight);
}

h1 {
	font-size: var(--fs-h1);
}

h2 {
	font-size: var(--fs-h2);
}

h3 {
	font-size: var(--fs-h3);
}

p {
	margin: 0 0 1em;
}

p:last-child {
	margin-bottom: 0;
}

.container {
	max-width: var(--container-max-width);
	margin-inline: auto;
	padding-inline: var(--container-padding-x);
	width: 100%;
}

.screen-reader-text,
.sr-only {
	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 {
	position: fixed;
	top: 8px;
	left: 8px;
	z-index: 100000;
	padding: 12px 16px;
	background: var(--color-primary);
	color: var(--color-neutral-lightest);
	clip: auto;
	width: auto;
	height: auto;
}

.site-main {
	min-height: 40vh;
}
