/* Host Multilang - language switcher */
.hml-switcher {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.hml-switcher .hml-lang {
	margin: 0;
	padding: 0;
	line-height: 1;
}

.hml-switcher .hml-lang a {
	display: inline-block;
	padding: 4px 8px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 3px;
	opacity: 0.7;
	transition: opacity 0.15s ease, background-color 0.15s ease;
}

.hml-switcher .hml-lang a:hover,
.hml-switcher .hml-lang a:focus {
	opacity: 1;
}

.hml-switcher .hml-lang.is-active a {
	opacity: 1;
	background-color: rgba(0, 0, 0, 0.06);
}

/* Separatore tra le lingue */
.hml-switcher .hml-lang + .hml-lang::before {
	content: "|";
	display: inline-block;
	margin-right: 2px;
	opacity: 0.35;
}

/* Voce di menu contenitore */
.menu-item.hml-switcher-item {
	display: flex;
	align-items: center;
}
