/* ============================================================
 * Footer primitive — minimal left/right footer.
 * Lives INSIDE the last .cta-section (footer-in-tile pattern).
 * ============================================================ */

.page-footer {
  width: 100vw;
  margin: 32px -16px 0;
  padding-top: 0;
  padding-bottom: max(32px, env(safe-area-inset-bottom, 32px));
  padding-left: max(16px, calc((100vw - 1400px) / 2));
  padding-right: max(16px, calc((100vw - 1400px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
}
.page-footer a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.page-footer a:hover { color: var(--white); }

.footer-left, .footer-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-right .sep {
  color: inherit;
}

@media (max-width: 600px) {
  .page-footer {
    font-size: 9px;
    letter-spacing: 0.5px;
    gap: 8px;
  }
  .page-footer .sep { margin: 0 2px; }
}
