.spbe-banner,
.spbe-banner * {
	box-sizing: border-box;
}

.spbe-banner {
	--spbe-background: #004c3f;
	position: relative;
	width: 100%;
	min-height: 346px;
	margin-inline: auto;
	overflow: hidden;
	background-color: var(--spbe-background);
	font-family: Montserrat, "Century Gothic", Arial, sans-serif;
	isolation: isolate;
}

.spbe-banner__grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 34% 39% 27%;
	width: 100%;
	min-height: inherit;
}

.spbe-banner__image {
	--spbe-image-scale: 312%;
	--spbe-image-x: 0%;
	--spbe-image-y: 50%;
	min-width: 0;
	min-height: inherit;
	background-repeat: no-repeat;
	background-position: var(--spbe-image-x) var(--spbe-image-y);
	background-size: var(--spbe-image-scale) auto;
}

.spbe-banner__copy {
	display: flex;
	min-width: 0;
	flex-direction: column;
	justify-content: center;
	padding: 30px 24px;
}

.spbe-banner__title {
	margin: 0 0 14px;
	color: #fff;
	font-family: inherit;
	font-size: clamp(26px, 3vw, 40px);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -0.035em;
}

.spbe-banner__highlight {
	color: #00c98d;
}

.spbe-banner__description {
	max-width: 440px;
	margin: 0;
	color: #fff;
	font-family: Arial, sans-serif;
	font-size: 16px;
	font-style: italic;
	font-weight: 400;
	line-height: 1.45;
}

.spbe-banner__action {
	position: relative;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	padding: 30px 18px;
}

.spbe-banner__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 80px;
	padding: 12px 31px;
	color: #fff;
	font-family: Arial, sans-serif;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.15;
	text-align: center;
	text-decoration: none;
	background-color: #00c98d;
	border: 0;
	border-radius: 45px;
	box-shadow: none;
	cursor: pointer;
	transition: color 180ms ease, background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.spbe-banner__button:hover,
.spbe-banner__button:focus-visible {
	color: #fff;
	text-decoration: none;
	background-color: #00a875;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
	transform: translateY(-2px);
}

.spbe-banner__button:focus-visible {
	outline: 3px solid #fff;
	outline-offset: 3px;
}

.spbe-banner__button:active {
	transform: translateY(0) scale(0.98);
}

.spbe-banner__shapes {
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	display: block;
	width: 31%;
	height: 100%;
	pointer-events: none;
}

.spbe-banner__shape-back {
	fill: #c66b1a;
}

.spbe-banner__shape-front {
	fill: #ff6507;
}

@media (max-width: 1024px) {
	.spbe-banner__grid {
		grid-template-columns: 31% 41% 28%;
	}

	.spbe-banner__copy {
		padding-inline: 18px;
	}

	.spbe-banner__action {
		padding-inline: 12px;
	}

	.spbe-banner__button {
		min-height: 64px;
		padding-inline: 22px;
		font-size: 15px;
	}
}

@media (max-width: 767px) {
	.spbe-banner {
		height: auto !important;
		max-height: none !important;
		min-height: 0 !important;
		max-width: 100%;
		min-width: 0;
	}

	.spbe-banner__grid {
		grid-template-areas:
			"copy copy"
			"image action";
		grid-template-columns: minmax(0, 52%) minmax(0, 48%);
		grid-template-rows: auto minmax(210px, auto);
		height: auto;
		max-width: 100%;
		min-height: 0;
		min-width: 0;
	}

	.spbe-banner__image {
		grid-area: image;
		max-width: 100%;
		min-height: 210px;
		min-width: 0;
	}

	.spbe-banner__copy {
		grid-area: copy;
		align-items: center;
		max-width: 100%;
		min-width: 0;
		padding: 26px 26px 24px;
		text-align: center;
	}

	.spbe-banner__title {
		font-size: clamp(28px, 9vw, 38px);
	}

	.spbe-banner__description {
		max-width: 460px;
	}

	.spbe-banner__action {
		grid-area: action;
		max-width: 100%;
		min-height: 210px;
		min-width: 0;
		padding: 24px 14px;
	}

	.spbe-banner__shapes {
		top: auto;
		bottom: 0;
		left: auto;
		right: 0;
		width: 48% !important;
		height: 210px;
	}

	.spbe-banner__button {
		min-height: 62px;
		max-width: 100%;
		padding-inline: clamp(14px, 5vw, 22px);
	}
}

@media (max-width: 420px) {
	.spbe-banner__copy {
		padding-inline: 20px;
	}

	.spbe-banner__action {
		padding-inline: 10px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.spbe-banner__button {
		transition-duration: 0.01ms !important;
	}
}
