/**
 * Cookie notice bar. Printed only until the visitor chooses (see functions.php).
 * Plain semantic markup: <aside> > <p> + <button>s. No border-left accent, so a
 * modest corner radius is fine per the agency CSS convention.
 */
.bsp-consent {
	position: fixed;
	left: 1rem;
	right: 1rem;
	bottom: 1rem;
	z-index: 9999;
	max-width: 48rem;
	margin-inline: auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem 1.25rem;
	padding: 1rem 1.25rem;
	background: #0f1419;
	color: #f3f5f8;
	border-radius: 8px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
	font-size: 0.95rem;
	line-height: 1.5;
}

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

.bsp-consent__text {
	flex: 1 1 18rem;
	margin: 0;
}

.bsp-consent__text a {
	color: #9dc3ff;
	text-decoration: underline;
}

.bsp-consent__actions {
	display: flex;
	gap: 0.5rem;
	flex-shrink: 0;
}

.bsp-consent__btn {
	appearance: none;
	cursor: pointer;
	font: inherit;
	font-weight: 600;
	padding: 0.5rem 1.1rem;
	border-radius: 6px;
	border: 1px solid transparent;
}

.bsp-consent__btn--accept {
	background: #1f7a4d;
	color: #fff;
}

.bsp-consent__btn--decline {
	background: transparent;
	color: #f3f5f8;
	border-color: #4a5564;
}

.bsp-consent__btn:focus-visible {
	outline: 3px solid #9dc3ff;
	outline-offset: 2px;
}

@media (max-width: 30rem) {
	.bsp-consent { flex-direction: column; align-items: stretch; }
	.bsp-consent__actions { justify-content: flex-end; }
}
