/* ==========================================================================
   CTA Banner — "Free tools / Boost your email performance" block
   Figma: node 52422:6475
   Shares visual language with subscribe-banner.css
   ========================================================================== */

/* ── Section ── */

.cta-banner {
	padding: 100px 0;
	background: linear-gradient(
		192deg,
		rgba(245, 56,  56,  0.10) 0%,
		rgba(255, 212, 96,  0.10) 42%,
		rgba(253, 176, 87,  0.10) 100%
	);
}

/* ── Card ── */

.cta-banner__card {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 0 10px 0 rgba(204, 204, 204, 0.25);
	overflow: hidden;
	display: flex;
	align-items: center;
	gap: 48px;
	position: relative;
}
.cta-banner__card::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 52%;
	height: 100%;
	background: url('../images/card-grid.svg');
	background-size: cover;
	background-position: right center;
	background-repeat: no-repeat;
	z-index: 0;
}
.cta-banner__right::before {
	content: '';
	width: 291px;
	height: 291px;
	position: absolute;
	right: 0;
	top: 23px;
	border-radius: 291px;
	opacity: 0.15;
	background: var(--Warning-Medium, #FDA22F);
	filter: blur(83.5px);
	z-index: -1;
}
.cta-banner__right::after {
	content: '';
	width: 298px;
	height: 298px;
	position: absolute;
	right: 215px;
	bottom: -84px;
	border-radius: 298px;
	opacity: 0.15;
	background: var(--red-400-error, #F53838);
	filter: blur(83.5px);
	z-index: -1;
}


/* ── Left column ── */

.cta-banner__left {
	padding: 48px 0 48px 48px;
    width: 100%;
	max-width: 48%;
	display: flex;
	flex-direction: column;
	gap: 24px;
	position: relative;
	z-index: 1;
}

/* ── Text block ── */

.cta-banner__text {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.cta-banner__eyebrow {
	font-family: var(--font-figtree);
	font-size: 16px;
	font-weight: 700;
	color: #3978F2;
	line-height: 24px;
	letter-spacing: 0.032px;
	text-transform: uppercase;
	margin: 0;
}

.cta-banner__heading {
	font-family: var(--font-figtree);
	font-size: 24px;
	font-weight: 600;
	color: var(--nav-dark);
	line-height: 32px;
	letter-spacing: 0;
	margin: 0;
}

.cta-banner__description {
	font-family: var(--font-figtree);
	font-size: 17px;
	font-weight: 500;
	color: var(--nav-dark);
	line-height: 26px;
	margin: 8px 0 0;
}

/* ── Button ── */

.cta-banner__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 48px;
	padding: 0 24px;
	border-radius: 8px;
	background: #3978F2;
	font-family: var(--font-figtree);
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.032px;
	line-height: 24px;
	text-decoration: none;
	white-space: nowrap;
	align-self: flex-start;
	transition: background 0.18s ease, transform 0.1s ease;
}

.cta-banner__btn:hover {
	background: #2D67E0;
	color: #fff;
}

.cta-banner__btn:active {
	background: #2558c8;
	transform: translateY(1px);
}

/* ── Disclaimer ── */

.cta-banner__disclaimer {
	font-family: var(--font-figtree);
	font-size: 14px;
	font-weight: 400;
	color: #848c97;
	line-height: 1;
	margin: 0;
}

/* ── Right column (image) ── */

.cta-banner__right {
	flex: 1 1 0;
	min-width: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	align-self: stretch;
	z-index: 1;
	position: relative;
}

.cta-banner__image {
	max-width: 100%;
	max-height: 320px;
	width: auto;
	height: auto;
	display: block;
	object-fit: contain;
}

/* ── Responsive ── */

@media (max-width: 1100px) {
	.cta-banner__left {
		flex: 0 0 420px;
		max-width: 420px;
	}
}
@media (max-width: 992px) {
	.cta-banner__card {
		padding: 48px;
	}
	.cta-banner__right {
		display: none;
	}
	.cta-banner__left {
		max-width: 100%;
		padding: 0;
		flex: unset;
	}
	.cta-banner__card::before {
		display: none;
	}
}
@media (max-width: 900px) {
	.cta-banner {
		padding: 64px 0;
	}

	.cta-banner__card {
		flex-direction: column;
		align-items: stretch;
		gap: 32px;
		padding: 32px;
	}

	.cta-banner__left {
		flex: none;
		max-width: 100%;
	}

	.cta-banner__right {
		justify-content: center;
	}

	.cta-banner__image {
		max-height: 220px;
	}
}

@media (max-width: 600px) {
	.cta-banner__heading {
		font-size: 20px;
		line-height: 28px;
	}

	.cta-banner__btn {
		width: 100%;
		justify-content: center;
	}

	.cta-banner__right {
		display: none;
	}
}
