.language-switch {
	display: inline-flex;
	align-items: center;
	gap: .35rem;
	padding: .3rem .45rem;
	border: 1px solid rgba(27, 84, 83, .24);
	border-radius: 999px;
	background: rgba(255, 255, 255, .72);
	color: var(--color-ink, #173f3f);
	font-size: .78rem;
	font-weight: 800;
	letter-spacing: .06em;
	line-height: 1;
	white-space: nowrap;
}
.language-switch a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 1.9rem;
	min-height: 1.9rem;
	padding: 0 .3rem;
	border-radius: 999px;
	color: inherit;
	text-decoration: none;
	transition: background-color .18s ease, color .18s ease, box-shadow .18s ease;
}
.language-switch a:hover,
.language-switch a:focus-visible {
	background: rgba(27, 84, 83, .1);
	outline: none;
}
.language-switch a.is-active {
	background: #173f3f;
	color: #fff;
	box-shadow: 0 3px 10px rgba(23, 63, 63, .2);
}
.language-switch > span {
	color: rgba(23, 63, 63, .38);
}
.language-legal-notice {
	max-width: 1180px;
	margin: 1.5rem auto 0;
	padding: 1rem 1.25rem;
	border-left: 4px solid #c7a46c;
	border-radius: .6rem;
	background: #f6efe3;
	color: #173f3f;
}
.language-legal-notice strong {
	display: block;
	margin-bottom: .2rem;
}
.language-legal-notice p {
	margin: 0;
}
@media (max-width: 760px) {
	.header-actions .language-switch {
		margin-left: auto;
	}
	.language-switch a {
		min-width: 1.75rem;
		min-height: 1.75rem;
	}
}

/* Reliable high-contrast mobile navigation, independent of compiled theme order. */
@media (max-width: 1100px) {
	/* Safari treats fixed children of a backdrop-filtered header as header-sized. */
	.site-header {
		background: #092225;
		-webkit-backdrop-filter: none;
		backdrop-filter: none;
	}

	.mobile-nav {
		position: fixed;
		z-index: 9999;
		top: 84px;
		right: 0;
		bottom: auto;
		left: 0;
		width: 100%;
		height: calc(100dvh - 84px);
		min-height: calc(100vh - 84px);
		padding-bottom: max(38px, env(safe-area-inset-bottom));
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		background: #092225 !important;
		background-image: none !important;
		color: #ffffff;
		box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
		isolation: isolate;
	}

	.mobile-nav .container,
	.mobile-nav ul {
		background: transparent;
	}

	.mobile-nav ul a {
		border-bottom-color: rgba(255, 255, 255, .2);
		color: #ffffff;
		text-shadow: 0 1px 1px rgba(0, 0, 0, .18);
	}

	.mobile-nav ul a:hover,
	.mobile-nav ul a:focus-visible {
		border-radius: .6rem;
		background: #ead9bd;
		color: #092225;
		outline: none;
		text-shadow: none;
	}

	.mobile-nav .mobile-nav__actions .button {
		border-color: #ead9bd;
		background: #ead9bd;
		color: #092225;
		text-shadow: none;
	}

	.mobile-nav .mobile-nav__actions .button:hover,
	.mobile-nav .mobile-nav__actions .button:focus-visible {
		border-color: #ffffff;
		background: #ffffff;
		color: #092225;
	}

	.mobile-nav .mobile-nav__actions .button--outline {
		border-color: rgba(255, 255, 255, .72);
		background: transparent;
		color: #ffffff;
	}

	.mobile-nav .mobile-nav__actions .button--outline:hover,
	.mobile-nav .mobile-nav__actions .button--outline:focus-visible {
		border-color: #ead9bd;
		background: rgba(234, 217, 189, .12);
		color: #ffffff;
	}
}

@media (max-width: 760px) {
	.mobile-nav {
		top: 72px;
		height: calc(100dvh - 72px);
		min-height: calc(100vh - 72px);
	}
}
