/*──────────────────────────────────────────────────────────────────────────
	ROOT & DESIGN TOKENS
──────────────────────────────────────────────────────────────────────────*/

:root {
	--wpcore-content-width: 960px;
	--wpcore-wide-width: 1280px;
	--wpcore-page-padding: clamp(1rem, 4vw, 2rem);
	--wpcore-text-color: var(--wp--preset--color--text, #111111);
	--wpcore-background-color: var(--wp--preset--color--background, #ffffff);
	--wpcore-primary-color: var(--wp--preset--color--primary, #428f65);
	--wpcore-primary-hover-color: var(--wp--preset--color--primary-hover, #34764f);
	--wpcore-primary-soft-color: var(--wp--preset--color--primary-soft, #e7f2eb);
	--wpcore-border-color: var(--wp--preset--color--border, #c8c8c8);
	--wpcore-surface-color: var(--wp--preset--color--surface, #f5f6f5);
}

/*──────────────────────────────────────────────────────────────────────────
	RESET & BASE
──────────────────────────────────────────────────────────────────────────*/
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

	body {
	font-family:
		var(--wp--preset--font-family--manrope),
		sans-serif;
	font-weight: 400;
	color: var(--wpcore-text-color);
	background-color: var(--wpcore-background-color);
}

/*──────────────────────────────────────────────────────────────────────────
	TYPOGRAPHY
──────────────────────────────────────────────────────────────────────────*/

h1,
h2,
h3,
h4,
.site-title,
.entry-title {
	font-weight: 400;
}

h1,
.entry-title {
	font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
	font-size: clamp(2rem, 3.5vw, 3rem);
}

h3 {
	font-size: clamp(1.5rem, 2.5vw, 2rem);
}

h4 {
	font-size: clamp(1.2rem, 2vw, 1.5rem);
}

h5 {
	font-size: 1.125rem;
}

h6 {
	font-size: 1rem;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	color: var(--wpcore-primary-color);
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.15em;
}

a:hover,
a:focus-visible {
	text-decoration-thickness: 0.14em;
}

/*──────────────────────────────────────────────────────────────────────────
	ACCESSIBILITY
──────────────────────────────────────────────────────────────────────────*/

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

.screen-reader-text:focus {
	position: fixed;
	z-index: 100000;
	top: 1rem;
	left: 1rem;
	width: auto;
	height: auto;
	padding: 0.75rem 1rem;
	overflow: visible;
	clip: auto;
	background: #ffffff;
	color: #000000;
}
