/* footer.css — shared site footer */

footer {
  border-top: 1px solid var(--border);
  padding: 3rem 1.5rem calc(3rem + env(safe-area-inset-bottom, 0px));
  color: var(--text-2); font-size: .85rem;
}
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
footer a { color: var(--text-2); }
footer a:hover { color: var(--text); }

@media (max-width: 620px) { .footer-inner { flex-direction: column; } }
