.footer-social-block {
  margin-top: 1.25rem;
}

.footer-social-title {
  margin-bottom: 0.65rem;
  color: hsl(var(--secondary));
  font-family: var(--font-heading, inherit);
  font-size: 0.875rem;
  font-weight: 600;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.footer-social-link {
  display: inline-flex;
  width: 2.625rem;
  height: 2.625rem;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary-foreground) / 0.78);
  border: 1px solid hsl(var(--primary-foreground) / 0.2);
  border-radius: 9999px;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.footer-social-link:hover {
  color: hsl(var(--secondary-foreground));
  background-color: hsl(var(--secondary));
  border-color: hsl(var(--secondary));
  transform: translateY(-2px);
}

.footer-social-link:focus-visible {
  color: hsl(var(--secondary-foreground));
  background-color: hsl(var(--secondary));
  border-color: hsl(var(--secondary));
  outline: 2px solid hsl(var(--secondary));
  outline-offset: 3px;
}

.footer-social-icon {
  width: 1.2rem;
  height: 1.2rem;
}

@media (prefers-reduced-motion: reduce) {
  .footer-social-link {
    transition: none;
  }

  .footer-social-link:hover {
    transform: none;
  }
}
