.footer-callout {
	background: var(--gray-600);
	position: absolute;
	height: 100%;
	width: 100%;
	overflow: hidden;
}

@media (min-width: 64em) {
	.footer-callout {
		position: absolute;
		height: 100%;
		width: 100%;
		overflow: hidden;
	}
}

.footer-callout img {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-size: cover;
	width: 100%;
	height: 100%;
}

.footer-callout a {
	color: var(--white);
	text-align: center;
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background-color: rgba(var(--gray-rgb), 0.2);
	transition: background-color 0.2s;
}

.footer-callout a:hover {
	color: var(--white);
	background-color: rgba(var(--gray-rgb), 0.6);
}

.footer-callout::after {
	content: '';
	position: absolute;
	bottom: -58px;
	right: -35px;
	pointer-events: none;
	width: 246px;
	height: 245px;
	transform: rotate(29deg);
	background-image: url('/includes/public/assets/shared/badge-hover-footer.svg');
	opacity: 0;
	transition: opacity 0.5s;
}

.footer-callout:hover::after {
	opacity: .6;
}

.footer-callout .subtitle {
	font-size: 11px; /* FIXME: this is off grid */
	font-family: var(--font-contrast);
	z-index: 1;
}

.footer-callout .title {
	font-size: var(--text-base);
	font-weight: 900;
	z-index: 1;
}

@media (min-width: 64em) {
	.footer-callout .subtitle {
		font-size: 20px; /* FIXME: this is off grid */
	}

	.footer-callout .title {
		font-size: var(--text-5xl);
	}
}
