.blog-share-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.blog-share-section .blog-share-buttons {
  align-items: flex-start;
}

.share-links .blog-share-buttons {
  align-items: flex-end;
}

.blog-share-buttons__label {
  font-weight: 700;
  font-size: 14px;
}

.blog-share-buttons__row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: 0.15s;
  text-decoration: none;
  font-family: inherit;
  line-height: 1;
  background: #fff;
}

.blog-share-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.blog-share-btn--facebook {
  color: #1877f2;
  border-color: #1877f2;
}

.blog-share-btn--facebook:hover {
  background: #1877f2;
  color: #fff;
}

.blog-share-btn--x {
  color: #0f172a;
  border-color: #0f172a;
}

.blog-share-btn--x:hover {
  background: #0f172a;
  color: #fff;
}

.blog-share-btn--instagram {
  color: #c13584;
  border-color: #c13584;
}

.blog-share-btn--instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  border-color: transparent;
}

.blog-share-buttons__hint {
  margin: 0;
  font-size: 12px;
  color: #1e3a8a;
  background: #eef3ff;
  padding: 8px 12px;
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.2s;
  max-width: 320px;
}

.blog-share-buttons__hint.is-visible {
  opacity: 1;
}
