/* ==========================================================================
   Footer
   ========================================================================== */

.fae-footer {
	padding-top: 64px;
	padding-bottom: 32px;
}

/* Location cross-link nav (shown on location pages only) */

.fae-footer__locations {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	column-gap: 24px;
	row-gap: 8px;
	margin-bottom: 32px;
	font-size: 14px;
}

.fae-footer__locations-link {
	color: #8a8a8f;
	text-decoration: none;
	transition: color 0.15s ease;
}

.fae-footer__locations-link:hover {
	color: #ffffff;
}

.fae-footer__locations-link--home {
	font-weight: 600;
	color: #ffffff;
}

.fae-footer__locations-link--home:hover {
	color: #c6f135;
}

/* Bottom bar: logo, service areas, copyright */

.fae-footer__bottom {
	display: flex;
	flex-direction: column;
	gap: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding-top: 28px;
	font-size: 12px;
	color: #6f6f74;
}

@media (min-width: 1024px) {
	.fae-footer__bottom {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
}

.fae-footer__logo {
	display: inline-flex;
	align-items: flex-start;
	text-decoration: none;
	font-size: 15px;
	font-weight: 800;
	letter-spacing: -0.01em;
}

.fae-footer__logo-muted {
	color: #6f6f74;
}

.fae-footer__logo-bold {
	margin-left: 4px;
	color: #ffffff;
}

.fae-footer__logo-r {
	margin-left: 2px;
	font-size: 9px;
	color: #6f6f74;
}

.fae-footer__service-areas,
.fae-footer__copyright {
	margin: 0;
}

.fae-footer__legal {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.fae-footer__privacy-link {
	color: #6f6f74;
	text-decoration: underline;
	text-decoration-color: rgba(255, 255, 255, 0.2);
	text-underline-offset: 3px;
	transition: color 0.15s ease;
}

.fae-footer__privacy-link:hover {
	color: #c6f135;
	text-decoration-color: #c6f135;
}

.fae-footer__legal .fae-footer__copyright::after {
	content: "";
	display: inline-block;
	width: 3px;
	height: 3px;
	margin: 0 10px;
	border-radius: 9999px;
	background-color: #6f6f74;
	vertical-align: middle;
}

.fae-footer__legal .fae-footer__copyright:last-child::after {
	content: none;
}