/**
 * Language switcher in the marketing header.
 */

.fr-lang-switcher {
	display: inline-flex;
	align-items: center;
}

.fr-lang-switcher__list {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.fr-lang-switcher__link {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: hsl(var(--muted-foreground));
	text-decoration: none;
	transition: color 0.15s ease;
}

.fr-lang-switcher__link:hover {
	color: hsl(var(--foreground));
}

.fr-lang-switcher__link.is-active {
	color: hsl(var(--foreground));
}

.fr-lang-switcher--mobile {
	padding-top: 0.5rem;
	border-top: 1px solid hsl(var(--border));
	margin-top: 0.25rem;
}
