.navigation-footer {
	--font-link: var(--font-display);

	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: var(--space-3);
}

.navigation-footer .item {
	padding: 0 10px var(--space-3);
	font-family: var(--font-display);
	font-weight: 500;
	text-transform: uppercase;
	font-size: 15px;
}

.navigation-footer a {
	color: inherit;
}

.navigation-footer a:hover {
	color: inherit;
	text-decoration: underline;
}

@media (min-width: 64em) {
	.navigation-footer {
		column-width: 160px;
		flex-wrap: nowrap;
		justify-content: flex-end;
	}	

	.navigation-footer .item {
		font-size: 19px;
		padding: 0 0 0 var(--space-6);
	}

	@media (hover : hover) {
		.navigation-footer .item a:hover {
			text-decoration: none;
		}
	}
}
