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

/* Prevent font size inflation */
html {
	-moz-text-size-adjust: none;
	-webkit-text-size-adjust: none;
	text-size-adjust: none;
}

/* Remove default margins for better authored spacing control */
:where(
	body,
	h1,
	h2,
	h3,
	h4,
	h5,
	h6,
	p,
	figure,
	blockquote,
	dl,
	dd,
	ul,
	ol
) {
	margin: 0;
}

/* Remove list styles only where list role explicitly suggests custom styling */
ul[role='list'],
ol[role='list'] {
	list-style: none;
	padding: 0;
}

/* Set core body defaults */
body {
	min-height: 100vh;
	margin: 0;
}

/* Set shorter line heights on headings and interactive elements */
h1,
h2,
h3,
h4,
h5,
h6,
button,
input,
label {
	line-height: 1.1;
}

/* Balance text wrapping on headings */
h1,
h2,
h3,
h4,
h5,
h6 {
	text-wrap: balance;
}

/* Unclassed links keep readable defaults */
a:not([class]) {
	text-decoration-skip-ink: auto;
	color: currentColor;
}

/* Make media easier to work with */
img,
picture {
	display: block;
	max-width: 100%;
}

/* Form controls inherit typography */
input,
button,
textarea,
select {
	font: inherit;
}

/* Make sure textareas without rows are not tiny */
textarea:not([rows]) {
	min-height: 10em;
}

/* Anchored content should not sit flush to the viewport edge */
:target {
	scroll-margin-block: 5ex;
}

/* Create a root stacking context */
.wp-site-blocks {
	isolation: isolate;
}


form input:-webkit-autofill,
form input:-webkit-autofill:hover,
form input:-webkit-autofill:focus,
form textarea:-webkit-autofill,
form textarea:-webkit-autofill:hover,
form textarea:-webkit-autofill:focus,
form select:-webkit-autofill,
form select:-webkit-autofill:hover,
form select:-webkit-autofill:focus {
	-webkit-box-shadow: 0 0 0 1000px #ebf0fc inset !important;
	-webkit-text-fill-color: var(--jet-black);
	caret-color: var(--jet-black);
}

form input:autofill,
form textarea:autofill,
form select:autofill {
	background-color: #ebf0fc !important;
	color: var(--jet-black);
	caret-color: var(--jet-black);
}
