.navigation-footer {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.navigation-footer .item {
	margin: 0 10px var(--space-2);
}

.navigation-footer a {
	color: inherit;
}

.navigation-footer a:hover {
	color: inherit;
	text-decoration: underline;
}

@media (min-width: 64em) {
	.navigation-footer {
		justify-content: start;
		align-items: flex-start;
	}

	.navigation-footer .item {
		margin: 0 10px;
	}
}