/* Final CTA banner. */

.sm-cta {
	position: relative;
	background: linear-gradient(120deg, var(--sm-burgundy), var(--sm-burgundy-deep));
	overflow: hidden;
	padding: 60px 0;
}

.sm-cta__particles {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
}

.sm-cta__inner {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 34px;
	flex-wrap: wrap;
}

.sm-cta__img {
	width: 120px;
	height: 120px;
	border-radius: 18px;
	background-size: cover;
	background-position: center;
	border: 2px solid var(--sm-gold-40);
	flex: 0 0 auto;
}

.sm-cta__text {
	flex: 1;
	min-width: 260px;
}

.sm-cta__text h2 {
	font-family: var(--sm-font-head);
	font-weight: 700;
	font-size: clamp(26px, 3.4vw, 40px);
	color: #fff;
	margin: 0 0 8px;
	text-wrap: balance;
}

.sm-cta__text p {
	font-size: 14.5px;
	color: #e7ded2;
	max-width: 520px;
	margin: 0;
}

.sm-cta__btns {
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex: 0 0 auto;
}

@media (max-width: 768px) {
	.sm-cta__inner {
		flex-direction: column;
		text-align: center;
	}

	.sm-cta__btns {
		width: 100%;
	}

	.sm-cta__btns .sm-btn {
		justify-content: center;
	}
}
