/* ── Site footer (shared across all pages) ── */

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--hv-border, #e0d8cc);
  color: var(--hv-text-soft, #6a6560);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.footer-social-link:hover {
  background: var(--hv-primary, #C5A028);
  border-color: var(--hv-primary, #C5A028);
  color: #fff;
}

.footer-social-link svg {
  width: 1.125rem;
  height: 1.125rem;
  fill: currentColor;
}
