.cookie-consent {
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 100000;
	background: rgba(243, 243, 243, 0.95);
	border-top: 1px solid #d8d8d8;
	box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.08);
	color: #33475b;
}

html.cookie-consent-decided .cookie-consent:not(.is-open) {
	display: none;
}

.cookie-consent.is-open {
	display: block;
}

.cookie-consent__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	width: min(100% - 40px, 1240px);
	margin: 0 auto;
	padding: 28px 0;
}

.cookie-consent__copy {
	flex: 1 1 auto;
	min-width: 0;
	font-size: 13px;
	line-height: 1.45;
}

.cookie-consent__copy p {
	margin: 0 0 8px;
}

.cookie-consent__copy p:last-child {
	margin-bottom: 0;
}

.cookie-consent__policy {
	color: inherit;
	text-decoration: underline;
}

.cookie-consent__policy:hover,
.cookie-consent__policy:focus {
	color: #003d6b;
}

.cookie-consent__actions {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	gap: 10px;
}

.cookie-consent__btn {
	appearance: none;
	min-width: 96px;
	padding: 10px 18px;
	border-radius: 3px;
	font: inherit;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	cursor: pointer;
}

.cookie-consent__btn--accept {
	border: 1px solid #003d6b;
	background: #003d6b;
	color: #ffffff;
}

.cookie-consent__btn--accept:hover,
.cookie-consent__btn--accept:focus {
	background: #00305c;
	border-color: #00305c;
}

.cookie-consent__btn--decline {
	border: 1px solid #003d6b;
	background-color: #ffffff;
	color: #003d6b;
}

.cookie-consent__btn--decline:hover,
.cookie-consent__btn--decline:focus {
	background: #eef3f8;
}

@media (max-width: 767px) {
	.cookie-consent__inner {
		flex-direction: column;
		align-items: stretch;
		gap: 16px;
		padding: 28px 0;
	}

	.cookie-consent__actions {
		justify-content: flex-end;
	}

	.cookie-consent__btn {
		flex: 1 1 0;
	}
}
