/* SIMAB cookie-consent banner. Self-contained navy bar, works on light or dark
   pages. Hidden by default; the script reveals it only when no choice is stored,
   so the markup can be safely full-page cached. */
.simab-cc {
	display: none;
	position: fixed;
	left: 50%;
	bottom: 1rem;
	transform: translateX(-50%);
	z-index: 9999;
	width: min(680px, calc(100% - 2rem));
	box-sizing: border-box;
	background: #0A1B2E;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 14px;
	box-shadow: 0 12px 40px rgba(10, 27, 46, 0.35);
	padding: 1rem 1.15rem;
	font-family: "Manrope", system-ui, -apple-system, sans-serif;
	font-size: 0.95rem;
	line-height: 1.5;
}

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

.simab-cc__row {
	display: flex;
	gap: 1rem;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.simab-cc__text {
	margin: 0;
	flex: 1 1 260px;
	color: rgba(255, 255, 255, 0.9);
}

.simab-cc__text a {
	color: #9DBBFF;
	text-decoration: underline;
}

.simab-cc__actions {
	display: flex;
	gap: 0.5rem;
	flex: 0 0 auto;
	flex-wrap: wrap;
}

.simab-cc__btn {
	font: inherit;
	font-weight: 700;
	cursor: pointer;
	border-radius: 9px;
	padding: 0.55rem 1rem;
	border: 1px solid transparent;
	transition: background 0.15s ease, border-color 0.15s ease;
}

.simab-cc__btn--accept {
	background: #1B4FD8;
	color: #fff;
}

.simab-cc__btn--accept:hover {
	background: #3a67e0;
}

.simab-cc__btn--refuse {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.35);
}

.simab-cc__btn--refuse:hover {
	border-color: #fff;
}

.simab-cc__btn:focus-visible {
	outline: 3px solid #9DBBFF;
	outline-offset: 2px;
}

@media (max-width: 520px) {
	.simab-cc__actions {
		width: 100%;
	}
	.simab-cc__btn {
		flex: 1 1 auto;
	}
}

@media (prefers-reduced-motion: reduce) {
	.simab-cc__btn {
		transition: none;
	}
}
