#cta_banner.cta_banner {
	padding: 44px 0 48px;
	background: #fff;
	border-top: 1px solid #ececec;
}

#cta_banner .wrapper {
	width: 100%;
	max-width: 1080px;
	margin: 0 auto;
	padding: 0 15px;
	box-sizing: border-box;
}

#cta_banner .cta_banner_inner {
	display: flex;
	align-items: center;
	gap: 32px;
	padding: 28px 32px;
	background: #f7f5ff;
	border: 1px solid #d2c5ff;
	border-radius: 20px;
	box-shadow: 0 2px 12px rgba(123, 9, 173, 0.1);
	box-sizing: border-box;
	overflow: visible;
}

#cta_banner .cta_banner_photo {
	flex: 0 0 auto;
	width: 240px;
	max-width: 34%;
	margin: 0;
	position: relative;
	z-index: 1;
	border-radius: 14px;
	overflow: visible;
	align-self: center;
}

#cta_banner .cta_banner_photo::before {
	content: "";
	position: absolute;
	top: 10px;
	left: -10px;
	width: 100%;
	height: calc(100% - 10px);
	background: #9684d8;
	border-radius: 14px;
	z-index: -1;
}

#cta_banner .cta_banner_photo img {
	display: block;
	width: 100%;
	height: auto;
	max-height: none;
	border-radius: 14px;
	box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.14);
}

#cta_banner .cta_banner_content {
	flex: 1 1 auto;
	min-width: 0;
	text-align: left;
	padding: 4px 0;
}

#cta_banner .cta_banner_content h2 {
	font-family: 'Lora', serif;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.3;
	color: #7b09ad;
	margin: 0 0 12px;
}

#cta_banner .cta_banner_content h2::after {
	content: "";
	display: block;
	width: 56px;
	height: 4px;
	margin-top: 12px;
	background: #dbdc14;
	border-radius: 2px;
}

#cta_banner .cta_banner_content p {
	font-family: 'Questrial', sans-serif;
	font-size: 15px;
	line-height: 24px;
	color: #1a1a1a;
	margin: 0 0 22px;
	max-width: 620px;
}

#cta_banner .cta_banner_actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
}

#cta_banner .cta_banner_btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 44px;
	padding: 0 24px;
	border-radius: 30px;
	font-family: 'Lora', serif;
	font-size: 16px;
	line-height: 1.2;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
	box-sizing: border-box;
}

#cta_banner .cta_banner_btn_primary {
	background: #7b09ad;
	border: 2px solid #7b09ad;
	color: #fff;
	box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

#cta_banner .cta_banner_btn_primary:hover,
#cta_banner .cta_banner_btn_primary:focus {
	background: #fff;
	border-color: #7b09ad;
	color: #7b09ad;
	text-decoration: none;
}

#cta_banner .cta_banner_btn_call {
	background: #fff;
	border: 2px solid #d2c5ff;
	color: #1a1a1a;
	box-shadow: 0 1px 3px rgba(123, 9, 173, 0.08);
}

#cta_banner .cta_banner_btn_call:hover,
#cta_banner .cta_banner_btn_call:focus {
	border-color: #7b09ad;
	color: #7b09ad;
	box-shadow: 0 2px 8px rgba(123, 9, 173, 0.12);
	text-decoration: none;
}

#cta_banner .cta_banner_btn_icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: #7b09ad;
}

@media only screen and (max-width: 900px) {
	#cta_banner .cta_banner_inner {
		gap: 24px;
		padding: 24px 22px;
	}

	#cta_banner .cta_banner_photo {
		width: 200px;
		max-width: 200px;
	}

	#cta_banner .cta_banner_content h2 {
		font-size: 24px;
	}
}

@media only screen and (max-width: 767px) {
	#cta_banner.cta_banner {
		padding: 32px 0 36px;
	}

	#cta_banner .cta_banner_inner {
		flex-direction: column;
		align-items: flex-start;
		padding: 22px 18px;
		gap: 20px;
	}

	#cta_banner .cta_banner_photo {
		width: 100%;
		max-width: 100%;
		align-self: stretch;
	}

	#cta_banner .cta_banner_photo::before {
		top: 10px;
		left: 10px;
		width: calc(100% - 20px);
	}

	#cta_banner .cta_banner_content h2 {
		font-size: 22px;
	}

	#cta_banner .cta_banner_actions {
		width: 100%;
		flex-direction: column;
		align-items: stretch;
	}

	#cta_banner .cta_banner_btn {
		width: 100%;
	}
}
