/* ════════════════════════════════════════════════════════════════
   footer.css — MFP public footer styles
   Loaded by base_public.html
   Phase 3 — CSS extraction (2026-04-14)
   ════════════════════════════════════════════════════════════════ */

footer {
  border-top: 1px solid var(--border);
  padding: 40px 24px;
  background: var(--warm-light);
  margin-top: 60px;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.footer-logo-mark {
  width: 26px; height: 26px;
  border-radius: 6px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer-logo-mark svg { width: 15px; height: 15px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--ink); }
.footer-copy { font-size: 0.8rem; color: var(--muted); }

@media (max-width: 768px) {
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
