footer {
	padding: 1em;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	gap: 8px;
}

@media (min-width: 768px) {
	footer {
		flex-direction: row;
		align-items: center;
		padding: 1em;
	}
}

.footer-copy {
	font-size: var(--text-scale);
	font-weight: 400;
	letter-spacing: var(--text-ls);
	color: #000;
}

.footer-links {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

@media (min-width: 768px) {
	.footer-links {
		flex-direction: row;
		gap: 12px;
	}
}

.footer-links a {
	font-size: var(--text-scale);
	font-weight: 400;
	letter-spacing: var(--text-ls);
	transition: opacity 0.15s;
	word-spacing: -0.06em;
}

.footer-links a:hover {
	color: var(--primary);
}
