.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);
	height: 100%;

	a {
		text-decoration: none;
	}
}

.call-to-action .inner {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 14px;
	padding: 9px var(--space-5);
	background-color: var(--brown);
	height: 100%;

	.floating-ctas > div:nth-child(2) & {
		background: var(--brown-light);
	}
}

.call-to-action .icon {
	color: var(--icon-color);
	font-size: 1.125rem;
	font-weight: 400;
}

.call-to-action .content {
	display: flex;
	flex-direction: column;
	gap: var(--space-2);
}

.call-to-action .title {
	font-size: 0.6875rem;
	font-style: normal;
	font-weight: 600;
	line-height: 0.8125rem;
	font-family: var(--font-body);
	text-transform: uppercase;
	color: var(--gold-lighter);

	i {
		display: none;
	}
}

.call-to-action .read-more {
	font-size: var(--text-xs);
}

@media screen and (min-width: 64em) {
	.call-to-action .subtitle {
		font-size: var(--text-xl);
	}

	.call-to-action .read-more {
		font-size: var(--text-sm);
	}
}
