.navigation-footer {
	margin: 0;
	padding: 0;
	list-style: none;
}

@media (min-width: 64em) {
	.navigation-footer {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		justify-items: center;
		padding-left: 30px;
	}	

	.navigation-footer li:first-of-type {
		justify-self: end;
	}

	/* .navigation-footer li:last-of-type {
		justify-self: start;
	} */
}

.navigation-footer a {
	color: var(--blue16);
}

.panel-page.microsite .navigation-footer a {
	color: var(--creamf8);
}

.navigation-footer .item {
	padding: 4.5px 0;
	line-height: 1.3;
}

.navigation-footer .item.level-1 > a {
	font-family: var(--font-display);
	font-size: 27px;
	text-transform: uppercase;
	margin-bottom: 8px;
}

.navigation-footer .item:not(.level-1) > a {
	font-weight: 500;
	font-size: 16px;
}

.navigation-footer a:hover {
	color: inherit;
	text-decoration: none;
}


