/**
 * Grünwerk Projekt CTA
 * Bootstrap-kompatibles WPBakery-Modul ohne Tailwind-Abhängigkeit.
 */
.maple-gruenwerk-project-cta {
	position: relative;
	overflow: hidden;
	color: var(--white, #fff);
}

.maple-gruenwerk-project-cta--bg-emerald_900 {
	background: var(--color-emerald-900, #41460b);
}

.maple-gruenwerk-project-cta--bg-emerald_800 {
	background: var(--color-emerald-800, #54590f);
}

.maple-gruenwerk-project-cta--bg-emerald_700 {
	background: var(--color-emerald-700, #676c13);
}

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

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

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

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

.maple-gruenwerk-project-cta__glow {
	position: absolute;
	top: 0;
	right: 0;
	width: 24rem;
	height: 24rem;
	border-radius: 999px;
	background: color-mix(in srgb, var(--color-emerald-800, #54590f) 20%, transparent);
	filter: blur(48px);
	transform: translate(25%, -25%);
	pointer-events: none;
}

.maple-gruenwerk-project-cta__container {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 1280px;
	margin-inline: auto;
	padding-inline: 1.5rem;
}

.maple-gruenwerk-project-cta--container-narrow .maple-gruenwerk-project-cta__container {
	max-width: 1024px;
}

.maple-gruenwerk-project-cta--container-fluid .maple-gruenwerk-project-cta__container {
	max-width: none;
}

.maple-gruenwerk-project-cta__grid {
	display: grid;
	grid-template-columns: minmax(0, 8fr) minmax(0, 4fr);
	gap: 3rem;
	align-items: center;
}

.maple-gruenwerk-project-cta--layout-center .maple-gruenwerk-project-cta__grid {
	grid-template-columns: 1fr;
	justify-items: center;
	text-align: center;
}

.maple-gruenwerk-project-cta__headline {
	margin: 0 0 1rem;
	font-size: clamp(2.25rem, 5vw, 3rem);
	font-weight: 700;
	line-height: 1.08;
	color: var(--white, #fff);
}

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

.maple-gruenwerk-project-cta--layout-center .maple-gruenwerk-project-cta__text {
	margin-inline: auto;
}

.maple-gruenwerk-project-cta__actions {
	display: flex;
	justify-content: flex-end;
}

.maple-gruenwerk-project-cta--layout-center .maple-gruenwerk-project-cta__actions {
	justify-content: center;
}

.maple-gruenwerk-project-cta__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 3.5rem;
	padding: 1rem 2rem;
	border-radius: .25rem;
	background: var(--white, #fff);
	color: var(--color-emerald-900, #41460b);
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	box-shadow: 0 20px 35px rgba(0, 0, 0, .22);
	transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.maple-gruenwerk-project-cta__button:hover,
.maple-gruenwerk-project-cta__button:focus {
	background: var(--color-emerald-100, #eceec4);
	color: var(--color-emerald-900, #41460b);
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: 0 24px 45px rgba(0, 0, 0, .28);
}

@media (max-width: 991.98px) {
	.maple-gruenwerk-project-cta__grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.maple-gruenwerk-project-cta__actions {
		justify-content: flex-start;
	}
}

@media (max-width: 575.98px) {
	.maple-gruenwerk-project-cta--spacing-compact,
	.maple-gruenwerk-project-cta--spacing-default,
	.maple-gruenwerk-project-cta--spacing-large {
		padding-top: 4rem;
		padding-bottom: 4rem;
	}

	.maple-gruenwerk-project-cta__headline {
		font-size: 2rem;
	}

	.maple-gruenwerk-project-cta__button {
		width: 100%;
	}
}
