.call-to-action {
	--title-color: var(--gray-100);
	--subtitle-color: var(--gray-100);
	--icon-color: var(--gray-100);
	--title-font-family: var(--font-display);
	--subtitle-font-family: var(--font-body);
	position: relative;
	min-height: 112px;
}

.call-to-action .inner {
	display: flex;
	justify-content: center;
	gap: var(--space-5);
	height: 100%;
	padding: var(--space-5) var(--space-5);
	width: 100%;
	width: 100%;
	height: 100%;
	align-items: center;
	min-height: 112px;
	position: absolute;
	top: 0;
	left: 0;
}

.call-to-action .img-cont,
.call-to-action .img-cont img {
	min-height: 112px;
}

.cta-cont .cta1 {
	border: 2px solid var(--almost-white);
	border-right: 1px solid var(--almost-white);
}

.cta-cont .cta2 {
	border: 2px solid var(--almost-white);
	border-left: 1px solid var(--almost-white);
}

.call-to-action .icon {
	color: var(--icon-color);
	font-size: var(--text-2xl);
}

.call-to-action .content {
	display: flex;
	flex-direction: column;
	gap: var(--space-2);
	z-index: 1;
	width: 100%;
}

.call-to-action .title {
	font-family: var(--font-display-bold);
	color: var(--title-color);
	font-size: var(--text-base);
	line-height: 1.16;
	text-align: center;
	text-transform: uppercase;
}

.call-to-action .img-cont img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	position: relative;
}

.call-to-action .img-cont::after {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: rgba(0, 0, 0, 0.35);
	pointer-events: none;
}

@media (hover: hover) {
	.call-to-action a:hover {
		text-decoration: none;
	};
}

@media screen and (min-width: 64em) {
	.call-to-action,
	.call-to-action .inner {
		min-height: 125px;
	}

	.call-to-action .img-cont,
	.call-to-action .img-cont img {
		min-height: 125px;
	}

	.cta-cont .cta1 {
		border-right: 2px solid var(--almost-white);
	}

	.cta-cont .cta2 {
		border-left: 2px solid var(--almost-white);
	}
	
	.call-to-action .inner {
		padding: var(--space-5) 25px;
	}

	.call-to-action .title {
		font-size: 1.625rem;
		letter-spacing: .1em;
	}

	.call-to-action .content {
		max-width: 36ch;
	}

	.cta1 .call-to-action::before,
	.cta2 .call-to-action::before {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		min-height: 125px;
		width: 100%;
		height: 100%;
		background-position: center;
		background: linear-gradient(0deg, rgba(193, 27, 80, 0.45) 0%, rgba(193, 27, 80, 0.45) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.35) 100%);
		z-index: 1;
		opacity: 0;
		transition: opacity .4s ease;
		pointer-events: none;
	}

	.cta2 .call-to-action::before {
		background: linear-gradient(0deg, rgba(244, 134, 27, 0.45) 0%, rgba(244, 134, 27, 0.45) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.35) 100%);
	}

	@media (hover: hover) {
		.call-to-action:hover:before{
			opacity: 1;
		}

		.call-to-action a:hover {
			text-decoration: none;
		}
	}
}
