/* ═══════════════════════════════════════════════
   Shared component styles — injected via shared.js
   Uses core theme CSS variables
   ═══════════════════════════════════════════════ */

/* ── Footer (rho-footer) ────────────────────── */
.rho-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}
.rho-footer .logo {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--fg-muted);
}
.rho-footer .links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.rho-footer .links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 13px;
}
.rho-footer .links a:hover {
  color: var(--fg);
}
@media (max-width: 600px) {
  .rho-footer { justify-content: center; text-align: center; }
  .rho-footer .links { justify-content: center; gap: 0.75rem 1rem; }
}

