/* Shared footer social links. Scoped to avoid changing the existing footer grid. */
.footer .footer-socials {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin: 0 0 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.16);
}
.footer .footer-socials h4 { margin: 0; color: #fff; }
.footer .footer-socials-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer .footer-socials-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 44px;
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
  white-space: nowrap;
}
.footer .footer-socials-list a:hover { color: var(--orange,#F19000); border-color: currentColor; }
.footer .footer-socials-list a:focus-visible { outline: 3px solid var(--orange,#F19000); outline-offset: 3px; }
.footer .footer-socials-list a:active { background: rgba(255,255,255,.08); }
@media (max-width: 600px) {
  .footer .footer-socials { align-items: flex-start; flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  .footer .footer-socials-list a { transition: none; }
}
