/* Reusable social share row (SocialShareLinks.cshtml) — include via layout or page */

.nr-share-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
}

.nr-share-links__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #374151;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.nr-share-links__btn:hover {
  background: rgba(186, 29, 72, 0.08);
  border-color: rgba(186, 29, 72, 0.35);
  color: #ba1d48;
}
