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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--color-cream);
	color: var(--color-text);
	font-family: var(--font-body);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

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

svg.fnf-icon {
	width: 16px;
	height: 16px;
	max-width: none;
	flex: none;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.75;
	stroke-linecap: round;
	stroke-linejoin: round;
}

a {
	color: var(--color-primary);
	text-decoration: none;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
	outline: none;
	box-shadow: var(--focus-ring);
}

h1,
h2,
h3,
.fnf-heading {
	font-family: var(--font-heading);
	font-weight: 600;
	color: var(--color-primary);
	line-height: 1.15;
	margin: 0 0 0.5em;
}

h1 {
	font-size: clamp(2.25rem, 5vw, 3.75rem);
}

h2 {
	font-size: clamp(1.875rem, 4vw, 2.75rem);
}

h3 {
	font-size: clamp(1.5rem, 3vw, 2.125rem);
}

p {
	margin: 0 0 1em;
}

button,
input,
select,
textarea {
	font-family: inherit;
	font-size: 1rem;
}

:focus:not(:focus-visible) {
	outline: none;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background: var(--color-white);
	clip: auto !important;
	clip-path: none;
	display: block;
	height: auto;
	left: 8px;
	padding: 8px 16px;
	top: 8px;
	width: auto;
	z-index: 100000;
}
