/* Shared footer for every page of Release Navigator */
.site-footer {
  border-top: 1px solid var(--line, #e4e1ef);
  margin-top: 36px;
  padding: 24px 0 30px;
  color: var(--muted, #777486);
  font-size: 13px;
  line-height: 1.6;
}
.site-footer-inner {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
}
.legal-footer {
  border-top: 1px solid var(--line, #e4e1ef);
  margin-top: 28px;
  padding-top: 18px;
}
.legal-footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  min-width: 0;
}
.legal-footer-links a {
  display: inline-block;
  max-width: 100%;
  color: var(--muted, #777486);
  font-size: 13px;
  line-height: 1.5;
  text-decoration: none;
  text-underline-offset: 3px;
  white-space: nowrap;
  flex: 0 0 auto;
}
.legal-footer-links a:hover,
.legal-footer-links a:focus-visible {
  color: var(--purple, #6b4eff);
  text-decoration: underline;
}
.legal-footer-separator {
  color: #a6a2b3;
  white-space: nowrap;
  flex: 0 0 auto;
}
.legal-footer-copyright {
  display: block;
  margin-top: 14px;
  color: #858294;
  font-size: 12px;
  line-height: 1.5;
}
@media (max-width: 600px) {
  .site-footer-inner { width: calc(100% - 40px); }
  .legal-footer { margin-top: 24px; padding-top: 16px; }
  .legal-footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .legal-footer-links a {
    font-size: 14px;
    white-space: nowrap;
    max-width: 100%;
  }
  .legal-footer-separator { display: none; }
  .legal-footer-copyright { margin-top: 16px; }
}
