/* ═══════════════════════════════════════════════════════════════════════════
   DNS Panopticon — Site Footer
   Shared footer styles used across all pages.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Footer shell ─────────────────────────────────────────────────────────── */
.site-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  flex-shrink: 0;
}

/* ── Inner bar wrapper (used in tool pages) ───────────────────────────────── */
.site-footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
}

/* ── Copyright link ───────────────────────────────────────────────────────── */
.footer-copyright {
  font-size: 12px;
  color: var(--txt-4);
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
}

.footer-copyright:hover { color: var(--primary); }

/* ── Footer navigation links ──────────────────────────────────────────────── */
.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px 14px;
}

.site-footer-links a {
  font-size: 12px;
  color: var(--txt-4);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--t-fast);
}

.site-footer-links a:hover { color: var(--primary); text-decoration: underline; }
