.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);

	max-width: 138px;
}

.call-to-action .inner {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 17px;
	padding: 0;
	flex-direction: column;
	text-align: center;
}

.call-to-action .slide-top {
	max-width: 100px;
}
.call-to-action .img-cont {
	position: relative;
	border-radius: 50%;
	overflow: hidden;
}
.call-to-action .img-cont::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	pointer-events: none;
	background: url(/includes/public/assets/shared/circle-overlay.svg);
	background-position: center;
	background-size: 94%;
	background-repeat: no-repeat;
}
.call-to-action .img-cont img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.call-to-action .icon {
	color: var(--icon-color);
	font-size: var(--text-2xl);
}

.call-to-action .content {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.call-to-action .title {
	font-family: var(--font-display);
	font-weight: 700;
	color: #ffffff;
	font-size: var(--text-base);
	line-height: 1.1;
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 2px;
	text-decoration-color: #fff0;
	transition: text-decoration-color var(--transition-appendix);
}

.call-to-action .subtitle {
	font-family: var(--font-body);
	font-weight: 700;
	color: var(--salmon);
	font-size: var(--text-xs);
	line-height: var(--leading-normal);
	text-transform: uppercase;
}

.call-to-action .read-more {
	font-size: var(--text-xs);
}

@media screen and (min-width: 64em) {
	.call-to-action .title {
		font-size: var(--text-3xl);
	}

	.call-to-action .subtitle {
		font-size: var(--text-xl);
	}

	.call-to-action .read-more {
		font-size: var(--text-sm);
	}

	.call-to-action .subtitle {
		font-size: var(--text-lg);
		line-height: 1;
	}
	.call-to-action {
		max-width: 375px;
	}
	.call-to-action .inner {
		justify-content: flex-start;
		flex-direction: row;
		gap: 25px;
	}
	.call-to-action .title {
		font-size: var(--text-3xl);
		line-height: 1.1;
	}
	.call-to-action .content {
		text-align: left;
		gap: var(--space-3);
	}
	.call-to-action .img-cont {
		width: 130px;
	}
	.call-to-action .slide-top {
		max-width: 130px;
	}
}

@media (hover: hover) {
	.call-to-action .title:hover {
		text-decoration-color: #ffff;
	}
}
