.custom-footer-cta-link a {
	display: flex;
	gap: .5rem 0;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: white;
	font-weight: 500;
	
}

.custom-footer-cta-link .icon {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background-color: var(--spa-green);
	margin: 0;
	padding: 0;
	width: 60px;
	height: 60px;
	aspect-ratio: 1 / 1;
}

.custom-footer-cta-link .icon img {
	position: relative;
	width: 30px;
	height: 30px;
}

.custom-footer-cta-link .title {
	width: 100%;
	text-align: center;
	text-transform: uppercase;
	line-height: 18px;
	letter-spacing: 2px;
	font-size: .9rem;
}

.custom-footer-cta-link a:hover {
	color: white;
	text-decoration: underline;
}

@media (min-width: 40em) {
	.custom-footer-cta-link a {
        border: 2px solid var(--white);
        padding: 1rem 1rem;
		display: flex;
		flex-direction: row;
	}
	.custom-footer-cta-link .title {
		width: 65%;
	}
}

@media (min-width: 64em) {

	.custom-footer-cta-link .icon {
		width: 80px;
		height: 80px;
		aspect-ratio: 1 / 1;
	}
}