/* Ogou Multilanguage — language switcher (spec §17). */
.ogou-language-switcher ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 0.5rem;
	align-items: center;
	flex-wrap: wrap;
}
.ogou-language-switcher--compact ul {
	gap: 0.25rem;
}
.ogou-language-switcher .ogou-ls-item a {
	display: inline-flex;
	align-items: center;
	gap: 0.35em;
	text-decoration: none;
	padding: 0.2em 0.5em;
	border-radius: 6px;
	line-height: 1.3;
}
.ogou-language-switcher .ogou-ls-item.is-current a {
	font-weight: 600;
	background: rgba(0, 0, 0, 0.06);
}
.ogou-language-switcher--dropdown ul {
	flex-direction: column;
	align-items: flex-start;
}
.ogou-ls-flag {
	line-height: 1;
}
.ogou-ls-code {
	text-transform: uppercase;
	font-variant: small-caps;
}
