/* Footer is namespaced so it won't clash with other rules */
.lvm-footer {
  margin-top: 5px;
   margin-bottom: 5px; /* 👈 push it up from the bottom */
  padding: 32px 16px;
  background: var(--panel-2, #f3f5f9);
  border-top: 1px solid var(--border, #e5e7eb);
  color: var(--muted, #6b7280);
  text-align: center;
}
.lvm-footer__container {
  max-width: 1100px;
  margin: 0 auto;
}
.lvm-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--text, #0f172a);
  margin-bottom: 12px;
}
.lvm-footer__brand img {
  width: 24px; height: 24px; border-radius: 6px; object-fit: cover;
}
.lvm-footer__links {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 16px; margin: 8px 0 12px;
}
.lvm-footer__links a {
  font-size: 14px;
  color: var(--muted, #6b7280);
  text-decoration: none;
}
.lvm-footer__links a:hover { color: var(--brand, #6c5ce7); }
.lvm-footer__copy { font-size: 13px; margin: 0; }

/* Sticky-bottom pattern (optional):
   Wrap page with .page-shell > main.flex-1 so footer hugs the bottom on short pages
*/
.page-shell { min-height: 100dvh; display: flex; flex-direction: column; }
.page-shell > main.flex-1 { flex: 1 1 auto; }
