/* Social Sharing Buttons — Blog Posts */
.share-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 1.25rem 0;
  margin: 2rem 0 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.share-bar__label {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  color: var(--color-text-muted, #aaa);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  transition: opacity 0.2s;
}

.share-btn:hover { opacity: 0.85; }

.share-btn--twitter  { background: #1da1f2; }
.share-btn--reddit   { background: #ff4500; }
.share-btn--discord  { background: #5865f2; }
.share-btn--copy     { background: #555; cursor: pointer; border: none; }
.share-btn--copy.copied { background: #28a745; }
