.share-this-block {
  display: inline-flex;
  align-items: center;
  padding: 0;
  background: transparent;
}

.share-this-links {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  line-height: 0;
}

a.share-this-link {
  width: var(--share-this-button-size, 24px);
  height: var(--share-this-button-size, 24px);
  max-width: 24px;
  max-height: 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: rgba(127, 127, 127, 0.22);
  color: var(--share-this-icon-color, #b3b3b3);
  transition: color 0.2s ease, background-color 0.2s ease;
}

a.share-this-link:hover,
a.share-this-link:focus-visible {
  background: rgba(127, 127, 127, 0.34);
  color: var(--share-this-icon-hover-color, #ffffff);
}

a.share-this-link svg {
  display: block;
  width: min(var(--share-this-icon-size, 16px), 16px);
  height: min(var(--share-this-icon-size, 16px), 16px);
  fill: currentColor;
}

.share-this-block-placeholder {
  padding: 16px;
  border: 1px dashed #ccd0d4;
  border-radius: 4px;
  background: #f8f9fa;
  color: #1d2327;
  font-size: 14px;
  line-height: 1.4;
}
