.navigation-footer {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
    justify-content: center;
	flex-wrap: wrap;
	column-gap: 30px;
	row-gap: 6px;
}

.navigation-footer a {
	color: inherit;
	font-size: var(--text-base);
}

.navigation-footer a:hover {
	color: inherit;
}

@media (min-width: 64em) {
	.navigation-footer {
		flex-direction: row;
		gap: 30px
	}

	@media (hover: hover) {
		.navigation-footer a:hover {
			text-decoration: underline;
			text-decoration-thickness: 2px;
		}
	}
}