*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body.pct-body {
	margin: 0;
	background: var(--pct-white);
	color: var(--pct-text);
	font-family: var(--pct-font);
	font-size: 16px;
	line-height: 1.65;
	overflow-x: hidden;
}

img,
svg,
video {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--pct-primary);
	text-decoration: none;
}

a:hover {
	color: var(--pct-primary-dark);
}

button,
input,
select,
textarea {
	font-family: inherit;
	font-size: inherit;
}

button {
	cursor: pointer;
}

:focus-visible {
	outline: 2px solid var(--pct-primary);
	outline-offset: 3px;
}

.skip-link {
	position: absolute;
	left: 16px;
	top: -80px;
	z-index: 100;
	background: var(--pct-primary);
	color: var(--pct-white);
	padding: 10px 16px;
	border-radius: var(--pct-radius-sm);
}

.skip-link:focus {
	top: 12px;
	color: var(--pct-white);
}

.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;
}

.pct-icon {
	flex-shrink: 0;
}

body.pct-nav-open {
	overflow: hidden;
}
