/* Shared social row. Flex wrapping accommodates five or more real accounts. */
footer.site .footer-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.12);
}
footer.site .footer-social-label {
  color: #c4cdd8;
  font-size: .8rem;
  font-weight: 700;
}
footer.site .social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  max-width: 100%;
}
footer.site .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  color: #c4cdd8;
  border-radius: 4px;
}
footer.site .social-links svg { display: block; }
footer.site .social-links a:hover { color: #fff; background: rgba(255,255,255,.08); }
footer.site .social-links a:focus-visible { color: #fff; outline: 3px solid var(--amber); outline-offset: 2px; }
footer.site .footer-social + .foot-bottom { border-top: 0; margin-top: .75rem; padding-top: 0; }
