.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-200) !important;
  transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast), transform var(--t-fast);
}
.footer-social a:hover {
  background: var(--red-500);
  border-color: var(--red-500);
  color: white !important;
  transform: translateY(-2px);
}
.footer-social svg { width: 18px; height: 18px; display: block; }
