.call-to-action {
	--title-color: var(--off-white);
	--subtitle-color: var(--off-white);
	--icon-color: var(--gray-100);
	--title-font-family: var(--font-display);
	--subtitle-font-family: var(--font-body);
	border-bottom: 3px solid var(--white);
	height: 100%;
	position: relative;
	min-height: 125px;
}

.call-to-action .inner {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	width: 100%;
	gap: var(--space-5);
	padding: 34px var(--space-5);
	position: absolute;
	top: 0;
	left: 0;
}

.call-to-action .icon {
	color: var(--icon-color);
	font-size: var(--text-2xl);
}

.call-to-action .content {
	display: flex;
	flex-direction: column-reverse;
	align-items: center;
}

.call-to-action .title {
	font-family: var(--title-font-family);
	color: var(--title-color);
	font-size: 1.875rem;
	line-height: 1.2;
	text-align: center;
}

.call-to-action .subtitle {
	font-family: var(--subtitle-font-family);
	color: var(--subtitle-color);
	font-size: var(--text-base);
	line-height: 1.3;
	font-weight: 500;
	text-transform: uppercase;
}

.call-to-action .read-more {
	display: none;
	visibility: hidden;
}

.call-to-action .img-cont::after {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: rgba(0, 0, 0, 0.4);
	pointer-events: none;
}

.call-to-action .img-cont img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	position: relative;
	min-height: 125px;
}

@media (min-width: 40em) {
	.call-to-action .inner {
		padding: 44px var(--space-5);
	}
}

@media screen and (min-width: 64em) {
	.call-to-action .title {
		font-size: min(calc(36px + (44 - 36) * ((100vw - 1024px) / (1440 - 1024))), 44px);
	}

	.call-to-action .subtitle {
		font-size: var(--text-xl);
	}

	.call-to-action .read-more {
		font-size: var(--text-sm);
	}

	.call-to-action .inner {
		padding: 54px var(--space-5);
	}
	
}
