/* Cookie consent banner for FMJ Capital */

#cookie-consent-banner {
	display: none;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10000;
	background: #1c1c22;
	color: #ffffff;
	padding: 1em 1.5em;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
	font-size: 0.9em;
	line-height: 1.6em;
}

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

#cookie-consent-banner .cookie-consent-inner {
	max-width: 1200px;
	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 auto;
	min-width: 250px;
	color: #ffffff;
}

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

#cookie-consent-banner #cookie-consent-accept {
	flex: 0 0 auto;
	display: inline-block;
	background: #ffffff;
	color: #1c1c22;
	border: none;
	border-radius: 4px;
	padding: 0.65em 1.5em;
	font-size: 0.95em;
	font-weight: 600;
	cursor: pointer;
}

#cookie-consent-banner #cookie-consent-accept:hover {
	opacity: 0.85;
}

@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%;
	}
}
