/**
 * Shared marketing site footer chrome.
 * Used by static public/** pages and SPA home (import from index.css).
 * Keep markup/link order in sync with HomeScreen.jsx + apply-site-footer.mjs.
 */

.prezgo-site-footer {
  margin-top: 3rem;
  padding: 2.5rem 1.25rem 2rem;
  border-top: 1px solid var(--border, rgba(192, 199, 214, 0.14));
  width: 100%;
  box-sizing: border-box;
  background: transparent;
}

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

.prezgo-site-footer-logo {
  display: inline-flex;
  opacity: 0.7;
  transition: opacity 0.15s ease;
  text-decoration: none;
}

.prezgo-site-footer-logo:hover {
  opacity: 1;
  text-decoration: none;
}

.prezgo-site-footer-logo img {
  height: 2.5rem;
  width: auto;
  display: block;
}

.prezgo-site-footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  font-size: 0.875rem;
  flex: 1 1 auto;
}

.prezgo-site-footer-nav a {
  color: var(--muted, #9aa8c7);
  text-decoration: none;
}

.prezgo-site-footer-nav a:hover,
.prezgo-site-footer-nav a[aria-current="page"] {
  color: var(--primary, #a4c9ff);
  text-decoration: none;
}

.prezgo-site-footer-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.prezgo-site-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  color: var(--muted, #9aa8c7);
  opacity: 0.7;
  transition: opacity 0.15s ease, color 0.15s ease;
  text-decoration: none;
}

.prezgo-site-footer-social a:hover {
  opacity: 1;
  color: var(--primary, #a4c9ff);
  text-decoration: none;
}

.prezgo-site-footer-social svg {
  width: 1.25rem;
  height: 1.25rem;
}

@media (max-width: 699px) {
  .prezgo-site-footer {
    padding: 2rem 1rem 1.75rem;
  }

  .prezgo-site-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .prezgo-site-footer-nav {
    justify-content: flex-start;
  }
}
