/* Cookie consent banner (Fetch Capital) */

#cookie-consent-banner {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10000;
	background: #1c1c1c;
	color: #f5f5f5;
	padding: 1rem 1.5rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	font-family: inherit;
	font-size: 0.85rem;
	line-height: 1.6;
	box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.35);
}

#cookie-consent-banner p {
	margin: 0;
	max-width: 900px;
	flex: 1 1 400px;
}

#cookie-consent-banner a {
	color: #8ec9ff;
	text-decoration: underline;
}

#cookie-consent-banner a:hover {
	color: #b7ddff;
}

#cookie-consent-banner button#cookie-consent-accept {
	background: #2e7d32;
	color: #ffffff;
	border: none;
	padding: 0.65rem 1.5rem;
	border-radius: 0.325rem;
	cursor: pointer;
	font-weight: 600;
	font-size: 0.85rem;
	flex: 0 0 auto;
	white-space: nowrap;
}

#cookie-consent-banner button#cookie-consent-accept:hover {
	background: #256428;
}

@media screen and (max-width: 480px) {

	#cookie-consent-banner {
		flex-direction: column;
		align-items: stretch;
		text-align: center;
	}

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

}
