/**
 * Grünwerk CTA Module
 * Bootstrap-compatible CSS without Tailwind dependency.
 */

.maple-gruenwerk-cta {
	position: relative;
	overflow: hidden;
	color: var(--white, #fff);
	text-align: center;
}

.maple-gruenwerk-cta--spacing-compact {
	padding-top: 4rem;
	padding-bottom: 4rem;
}

.maple-gruenwerk-cta--spacing-default {
	padding-top: 5rem;
	padding-bottom: 5rem;
}

.maple-gruenwerk-cta--spacing-large {
	padding-top: 6rem;
	padding-bottom: 6rem;
}

.maple-gruenwerk-cta--bg-emerald-600 {
	background: var(--color-emerald-600, #8d921b);
}

.maple-gruenwerk-cta--bg-emerald-500 {
	background: var(--color-emerald-500, #8d921b);
}

.maple-gruenwerk-cta--bg-zinc-900 {
	background: var(--color-zinc-900, #18181b);
}

.maple-gruenwerk-cta__glow {
	position: absolute;
	top: -3rem;
	right: -3rem;
	width: 24rem;
	height: 24rem;
	border-radius: 999px;
	background: color-mix(in srgb, var(--color-emerald-700, #676c13) 50%, transparent);
	filter: blur(48px);
	pointer-events: none;
}

.maple-gruenwerk-cta__container {
	position: relative;
	z-index: 1;
	width: 100%;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	margin-left: auto;
	margin-right: auto;
}

.maple-gruenwerk-cta__container--narrow {
	max-width: 64rem;
}

.maple-gruenwerk-cta__container--default {
	max-width: 80rem;
}

.maple-gruenwerk-cta__container--wide {
	max-width: 90rem;
}

.maple-gruenwerk-cta__headline {
	margin: 0 0 1.5rem;
	font-size: clamp(2rem, 4vw, 3.5rem);
	font-weight: 700;
	line-height: 1.1;
	color: var(--white, #fff);
}

.maple-gruenwerk-cta__text {
	max-width: 42rem;
	margin: 0 auto 2.5rem;
	font-size: 1.125rem;
	line-height: 1.7;
	color: var(--color-emerald-100, #eceec4);
}

.maple-gruenwerk-cta__actions {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	justify-content: center;
	align-items: stretch;
}

.maple-gruenwerk-cta__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 1rem 2rem;
	border-radius: .5rem;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.maple-gruenwerk-cta__button:hover,
.maple-gruenwerk-cta__button:focus {
	text-decoration: none;
	transform: translateY(-1px);
}

.maple-gruenwerk-cta__button--primary {
	background: var(--color-zinc-900, #18181b);
	color: var(--white, #fff);
	box-shadow: 0 10px 25px rgba(0, 0, 0, .22);
}

.maple-gruenwerk-cta__button--primary:hover,
.maple-gruenwerk-cta__button--primary:focus {
	background: var(--color-zinc-800, #27272a);
	color: var(--white, #fff);
}

.maple-gruenwerk-cta__button--secondary {
	border: 1px solid var(--white, #fff);
	background: transparent;
	color: var(--white, #fff);
}

.maple-gruenwerk-cta__button--secondary:hover,
.maple-gruenwerk-cta__button--secondary:focus {
	background: var(--color-emerald-500, #8d921b);
	border-color: var(--color-emerald-500, #8d921b);
	color: var(--white, #fff);
}

@media (min-width: 576px) {
	.maple-gruenwerk-cta__actions {
		flex-direction: row;
		align-items: center;
	}
}

@media (max-width: 575.98px) {
	.maple-gruenwerk-cta__button {
		width: 100%;
	}
}
