/**
 * Pxl Footer Legal — footer bottom.
 */

.pxl-footer-legal {
	box-sizing: border-box;
	max-width: 780px;
	margin-left: auto;
	margin-right: auto;
	padding: 16px 16px 28px;
	text-align: center;
}

.pxl-footer-legal--auto {
	margin-top: auto;
}

body.fs-landing-single:has(.pxl-cta-bar) .pxl-footer-legal {
	padding-bottom: 108px;
	margin: 0 auto;
}

.pxl-footer-legal__nav {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px 10px;
}

.pxl-footer-legal__link {
	font-family: var(--font-sans);
	font-size: 11px;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: 0.04em;
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: color 0.2s ease, opacity 0.2s ease;
}

a.pxl-footer-legal__link:hover,
a.pxl-footer-legal__link:focus-visible {
	color: #fff;
	opacity: 1;
	text-decoration: underline;
	text-underline-offset: 2px;
	outline: none;
}

.pxl-footer-legal__link--disabled {
	cursor: default;
	pointer-events: none;
}

.pxl-footer-legal__sep {
	font-family: var(--font-sans);
	font-size: 11px;
	line-height: 1;
	color: rgba(255, 255, 255, 0.45);
	user-select: none;
}

@media (max-width: 480px) {
	.pxl-footer-legal {
		padding-left: 12px;
		padding-right: 12px;
	}

	body.fs-landing-single:has(.pxl-cta-bar) .pxl-footer-legal {
		padding-bottom: 96px;
	}
}