/* ── Full footer (index, market, news) ── */
footer {
  background: var(--navy); color: rgba(255,255,255,0.65);
  padding: 14px 24px; font-size: .8rem;
  display: flex; align-items: center; justify-content: center;
  position: relative; width: 100%;
}
footer .footer-links { position: absolute; left: 24px; display: flex; gap: 12px; white-space: nowrap; }
footer .footer-text { text-align: center; }
footer .footer-text p + p { margin-top: 4px; }
footer a { color: rgba(255,255,255,0.85); text-decoration: none; }

/* ── Simple footer (faq, conditions) ── */
footer.ftr-simple {
  background: none;
  display: block;
  position: static;
  width: auto;
  text-align: center;
  padding: 28px 20px;
  font-size: .78rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  margin-top: 40px;
}
footer.ftr-simple a { color: #f07928; text-decoration: none; }
footer.ftr-simple a:hover { text-decoration: underline; }
footer.ftr-simple p + p { margin-top: 6px; }

@media (max-width: 600px) {
  footer:not(.ftr-simple) {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    padding: 20px 16px;
  }
  footer:not(.ftr-simple) .footer-text { order: 1; }
  footer:not(.ftr-simple) .footer-links { position: static; order: 2; justify-content: center; border-top: 1px solid rgba(255,255,255,0.15); padding-top: 12px; width: 100%; }
}
