/*
	Cookie consent banner
	Custom addition — not part of the original Ethereal template.
*/

#cookie-consent-banner {
	display: none;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10001;
	width: 100%;
	box-sizing: border-box;
	background: rgba(20, 20, 20, 0.95);
	color: #fff;
	padding: 1rem 1.5rem;
	font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
	font-size: 0.9rem;
	line-height: 1.6;
	box-shadow: 0 -0.15rem 0.75rem rgba(0, 0, 0, 0.35);
}

#cookie-consent-banner.is-visible {
	display: block;
}

#cookie-consent-banner .cookie-consent-inner {
	max-width: 90rem;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

#cookie-consent-banner .cookie-consent-text {
	flex: 1 1 30rem;
	margin: 0;
	color: #f2f2f2;
}

#cookie-consent-banner .cookie-consent-text a {
	color: #fff;
	text-decoration: underline;
}

#cookie-consent-banner .cookie-consent-text a:hover {
	color: #dcdcdc;
}

#cookie-consent-banner .cookie-consent-accept {
	flex: 0 0 auto;
	display: inline-block;
	background: #ffffff;
	color: #141414;
	border: none;
	border-radius: 0.25rem;
	padding: 0.65rem 1.5rem;
	font-weight: 600;
	font-size: 0.85rem;
	cursor: pointer;
	white-space: nowrap;
	transition: background-color 0.2s ease;
}

#cookie-consent-banner .cookie-consent-accept:hover {
	background: #dcdcdc;
}

@media screen and (max-width: 480px) {
	#cookie-consent-banner .cookie-consent-inner {
		flex-direction: column;
		align-items: stretch;
		text-align: center;
	}

	#cookie-consent-banner .cookie-consent-accept {
		width: 100%;
	}
}
