/* Shared "legal links" row styling for the footer bottom bar.
   Loaded by both the Astro Footer component and the static-page
   footer.html partial so the design stays identical everywhere. */

.footer-legal-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 6px;
  padding-top: 24px;
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-legal-nav a {
  position: relative;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal-nav a:hover {
  color: #c9a961;
}

.footer-legal-nav a:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-50%);
}
