/* Igimar Productions - Cookie Consent Banner */
#cookie-consent-banner {
	display: none;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10001;
	background: #242943;
	color: #ffffff;
	padding: 1em 1.5em;
	font-family: 'Source Sans Pro', Helvetica, sans-serif;
	font-size: 0.9em;
	line-height: 1.5;
	box-shadow: 0 -2px 12px rgba(0,0,0,0.35);
	border-top: 1px solid rgba(155,241,255,0.3);
}

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

#cookie-consent-banner p {
	margin: 0;
	flex: 1 1 20em;
	color: #ffffff;
}

#cookie-consent-banner .cookie-consent-actions {
	display: flex;
	gap: 0.75em;
	flex: 0 0 auto;
}

#cookie-consent-banner button {
	cursor: pointer;
	border: none;
	border-radius: 4px;
	padding: 0.65em 1.4em;
	font-family: inherit;
	font-size: 0.95em;
	font-weight: 600;
	letter-spacing: 0.025em;
}

#cookie-consent-banner #cookie-accept {
	background: #ec8d81;
	color: #242943;
}

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

#cookie-consent-banner #cookie-decline {
	background: transparent;
	color: #ffffff;
	border: 1px solid rgba(255,255,255,0.4);
}

#cookie-consent-banner #cookie-decline:hover {
	border-color: #ffffff;
}

@media (max-width: 40em) {
	#cookie-consent-banner .cookie-consent-inner {
		flex-direction: column;
		align-items: stretch;
	}
	#cookie-consent-banner .cookie-consent-actions {
		justify-content: flex-end;
	}
}
