/*
	Cookie Consent Banner
	Custom addition — not part of the original Paradigm Shift template.
*/

#cookie-consent-banner {
	display: none;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	background-color: rgba(18, 18, 20, 0.97);
	color: #ffffff;
	z-index: 10000;
	padding: 1rem 1.5rem;
	box-sizing: border-box;
	font-family: "Source Sans Pro", Helvetica, sans-serif;
	font-size: 0.85rem;
	line-height: 1.6;
	box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.35);
}

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

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

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

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

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

	#cookie-consent-banner .cookie-consent-accept {
		flex: 0 0 auto;
		display: inline-block;
		padding: 0.65rem 1.75rem;
		background-color: #49fcd4;
		color: #000000;
		border: 0;
		border-radius: 4px;
		font-family: "Raleway", Helvetica, sans-serif;
		font-weight: 600;
		font-size: 0.8rem;
		letter-spacing: 0.05rem;
		text-transform: uppercase;
		cursor: pointer;
		transition: background-color 0.2s ease;
	}

		#cookie-consent-banner .cookie-consent-accept:hover {
			background-color: #93ffe7;
		}

		#cookie-consent-banner .cookie-consent-accept:active {
			background-color: #44f2cb;
		}

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

	#cookie-consent-banner {
		padding: 1rem;
	}

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

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

}
