.blog_block_cta {
	position: relative;
	overflow: hidden;
	margin: 4rem 0;
	min-height: 20rem;
	border-radius: 0.5rem;
	background: #000;
	color: #fff;
}

.blog_block_cta_bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 32%;
	height: 100%;
	background-image: url(../../_img/blog/cta-bg.webp);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.blog_block_cta_overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg,
			rgba(0, 0, 0, 0.15) 0%,
			rgba(0, 0, 0, 0.45) 18%,
			rgba(0, 0, 0, 0.75) 28%,
			#000 38%,
			#000 100%);
}

.blog_block_cta_inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
	min-height: 20rem;
	padding: 3.6rem 4rem;
	box-sizing: border-box;
}

.blog_block_cta .blog_block_cta_heading {
	width: 100%;
	max-width: 480px;
	margin: 0 0 3.2rem;
	font-size: 27px;
	font-weight: bold;
	line-height: 1.6;
	text-align: left;
	color: #fff;
}

.blog_block_cta_actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1.2rem;
	justify-content: flex-end;
	width: 100%;
	max-width: 52rem;
}

.blog_block_cta_actions::after {
	display: none;
}

.blog_block_cta_button {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.2rem 1.6rem;
	border-radius: 0.3rem;
	font-size: 14px;
	font-weight: bold;
	line-height: 1.4;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.blog_block_cta_button.is_primary {
	background: #fff;
	color: #000;
}

.blog_block_cta_button.is_secondary {
	background: #4a4a4a;
	color: #fff;
}

.blog_block_cta_button_label {
	flex: 1;
	font-size: 17px;
	font-weight: bold;
	line-height: 1;
	text-align: left;
}

.blog_block_cta_button_icon {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
}

.blog_block_cta_button.is_primary .blog_block_cta_button_icon img {
	width: 2.4rem;
	height: 2.4rem;
	margin: 0;
}

.blog_block_cta_button.is_secondary .blog_block_cta_button_icon img {
	width: 1.8rem;
	height: 1.8rem;
	margin: 0;
}

@media screen and (max-width: 768px) {
	.blog_block_cta {
		width: calc(100% + 5.2rem);
		margin-left: -2.6rem;
		margin-right: -2.6rem;
		border-radius: 0;
	}

	.blog_block_cta_bg {
		width: 100%;
		background-position: top center;
	}

	.blog_block_cta_overlay {
		background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.55) 36%, rgba(0, 0, 0, 0.85) 55%, #000 70%, #000 100%);
	}

	.blog_block_cta_inner {
		align-items: stretch;
		padding: 2.4rem 2rem;
	}

	.blog_block_cta_heading {
		font-size: 1.8rem;
	}

	.blog_block_cta_actions {
		flex-direction: column;
	}

	.blog_block_cta_button {
		width: 100%;
		min-width: 0;
	}

	.blog_block_cta_button.is_primary {
		padding: 1.9rem 1.6rem;
	}

	.blog_block_cta_button.is_secondary {
		background: #18495F;
		
	}

	.blog_block_cta .blog_block_cta_heading {
		font-size: clamp(15px, calc((100vw / 375) * 17), 20px);
		text-align: center;
	}

	.blog_block_cta_button.is_primary .blog_block_cta_button_label {
		font-size: clamp(16px, calc((100vw / 375) * 20), 24px);
	}

	.blog_block_cta_button_label {
		font-size: clamp(15px, calc((100vw / 375) * 18), 22px);
	}
}