.share-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}
.share-label {
  width: auto;
  margin-right: 0.2rem;
  color: var(--cream-50);
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.share-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.65rem 1rem;
  border: 1px solid var(--gold-20);
  background: rgba(13,31,20,0.72);
  color: var(--cream-70);
  cursor: pointer;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}
.share-button:hover {
  border-color: var(--gold);
  background: var(--bg-card);
  color: var(--gold);
}
.share-button:active { background: var(--bg-mid); }
@media (max-width: 480px) {
  .share-label { width: 100%; }
  .share-button { flex: 1 1 calc(50% - 0.65rem); }
}
