.navigation-footer {
	margin: 0;
	padding: 0;
	list-style: none;
}

@media (min-width: 64em) {
	.navigation-footer {
		column-width: 160px;
		display: flex;
		flex-direction: row;
		justify-content: center;
		flex-wrap: wrap;
	}	

	.navigation-footer li {
		position: relative;
		margin: 0 var(--space-2) var(--space-2);
	}

	.navigation-footer li::after {
		content: "";
		position: absolute;
		right: -9px;
		top: 50%;
		transform: translateY(-50%);
		width: 1px;
		height: 50%;
		background-color: var(--aqua);
	}

	.navigation-footer li:nth-child(4):after,
	.navigation-footer li:last-of-type:after {
		display: none;
	}
}

.navigation-footer a {
	color: inherit;
}

.navigation-footer a:hover {
	color: inherit;
	text-decoration: underline;
}
