.enews-consent {
	position: fixed;
	z-index: 10000;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 1rem;
	pointer-events: none;
}

.enews-consent__panel {
	pointer-events: auto;
	max-width: 720px;
	margin: 0 auto;
	background: #0f172a;
	color: #e2e8f0;
	border-radius: 12px;
	padding: 1.25rem 1.35rem 1.1rem;
	box-shadow: 0 16px 40px rgba(15, 23, 42, 0.28);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.enews-consent__title {
	font-family: Inter, system-ui, sans-serif;
	font-size: 1.05rem;
	font-weight: 700;
	color: #fff;
	margin: 0 0 0.5rem;
}

.enews-consent__text {
	font-size: 0.9rem;
	line-height: 1.55;
	color: #cbd5e1;
	margin: 0 0 1rem;
}

.enews-consent__text a {
	color: #93c5fd;
	text-decoration: underline;
}

.enews-consent__text a:hover {
	color: #fff;
}

.enews-consent__customize {
	display: grid;
	gap: 0.65rem;
	margin: 0 0 1rem;
	padding: 0.85rem;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 8px;
}

.enews-consent__opt {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	font-size: 0.88rem;
	line-height: 1.45;
	color: #e2e8f0;
	cursor: pointer;
}

.enews-consent__opt input {
	margin-top: 0.2rem;
	width: 1.15rem;
	height: 1.15rem;
	flex-shrink: 0;
}

.enews-consent__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
}

.enews-consent__btn {
	min-height: 44px;
	padding: 0.55rem 1rem;
	border-radius: 8px;
	border: 1px solid transparent;
	font-family: Inter, system-ui, sans-serif;
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
}

.enews-consent__btn--primary {
	background: #2563eb;
	color: #fff;
}

.enews-consent__btn--primary:hover {
	background: #1d4ed8;
}

.enews-consent__btn--secondary {
	background: #fff;
	color: #0f172a;
}

.enews-consent__btn--ghost {
	background: transparent;
	color: #e2e8f0;
	border-color: rgba(255, 255, 255, 0.28);
}

.enews-consent__btn:focus-visible {
	outline: 2px solid #93c5fd;
	outline-offset: 2px;
}

.enews-privacy-choices {
	position: fixed;
	z-index: 9999;
	left: 1rem;
	bottom: 1rem;
	min-height: 44px;
	padding: 0.5rem 0.9rem;
	border-radius: 999px;
	border: 1px solid #e2e8f0;
	background: #fff;
	color: #0f172a;
	font-family: Inter, system-ui, sans-serif;
	font-size: 0.8rem;
	font-weight: 600;
	box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
	cursor: pointer;
}

.enews-privacy-choices:hover {
	background: #f8fafc;
}

@media (max-width: 640px) {
	.enews-consent {
		padding: 0.65rem;
	}

	.enews-consent__actions {
		flex-direction: column;
	}

	.enews-consent__btn {
		width: 100%;
	}

	.enews-privacy-choices {
		left: 0.75rem;
		right: auto;
		bottom: 0.75rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.enews-consent__btn,
	.enews-privacy-choices {
		transition: none;
	}
}
