.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-display);
	height: 100%;
	position: relative;
	max-height: 136px;
	min-height: 136px;
}

.call-to-action .inner {
	display: flex;
	justify-content: center;
	align-items: baseline;
	padding: 5px;
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
	height: 100%;
}

.call-to-action .icon {
	color: var(--icon-color);
	font-size: var(--text-2xl);
}

.call-to-action .content {
	display: flex;
	flex-direction: column;
	gap: 0;
	width: 100%;
	align-items: center;
	justify-content: center;
	border: 3px solid var(--white);
	padding: var(--space-6) var(--space-5);
	height: 100%;
	transition: border-color var(--transition-appendix);
}

.call-to-action .title {
	font-family: var(--title-font-family);
	color: var(--title-color);
	font-size: 2.375rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.36;
	letter-spacing: .01em;
	text-transform: uppercase;
	text-align: center;
}

.call-to-action .subtitle {
	font-family: var(--subtitle-font-family);
	color: var(--subtitle-color);
	text-align: center;
	font-size: var(--text-lg);
	font-weight: 700;
	line-height: 1.14;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.call-to-action a:hover {
	text-decoration: none;
}

.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;
	max-height: 136px;
	min-height: 136px;
}

@media screen and (min-width: 64em) {
	.call-to-action,
	.call-to-action .img-cont img {
		max-height: 192px;
		height: 192px;
	}
	.call-to-action .subtitle {
		font-size: min(calc(18px + (24 - 18) * ((100vw - 1024px) / (1440 - 1024))), 24px);
	}

	.call-to-action .title {
		font-size: min(calc(31px + (48 - 31) * ((100vw - 1024px) / (1440 - 1024))), 48px);
		line-height: var(--leading-none);
	}

	.call-to-action:hover .content {
		border-color: var(--gold-light);
	}

	.call-to-action .inner {
		padding: var(--space-2);
	}

	.call-to-action .content {
		gap: var(--space-2);
		border: var(--space-1) solid var(--white);
	}
}
@media screen and (min-width: 90em) {
	.call-to-action .subtitle {
		font-size: var(--text-2xl);
	}

	.call-to-action .title {
		font-size: var(--text-5xl);
	}
}
