/* Shared footer — single source of truth, injected by shared/footer.js */
.shared-footer {
  background: #111429;
  color: rgba(245, 241, 232, 0.75);
  padding: 3rem 2rem 2rem;
  font-family: 'Inter', 'Inter Tight', -apple-system, sans-serif;
}

.shared-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.shared-footer-logo img { height: 26px; width: auto; display: block; opacity: 0.9; }

.shared-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.shared-footer-links a {
  color: rgba(245, 241, 232, 0.7);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s ease;
}
.shared-footer-links a:hover { color: #F5F1E8; }

.shared-footer-socials {
  display: flex;
  gap: 0.9rem;
}

.shared-footer-socials a {
  color: rgba(245, 241, 232, 0.7);
  display: inline-flex;
  transition: color 0.2s ease;
}
.shared-footer-socials a:hover { color: #F5F1E8; }

.shared-footer-copy {
  width: 100%;
  margin: 2rem 0 0;
  font-size: 0.78rem;
  color: rgba(245, 241, 232, 0.4);
  text-align: center;
}

@media (max-width: 700px) {
  .shared-footer-inner { flex-direction: column; align-items: flex-start; }
}
