/**
 * HealthWave – Social Share Bar Styles
 * FIX v1.0: File was missing — [phc_share] rendered with no stylesheet.
 * Core layout rules extracted from inline styles in functions.php + enhanced.
 * 
 */
.phc-share-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(0,0,0,0.07);
  margin-top: 2rem;
}
.phc-share-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0.25rem 0 0;
}
.phc-share-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.phc-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
  border: 1.5px solid var(--share-color, #9ca3af);
  background: transparent;
  color: var(--share-color, #6b7280);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  font-family: inherit;
}
.phc-share-btn:hover,
.phc-share-btn:focus {
  background: var(--share-color, #6b7280);
  color: #fff;
  outline: none;
}
