/* ═══════════════════════════════════════════════════════════════════════════
   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;
  width: 100%;
  margin-top: auto;
}

/* ── 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;
  transition: color var(--t-fast);
}

.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; }

@media (max-width: 640px) {
  .site-footer,
  .site-footer-bar {
    flex-direction: column;
    align-items: center;
  }

  .site-footer-links {
    order: -1;
    justify-content: center;
    width: 100%;
  }

  .footer-copyright {
    text-align: center;
    white-space: normal;
  }
}
