.cta-popup {
	/* без нижнего отступа: блок под CTA приносит свой верхний padding,
	   иначе получается двойной разрыв */
	padding: 24px 0 0;
}
.cta-popup__container {
	display: flex;
	justify-content: center;
}
.cta-popup__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: max-content;
	max-width: 100%;
	color: #fff;
	font-family: Georama, sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	text-align: center;
	text-decoration: none;
	border: none;
	border-radius: 96px;
	background: linear-gradient(90deg, #1a477e 0, #1b75bb 100%);
	padding: 14px 42px;
	cursor: pointer;
	transition: 0.3s filter, 0.3s box-shadow;
}
.cta-popup__btn:hover {
	filter: brightness(1.08);
	box-shadow: 0 8px 24px rgba(27, 117, 187, 0.28);
}
@media screen and (min-width: 992px) {
	.cta-popup {
		padding: 32px 0 0;
	}
	.cta-popup__btn {
		font-size: 18px;
		padding: 16px 48px;
	}
}
