/* /static/css/components/footer.css */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 18px 0;
  color: var(--fg);
}

.footer .inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
@media (min-width: 769px) {
  .footer .inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}
