.nav-list {
	.interior-nav {
		display: flex;
		align-items: baseline;
		gap: 14px;
	}

	.item {
		position: relative;

		&::before {
			position: absolute;
			inset: 50% -7px auto auto;
			translate: 50% -50%;
			display: block;
			width: 3px;
			aspect-ratio: 1;
			content: '';
			background: var(--black);
			border-radius: var(--rounded-circle);
			pointer-events: none;
		}
	}

	.item:last-child::before {
		display: none;
	}

	.item-link {
		font-family: var(--font-body);
		font-weight: var(--font-weight-medium);
		font-size: var(--text-base);
		line-height: 1.2;
		text-decoration: none;
		color: var(--black);
	}

	.item.current .item-link {
		font-weight: var(--font-weight-bold);
		pointer-events: none;
	}
}