/**
 * Site footer: two columns (brand + foot-menu grid), copyright bar.
 */

.fmx-site-footer {
	background: #000;
	color: #fff;
	margin-top: 3rem;
	padding: 2.25rem 1.25rem 0;
	font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.fmx-site-footer__main {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.25rem 2.5rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
	.fmx-site-footer__main {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1.65fr);
		align-items: start;
	}
}

.fmx-site-footer__brand {
	text-align: center;
}

@media (min-width: 768px) {
	.fmx-site-footer__brand {
		text-align: center;
		padding-right: 0.5rem;
	}
}

.fmx-site-footer__title {
	margin: 0 0 1rem;
	font-size: clamp(1.75rem, 4vw, 2.25rem);
	font-weight: 900;
	letter-spacing: 0.08em;
	color: #fff;
	text-transform: uppercase;
}

.fmx-site-footer__intro {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.65;
	color: #fff;
	max-width: 28rem;
	margin-left: auto;
	margin-right: auto;
}

.fmx-footer__hl {
	color: var(--fmx-lime, #dfff3a);
	font-weight: 700;
}

.fmx-site-footer__menu-wrap {
	min-width: 0;
}

.fmx-site-footer__menu-title {
	margin: 0 0 1rem;
	font-size: 0.95rem;
	font-weight: 900;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--fmx-lime, #dfff3a);
	text-align: center;
}

@media (min-width: 768px) {
	.fmx-site-footer__menu-title {
		text-align: left;
	}
}

.fmx-site-footer__menu-empty {
	margin: 0;
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.45);
	text-align: center;
}

@media (min-width: 768px) {
	.fmx-site-footer__menu-empty {
		text-align: left;
	}
}

/* foot-menu: WP outputs ul */
.fmx-footer-menu,
.fmx-site-footer__menu-wrap ul.menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.4rem 1.25rem;
}

@media (min-width: 480px) {
	.fmx-footer-menu,
	.fmx-site-footer__menu-wrap ul.menu {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

.fmx-footer-menu li,
.fmx-site-footer__menu-wrap ul.menu li {
	margin: 0;
	padding: 0;
}

.fmx-footer-menu a,
.fmx-site-footer__menu-wrap ul.menu a {
	display: block;
	font-size: 0.875rem;
	font-weight: 500;
	color: #fff !important;
	text-decoration: none !important;
	padding: 0.2rem 0;
	line-height: 1.35;
}

.fmx-footer-menu a:hover,
.fmx-site-footer__menu-wrap ul.menu a:hover {
	color: var(--fmx-lime, #dfff3a) !important;
}

.fmx-site-footer__bar {
	max-width: 1100px;
	margin: 0 auto;
	padding: 1rem 0 1.75rem;
	text-align: center;
}

.fmx-site-footer__copy {
	margin: 0;
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.55);
}
