/* ===== footer.css — site footer ===== */

.site-footer {
  border-top: 1px solid var(--rule);
  padding: 32px 0;
  background: var(--bg);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: var(--ink-mute);
}
.foot-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
}
.foot-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.foot-meta {
  display: flex;
  gap: 24px;
}
.foot-meta > * {
  white-space: nowrap;
}
.foot-meta a:hover {
  color: var(--ink);
}

@media (max-width: 800px) {
  .footer-inner {
    flex-wrap: wrap;
    gap: 12px 24px;
  }
}
