@view-transition {
  navigation: auto;
}

/* body {
	display: flex;
	flex-direction: column;
	min-height: 100dvh;
	font-family: var(--font-primary);
	font-size: var(--text-xl);
	font-weight: 400;
	line-height: 1.5;
	color: var(--color-black);
	background-color: var(--color-white);
	overflow-x: hidden;
}

main {
	flex-grow: 1;
} */

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	font-family: var(--font-secondary);
	font-weight: 500;
	color: inherit;
	margin: initial;
}

h1,
.h1 {
	font-size: var(--heading-h1);
	line-height: var(--heading-h1-lh);
	letter-spacing: var(--heading-h1-ls);
}
h2,
.h2 {
	font-size: var(--heading-h2);
	line-height: var(--heading-h2-lh);
	letter-spacing: var(--heading-h2-ls);
}
h3,
.h3 {
	font-size: var(--heading-h3);
	line-height: var(--heading-h3-lh);
	letter-spacing: var(--heading-h3-ls);
}
h4,
.h4 {
	font-size: var(--heading-h4);
	line-height: var(--heading-h4-lh);
	letter-spacing: var(--heading-h4-ls);
}
h5,
.h5 {
	font-size: var(--heading-h5);
	line-height: var(--heading-h5-lh);
	letter-spacing: var(--heading-h5-ls);
}
h6,
.h6 {
	font-size: var(--heading-h6);
	line-height: var(--heading-h6-lh);
	letter-spacing: var(--heading-h6-ls);
}

p {
	margin-bottom: 0;
}

a {
	color: inherit;
	text-decoration: none;
}

ul, ol {
	padding-left: 2ch;
	margin-bottom: 0;
	li::marker {
		font-weight: 700;
		color: var(--color-black);
	}
}

img {
	height: auto;
	max-width: 100%;
}

video {
	width: 100%;
	height: auto;
}

figure {
	margin-bottom: initial;
}

.container {
	width: 100%;
	max-width: var(--container-max-width);
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-primary);
	font-size: var(--text-lg);
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.2;
	transition: all .2s;

	/* &:hover,
	&:focus-visible {
	}

	&.btn-primary {
		&:hover,
		&:focus-visible {}
	} */
	
	/* &[class*="btn-outline-"] {
	} */

}

.reset-btn {
	border: none;
	outline: none;
	margin: 0;
	padding: 0;
	width: auto;
	overflow: visible;
	background: transparent;
	color: inherit;
	font: inherit;
	line-height: normal;
	-webkit-font-smoothing: inherit;
	-moz-osx-font-smoothing: inherit;
	-webkit-appearance: none;
	appearance: none;
	&::-moz-focus-inner {
		border: 0;
		padding: 0;
	}
	&:focus,
	&:focus:not(:focus-visible),
	&:focus:not(:-moz-focusring) {
		outline: none;
	}
}

.reset-ul {
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
}