/* SIMAB language-suggestion bar. Slim top strip shown only when the visitor's
   browser prefers the other available language and this page has a real
   translation. Hidden by default; JS reveals it per-visitor, so the markup is
   safe to full-page cache. */
.simab-lh {
	display: none;
	background: #EEF3FF;
	color: #0A1B2E;
	border-bottom: 1px solid #cfe0ff;
	font-family: "Manrope", system-ui, -apple-system, sans-serif;
	font-size: 0.9rem;
	line-height: 1.4;
}

.simab-lh.is-visible {
	display: block;
}

.simab-lh__in {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0.5rem 1rem;
	display: flex;
	gap: 0.75rem;
	align-items: center;
	flex-wrap: wrap;
}

.simab-lh__txt {
	flex: 1 1 auto;
}

.simab-lh__cta {
	font-weight: 700;
	color: #1B4FD8;
	text-decoration: underline;
}

.simab-lh__x {
	background: none;
	border: 0;
	font-size: 1.25rem;
	line-height: 1;
	cursor: pointer;
	color: #0A1B2E;
	padding: 0 0.35rem;
	border-radius: 6px;
}

.simab-lh__cta:focus-visible,
.simab-lh__x:focus-visible {
	outline: 3px solid #1B4FD8;
	outline-offset: 2px;
}
