.share-button {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}

.share-button__label {
  display: flex;
  flex-shrink: 0;
  gap: 15px;
  align-items: center;
  color: rgb(var(--color-text));
}

.share-button__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.share-button__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: rgb(var(--color-text));
  text-decoration: none;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.share-button__social-link:hover {
  color: rgb(var(--color-button-background));
  background-color: rgba(var(--color-text), 0.05);
  border-color: rgba(var(--color-text), 0.3);
}

.share-button__social-icon {
  display: block;
  width: 24px;
  height: 24px;
}
