/* ============================================================
   League of Cooking (Limoncella-style) — footer.
   Fix 2026-07-20 (owner-flagged: "where is privacy policy, disclaimer and
   more for footer?") - this file was anticipated by enqueue.php from the
   start (file_exists guard) but never actually created; the real Footer
   Menu (Terms of Service / Disclaimer / Privacy Policy / About / Contact,
   all real published pages) existed but nothing rendered it anywhere on
   the site. This is a real legal-links bar, not decorative.
   ============================================================ */
.lim-legal-bar {
	background: var(--lim-ink-dark);
	padding: var(--lim-space-4) 20px;
}
.lim-legal-bar__inner {
	max-width: var(--lim-container-wide); margin: 0 auto;
	display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
	gap: var(--lim-space-2) var(--lim-space-6);
}
.lim-legal-bar__menu {
	display: flex; flex-wrap: wrap; justify-content: center;
	list-style: none; margin: 0; padding: 0; gap: var(--lim-space-6);
}
.lim-legal-bar__menu a {
	color: rgba(255, 255, 255, 0.85); text-decoration: none; font-size: 13px;
	font-family: var(--lim-font-body); transition: color 0.2s;
}
.lim-legal-bar__menu a:hover { color: #fff; text-decoration: underline; }
.lim-legal-bar__copy { color: rgba(255, 255, 255, 0.6); font-size: 13px; font-family: var(--lim-font-body); }

@media (max-width: 600px) {
	.lim-legal-bar__inner { flex-direction: column; gap: var(--lim-space-3); }
	.lim-legal-bar__menu { gap: var(--lim-space-3) var(--lim-space-4); }
}
