/* Footer-only social links. No changes to the existing page layout. */
.footer .footer-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}
.footer .footer-social-label {
  color: #f7f1e9;
  font: 600 11px/1.5 'Manrope', sans-serif;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.footer .footer-social-links {
  display: flex;
  gap: 10px;
}
.footer .footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  color: #f7f1e9;
  background: rgba(255, 255, 255, .04);
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}
.footer .footer-social-link svg {
  display: block;
  width: 21px;
  height: 21px;
  flex-shrink: 0;
}
.footer .footer-social-link:hover,
.footer .footer-social-link:focus-visible {
  color: #12110f;
  background: #ff8752;
  border-color: #ff8752;
  transform: none;
}
.footer .footer-social-link:focus-visible {
  outline: 2px solid #f7f1e9;
  outline-offset: 4px;
}
@media (prefers-reduced-motion: reduce) {
  .footer .footer-social-link { transition: none; }
}
