/* Shared footer across marketing, editorial, and legal pages. */
.site-footer.legal-footer {
  width: 100%;
  padding: 48px 0 32px;
}

.site-footer .footer-shell,
.site-footer .legal-identity,
.site-footer .analytics-preferences {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-footer .footer-shell {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  align-items: start;
  gap: 40px;
  padding-bottom: 32px;
}

.site-footer .footer-home {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  color: var(--presta-ink);
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
}

.site-footer .footer-home img { display: block; width: 32px; height: 32px; }
.site-footer .footer-intro p { margin: 12px 0 20px; font-size: 14px; }
.site-footer .footer-social { display: flex; flex-wrap: wrap; gap: 8px; }
.site-footer .footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--presta-hairline);
  border-radius: 12px;
  color: var(--presta-body);
  text-decoration: none;
  transition: transform 160ms var(--ease-out);
}

.site-footer .footer-group h2 {
  margin: 10px 0 12px;
  color: var(--presta-ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}

.site-footer .footer-links { display: grid; justify-content: start; gap: 0; }
.site-footer .footer-links a { min-height: 44px; font-size: 14px; text-decoration: none; }
.site-footer .footer-links a:hover { text-decoration: underline; text-underline-offset: 4px; }
.site-footer .footer-social a:hover {
  color: var(--presta-blue-ink);
  background: var(--presta-blue-soft);
  border-color: var(--presta-blue-ink);
  transform: translateY(-2px);
}
.site-footer .footer-social a:active { transform: scale(0.96); }
.site-footer a:focus-visible { outline: 2px solid var(--presta-blue-ink); outline-offset: 4px; }
.site-footer .legal-identity { margin-top: 0; padding-top: 24px; border-top: 1px solid var(--presta-hairline); }
.site-footer .analytics-preferences { margin-top: 16px; padding-top: 0; border-top: 0; }

@media (max-width: 700px) {
  .site-footer.legal-footer { padding-top: 32px; }
  .site-footer .footer-shell { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .site-footer .footer-links { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 20px; }
  .site-footer .footer-group h2 { margin-top: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .site-footer .footer-social a { transition: none; }
  .site-footer .footer-social a:hover,
  .site-footer .footer-social a:active { transform: none; }
}
