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

:root {
	--wpcore-content-width: 900px;
	--wpcore-wide-width: 1200px;
	--wpcore-page-padding: clamp(1rem, 4vw, 2rem);
	--wpcore-border-color: #d9dce1;
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family:
		var(--wp--preset--font-family--montserrat),
		Arial,
		sans-serif;
		font-weight: 400;
}

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

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

h1,
.entry-title {
	font-size: clamp(2.75rem, 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);
}

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

a {
	color: var(--wp--preset--color--accent);
	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;
}
