/* Blog post sharing — share / copy link / print */
.share-bar {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 0.75rem 0 1.25rem;
}

.share-btn {
  border: 2px solid #161616;
  background: #fff;
  padding: 0.45rem 0.78rem;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: 4px 4px 0 #161616;
  transition: transform 120ms ease, box-shadow 120ms ease;
  text-decoration: none;
  color: #111111;
}

.share-btn:hover, .share-btn:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #161616;
  outline: none;
}

.share-btn[data-mode="primary"] {
  background: #046c86;
  border-color: #161616;
  color: #fff;
}
