/* Share Button */
.share-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: transparent;
  border: none;
  color: var(--ink-faint);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  transition: background-color var(--ease), border-color var(--ease), color var(--ease);
}

/* It had a transition for a hover that was never declared. */
.share-button:hover {
  color: var(--ink);
}

.share-icon {
  width: 14px;
  height: 14px;
  color: currentColor;
  stroke: currentColor;
}

/* With its label, at the end of an article, it matches the reaction buttons it
   now sits beside -- same border, same padding, same data face. */
.share-button--labelled {
  padding: 7px 12px;
  border: 1px solid var(--rule);
  color: var(--ink-soft);
}

.share-button--labelled:hover {
  border-color: var(--rule-strong);
  background-color: var(--raised);
  color: var(--ink-soft);
}

.share-button-label {
  font-family: var(--font-data);
  font-size: var(--fs-2xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
