/*
	Footer — legal strip after the black CTA band.
*/
.siteFooter {
	background: var(--colorWhite);
}

.siteFooter__legal {
	width: var(--widthViewport);
	max-width: var(--widthContent);
	margin: 0 auto;
	padding: 1.45rem 0 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
	border-top: 1px solid var(--colorLine);
	font-size: var(--textSmall);
	color: var(--colorGray);
}

.siteFooter__legalLinks {
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.siteFooter__legalLinks a:hover {
	color: var(--colorBlack);
}

@media (max-width: 560px) {
	.siteFooter__legal {
		width: min(100% - 2rem, var(--widthContent));
		align-items: center;
		flex-direction: column;
		text-align: center;
	}

	.siteFooter__legalLinks {
		justify-content: center;
	}
}
