/* Cookie consent banner (opt-in) */
.a92-consent {
	position: fixed;
	left: 1rem;
	right: 1rem;
	bottom: 1rem;
	z-index: 2000;
	background: #131313;
	color: #fff;
	border-radius: 16px;
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
	padding: 1rem 1.25rem;
}

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

.a92-consent__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.75rem 1.5rem;
	max-width: 1100px;
	margin: 0 auto;
}

.a92-consent__text {
	margin: 0;
	flex: 1 1 320px;
	font-size: 0.95rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.85);
}

.a92-consent__text a {
	color: #fff;
	text-decoration: underline;
}

.a92-consent__actions {
	display: flex;
	gap: 0.6rem;
	flex: 0 0 auto;
}

.a92-consent__btn {
	font-family: inherit;
	font-weight: 600;
	font-size: 0.95rem;
	padding: 0.6rem 1.4rem;
	border-radius: 50rem;
	border: 1px solid transparent;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.a92-consent__btn:focus-visible {
	outline: 3px solid rgba(255, 255, 255, 0.6);
	outline-offset: 2px;
}

.a92-consent__btn--accept {
	background: #cd0c2b;
	color: #fff;
}

.a92-consent__btn--accept:hover {
	background: #bf0a26;
	transform: translateY(-1px);
}

.a92-consent__btn--ghost {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.4);
}

.a92-consent__btn--ghost:hover {
	background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 575.98px) {
	.a92-consent__actions {
		width: 100%;
	}
	.a92-consent__btn {
		flex: 1 1 auto;
	}
}

@media (prefers-reduced-motion: reduce) {
	.a92-consent__btn {
		transition: none;
	}
}
