.footer-cta {
	position: relative;
	color: var(--white);
	overflow: hidden;
}

.footer-cta:after {
	content: '';
	background-color: var(--black);
	opacity: .2;
	position: absolute;
	inset: 0;
}

.footer-cta .title {
	position: absolute;
	inset:  0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	font-family: var(--font-script);
	color: var(--white);
	font-size: 40px;
	text-align: center;
	line-height: 1;
	padding: 17px 12px 12px;
	z-index: 1;
	filter: drop-shadow(0 0 40px var(--black))
}

.footer-cta .title small {
	font-size: 20px;
	display: block;
}

.footer-cta img {
	scale: 1.1;
	transition: scale ease-in-out 1.5s;
	width: 100%;
}

@media (hover: hover) {
	.footer-cta:hover img {
		scale: 1;
	}
}

@media (min-width: 64em) {
	.footer-cta .title  {
		font-size: clamp(40px, 40px + (60 - 40) * (100vw - 1024px) / 416, 60px);
		padding-top: 20px;
	}

	.footer-cta .title small {
		font-size: 28px;
		margin-bottom: 4px;
	}
}

