.mgml-switcher {
	display: inline-flex;
	align-items: center;
	gap: .55rem;
	font: inherit;
	white-space: nowrap;
}

.mgml-switcher__link {
	color: inherit;
	opacity: .55;
	text-decoration: none;
	transition: opacity .2s ease;
}

.mgml-switcher__link:hover,
.mgml-switcher__link:focus-visible,
.mgml-switcher__link.is-current {
	opacity: 1;
}

.mgml-switcher__link:focus-visible {
	outline: 1px solid currentColor;
	outline-offset: 4px;
}

.mgml-switcher__separator {
	opacity: .35;
}

