.navigation-footer {
	margin: 0 0 var(--space-5);
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	column-gap: 42px;
}

.navigation-footer li {
	position: relative;
}

.navigation-footer li::after {
	content: "";
	position: absolute;
	width: 9.43px;
    height: 10.19px;
	background-image: url(/includes/public/assets/shared/starfish-yellow.svg);
	background-size: cover;
	right: -30px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
}
.navigation-footer li:nth-child(3)::after,
.navigation-footer li:last-child::after {
	content: none;
}

.navigation-footer a {
	color: inherit;
	text-transform: uppercase;
	font-family: var(--font-display);
	font-size: var(--text-2xl);
	line-height: normal;
}

.navigation-footer a:hover {
	color: inherit;
}

@media (min-width: 40em) {
	.navigation-footer li:nth-child(3)::after{
		content: "";
	}
}

@media (min-width: 64em) {
	.navigation-footer li:last-child::after {
		content: none;
	}
	.navigation-footer a {
		font-size: var(--text-2xl-1);
	}

}
