/**
 * Base typography and layout utilities (loads after reset.css).
 */

body {
	font-family: var(--font-sans);
	color: var(--color-text);
	background: var(--color-bg);
}

.site-header__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem;
	justify-content: space-between;
}

.footer-menu__items {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.25rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-menu__items a {
	text-decoration: none;
	color: inherit;
}

.footer-menu__items a:hover {
	text-decoration: underline;
}
