/* Shared CTA Panel
--------------------------------------------------------- */

.call-to-action h2 {
	font-family: 'SofiaRoughBlackTwo', sans-serif;
	font-size: 3.2rem;
	line-height: .85;
	font-weight: 500;
}
@media (max-width: 480px) {
	.call-to-action h2 {
		font-size: 2.0rem;
	}
}

.call-to-action .button-group {
	margin-top: 0;
}

.cta-body,
.steps-cta-inner {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	color: var(--white);
	background: linear-gradient(135deg,rgba(247, 149, 12, 1) 0%, rgba(247, 128, 42, 1) 53%, rgba(235, 89, 5, 1) 100%);
	/* background: linear-gradient(135deg, #742a3c 0%, #193046 100%); */
}

.cta-body::before,
.steps-cta-inner::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: url("../assets/images/topo-white.svg") center / cover no-repeat;
	opacity: 0.08;
}

.cta-body::before {
	border-radius: inherit;
}

.cta-body p {
	margin: 0;
	line-height: 1.5rem;
}

.cta-body.cta-small p {
	font-size: 1.25rem;
	font-weight: 600;
}


/* Standard CTA Modes
--------------------------------------------------------- */

.cta-body {
	display: flex;
	flex-flow: wrap;
	justify-content: space-between;
	gap: 2rem;
	padding: 28px;
}

.cta-small {
	align-items: center;
	padding: 40px;
}
@media (max-width: 480px) {
	.cta-small {
		padding: 26px; /* reduced padding for smaller widths */
	}
}

.cta-small h2 {
	font-size: 2.25rem;
}
@media (max-width: 480px) {
	.cta-small h2 {
		font-size: 2.00rem;
	}
}

.cta-big {
	padding: 50px 40px;
}

.cta-big .cta-content {
	max-width: 900px;
}

.cta-big .button-group {
	align-items: end;
}

.cta-desc-big {
	margin-top: 32px;
}

.cta-desc-short {
	max-width: 520px;
}


/* 3 Easy Steps CTA Mode
--------------------------------------------------------- */

.steps-cta-inner {
	display: grid;
	grid-template-columns: 1.2fr 2.6fr auto;
	align-items: center;
	gap: 36px;
	padding: 32px 48px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

.steps-cta-inner::before {
	z-index: -1;
}

.steps-cta-heading h2 {
	margin: 0;
	color: var(--white);
}

.steps-cta-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	align-items: center;
}

.steps-cta-step {
	position: relative;
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: 18px;
	padding: 8px 28px;
}

.steps-cta-step:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 12px;
	transform: translateY(-50%);
	width: 1px;
	height: 78%;
	background: rgba(255, 255, 255, 0.28);
}

.steps-cta-step-number {
	font-family: "SofiaRoughBlackTwo", sans-serif;
	font-size: 5rem;
	line-height: 0.85;
	letter-spacing: -0.1em;
	color: var(--white);
}

.steps-cta-step-copy {
	font-size: 1.2rem;
	line-height: 1.05;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--white);
}

.steps-cta-action {
	display: flex;
	justify-content: flex-end;
}

.steps-cta .ex-btn-anchor {
	background: var(--chips-salsa);
	color: var(--white);
}

.steps-cta .ex-btn-anchor:hover {
	background: #ea6a0a;
}


/* Responsive
--------------------------------------------------------- */

@media (max-width: 1348px) {
	.steps-cta-inner {
		grid-template-columns: 1fr;
		gap: 28px;
		text-align: center;
	}

	.steps-cta-action {
		justify-content: center;
	}
}

@media (max-width: 900px) {
	.steps-cta-inner {
		padding: 34px 10px;
	}

	.steps-cta-steps {
		grid-template-columns: 1fr;
		gap: 28px;
		width: fit-content;
		margin: 0 auto;
		justify-items: stretch;
	}

	.steps-cta-step {
		grid-template-columns: 72px 220px;
		column-gap: 16px;
		width: 100%;
		margin: 0;
		padding: 0;
		text-align: left;
	}

	.steps-cta-step:not(:last-child)::after {
		display: none;
	}

	.steps-cta-step-number {
		text-align: center;
	}

	.steps-cta-step-copy {
		text-align: left;
	}

	.steps-cta-action {
		margin-top: 20px;
	}
}
