/* Shared by the homepage/Stories and product/privacy footer layouts. */
.footer-identity {
  display: grid;
  justify-items: start;
  gap: 1rem;
  min-width: 0;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem;
  max-width: 100%;
}

.social-links a {
  display: inline-flex;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: inherit;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 160ms ease;
}

.social-links svg {
  display: block;
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-links a:focus-visible {
  opacity: 1;
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

@media (hover: hover) and (pointer: fine) {
  .social-links a:hover { opacity: 1; }
}

@media (max-width: 1000px) {
  .product-footer .footer-identity {
    justify-self: center;
    justify-items: center;
  }
}

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