.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);
}

.call-to-action .inner {
	display: flex;
	justify-content: center;
	align-items: baseline;
	gap: var(--space-5);
	padding: var(--space-5) var(--space-4);
}

.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-1);
	text-align: center;
}

.call-to-action .title {
	font-family: var(--font-damion);
	font-weight: 400;
	color: var(--yellow-ec);
	font-size: var(--text-3xl);
	line-height: var(--leading-none);
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 2px;
	text-decoration-color: transparent;
}

.call-to-action .subtitle {
	font-family: var(--font-body);
	font-weight: 600;
	color: var(--white);
	font-size: var(--text-base);
	line-height: var(--leading-normal);
}

.call-to-action .read-more {
	font-size: var(--text-sm);
	font-weight: 800;
	background: var(--green-a6);
	color: var(--black-11);
	width: 21px;
	height: 21px;
	border-radius: var(--rounded-circle);
	display: inline-grid;
	place-items: center;
}

.panel-footer .call-to-action .title {
	color: var(--white);
}

.panel-footer .call-to-action .subtitle {
	text-align: center;
}

.panel-footer .read-more {
	background: var(--yellow-ec);
}

.call-to-action:hover {
	.read-more {
		background: var(--white);
	}
	.title {
		text-decoration-color: var(--white);
	}
}

@media screen and (min-width: 64em) {
	.call-to-action .title {
		font-size: 2.5rem;
		line-height: 1.2;
	}

	.call-to-action .subtitle {
		font-size: var(--text-xl);
		line-height: var(--leading-normal);
	}

	.call-to-action .read-more {
		font-size: var(--text-base);
		width: 24px;
		height: 24px;
	}
	.call-to-action .content {
		text-align: left;
		gap: 0;
	}
	.call-to-action .inner {
		padding: 0 var(--space-5);
	}
}
