/* ── Social Media Sharing ────────────────────────────── */

.share-section {
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.share-label {
  display: block;
  font-size: 0.85rem;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.share-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text);
  transition: all 0.2s;
  text-decoration: none;
  font-family: inherit;
}

.share-btn:hover {
  border-color: var(--red);
  color: var(--red);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.share-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
