/* Privacy consent bar (dlmv2_cookie_consent_banner, inc/helpers/analytics.php) — named to avoid ad-blocker cosmetic filters */
.dlmv2-consent-bar {
	position: fixed;
	inset-block-end: 0;
	inset-inline: 0;
	z-index: 9999;
	background: var(--color-primary-dark);
	border-top: 3px solid var(--color-accent);
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
}
.dlmv2-consent-bar__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem 2rem;
	padding-block: 1.1rem;
}
.dlmv2-consent-bar__text {
	color: #bcccdc;
	font-size: 0.9rem;
	line-height: 1.5;
	margin: 0;
	flex: 1 1 320px;
}
.dlmv2-consent-bar__text strong {
	color: #fff;
	display: block;
	margin-bottom: 2px;
}
.dlmv2-consent-bar__text a {
	color: var(--color-accent);
	font-weight: 600;
	white-space: nowrap;
}
.dlmv2-consent-bar__actions {
	display: flex;
	gap: 0.75rem;
	flex-shrink: 0;
}
.dlmv2-consent-bar__actions .btn {
	padding: 0.65rem 1.25rem;
}
/* .btn-secondary is styled for light backgrounds elsewhere (dark text/border) — override for this dark bar */
.dlmv2-consent-bar__actions .btn-secondary {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.5);
}
.dlmv2-consent-bar__actions .btn-secondary:hover,
.dlmv2-consent-bar__actions .btn-secondary:focus-visible {
	background: #fff;
	color: var(--color-primary-dark);
}
@media (max-width: 640px) {
	.dlmv2-consent-bar__inner { flex-direction: column; align-items: stretch; text-align: center; }
	.dlmv2-consent-bar__actions { width: 100%; }
	.dlmv2-consent-bar__actions .btn { flex: 1; }
}
