.interior-nav {
	display: flex;
	flex-wrap: wrap;
	margin: 0;
	list-style: none;
}

.interior-nav li {
	& a {
		font-family: var(--font-inter);
		font-size: var(--text-xs);
		color: var(--black-20);
		text-underline-offset: 2px;

		&:hover {
			text-decoration: underline;
		}
	}
	&.current a {
		text-decoration: none;
	}

	& span {
		display: inline-block;
		padding-inline: 2px 3px;
	}
}

.interior-nav li:last-child a span {
	display: none;
}
