.cookie-consent {
	align-items: center;
	background: #ffffff;
	border: 1px solid rgba(35, 58, 122, 0.16);
	border-radius: 8px;
	box-shadow: 0 16px 40px rgba(22, 31, 54, 0.18);
	bottom: 20px;
	color: #24324b;
	display: flex;
	gap: 18px;
	left: 20px;
	max-width: 1120px;
	padding: 18px 20px;
	position: fixed;
	right: 20px;
	z-index: 2000;
}

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

.cookie-consent__content {
	flex: 1;
}

.cookie-consent__title {
	color: #233a7a;
	font-weight: 700;
	margin: 0 0 6px;
}

.cookie-consent__text {
	font-size: 0.95rem;
	line-height: 1.5;
	margin: 0;
}

.cookie-consent__text a {
	color: #233a7a;
	font-weight: 700;
	text-decoration: underline;
}

.cookie-consent__button {
	background: #233a7a;
	border: 1px solid #233a7a;
	border-radius: 6px;
	color: #ffffff;
	cursor: pointer;
	font-weight: 700;
	min-width: 116px;
	padding: 11px 18px;
	transition: background-color 0.2s ease, border-color 0.2s ease;
}

.cookie-consent__button:hover,
.cookie-consent__button:focus {
	background: #1a2d63;
	border-color: #1a2d63;
}

@media (max-width: 767px) {
	.cookie-consent {
		align-items: stretch;
		bottom: 12px;
		flex-direction: column;
		left: 12px;
		padding: 16px;
		right: 12px;
	}

	.cookie-consent__button {
		width: 100%;
	}
}
