.cookie-consent {
	position: fixed;
	inset-inline: 0;
	inset-block-end: 0;
	z-index: 1000;
	padding: 1rem clamp(1rem, 3vw, 1.75rem);
	border-top: 1px solid rgba(0, 34, 68, .12);
	background: #fff;
	box-shadow: 0 -.4rem 1.5rem rgba(0, 34, 68, .08);
	color: #002244;
}

.cookie-consent[hidden] {
	display: none;
}

.cookie-consent__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.25rem 2rem;
	max-width: 1160px;
	margin: 0 auto;
}

.cookie-consent__copy {
	max-width: 58rem;
}

.cookie-consent__copy p {
	margin: 0;
	color: #243a53;
	font-size: .92rem;
	line-height: 1.55;
}

.cookie-consent__actions {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
	gap: .7rem;
}

.cookie-consent__link,
.cookie-consent__button {
	min-height: 2.8rem;
	padding: .7rem 1rem;
	border-radius: .25rem;
	font: inherit;
	font-size: .88rem;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	white-space: nowrap;
}

.cookie-consent__link,
.cookie-consent__button--secondary {
	border: 1px solid #17477b;
	background: #fff;
	color: #17477b;
}

.cookie-consent__button {
	cursor: pointer;
}

.cookie-consent__button--primary {
	border: 1px solid #00467f;
	background: #00467f;
	color: #fff;
}

.cookie-consent__link:hover,
.cookie-consent__link:focus-visible,
.cookie-consent__button--secondary:hover,
.cookie-consent__button--secondary:focus-visible {
	background: #eef5fb;
}

.cookie-consent__button--primary:hover,
.cookie-consent__button--primary:focus-visible {
	background: #00345f;
}

.footer-cookie-settings {
	border: 0;
	padding: 0;
	background: transparent;
	color: rgba(255, 255, 255, .72);
	font: inherit;
	font-size: .74rem;
	line-height: 1.4;
	cursor: pointer;
	text-decoration: none;
	transition: color .15s ease;
}

.footer-cookie-settings:hover,
.footer-cookie-settings:focus {
	color: rgba(255, 255, 255, .94);
	text-decoration: underline;
}

html[dir="rtl"] .cookie-consent__inner,
html.lang-ar .cookie-consent__inner {
	direction: rtl;
	text-align: right;
}

@media (max-width: 900px) {
	.cookie-consent__inner {
		flex-direction: column;
		align-items: stretch;
	}

	.cookie-consent__actions {
		flex-wrap: wrap;
	}
}

@media (max-width: 560px) {
	.cookie-consent {
		padding: .8rem 1rem;
	}

	.cookie-consent__inner {
		gap: .8rem;
	}

	.cookie-consent__copy p {
		font-size: .88rem;
		line-height: 1.45;
	}

	.cookie-consent__actions {
		flex-direction: column;
		align-items: stretch;
		gap: .55rem;
	}

	.cookie-consent__link,
	.cookie-consent__button {
		min-height: 2.45rem;
		padding: .55rem .85rem;
	}
}
