/**
 * Base reset for theme templates.
 */

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

:where(body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd, hr, pre, fieldset) {
	margin: 0;
}

:where(ul, ol) {
	margin: 0;
	padding: 0;
	list-style: none;
}

:where(img, picture, video, canvas, svg) {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

:where(button, input, textarea, select) {
	font: inherit;
	color: inherit;
}

:where(a) {
	color: inherit;
	text-decoration: none;
}

body {
	margin: 0;
	min-height: 100vh;
}

main.wp-block-group,
footer.wp-block-template-part {
	margin: 0;
}

:root :where(.is-layout-flow) > * {
	margin-block-start: 0;
	margin-block-end: 0;
}
