/* ─────────────────────────────────────────────────────────────
 * share-row.css — Unified share row used by every detail page.
 * Rendered by template-parts/human-appeal/share-row.php and
 * applied by single-{post,event,appeals,fundraisers,
 * community-programs}.php so the social icons are identical
 * across News, Event, Appeal, Fundraiser and Community pages.
 * ───────────────────────────────────────────────────────────── */

.ha-share-row {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.ha-share-row-label {
  color: var(--text);
  font-weight: 700;
  font-size: 15px;
  font-family: 'Oakes Grotesk', 'Inter', sans-serif;
}

.ha-share-row-icons {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.ha-share-row-btn {
  width: var(--space-6);
  height: var(--space-6);
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green-dark);
  display: grid;
  place-items: center;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
  text-decoration: none;
  flex-shrink: 0;
  padding: 0;
  line-height: 1;
}

.ha-share-row-btn:hover,
.ha-share-row-btn:focus-visible {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
  outline: none;
}

.ha-share-row-btn i[data-lucide],
.ha-share-row-btn svg {
  width: var(--space-4);
  height: var(--space-4);
  pointer-events: none;
}

@media (max-width: 575px) {
  .ha-share-row {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
  }
}
