/* /styles/footer/footer-social-share.css
   ChoiceSpin — footer social share links (SEO audit friendly + theme friendly)
*/

.footer__socialshare {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.footer__socialshare-label {
  font-size: 0.92rem;
  opacity: 0.9;
  margin-right: 2px;
}

.footer__socialshare-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1;
  border: 1px solid rgba(127, 127, 127, 0.28);
  background: rgba(127, 127, 127, 0.08);
  color: inherit;
  transition: background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.footer__socialshare-link:hover {
  background: rgba(127, 127, 127, 0.14);
  border-color: rgba(127, 127, 127, 0.42);
  transform: translateY(-1px);
  text-decoration: none;
}

.footer__socialshare-link:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

@media (max-width: 640px) {
  .footer__socialshare {
    margin-top: 10px;
    gap: 6px;
  }

  .footer__socialshare-label {
    width: 100%;
    margin-right: 0;
    margin-bottom: 2px;
  }

  .footer__socialshare-link {
    min-height: 28px;
    padding: 0 9px;
    font-size: 0.84rem;
  }
}