.article-sharing {
  width: min(var(--article), calc(100% - 56px));
  margin: 0 auto 70px;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
}

.article-sharing-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.article-sharing-label {
  width: 100%;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.article-share-link,
.article-share-button {
  appearance: none;
  width: 44px;
  height: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--blue);
  font: inherit;
  font-size: 0;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease,
    transform 0.2s ease;
}

.article-share-link svg,
.article-share-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.article-share-link[data-share-pinterest] svg {
  fill: currentColor;
  stroke: none;
}

.article-share-link:hover,
.article-share-button:hover,
.article-share-link:focus-visible,
.article-share-button:focus-visible {
  border-color: var(--blue);
  background: var(--blue-soft);
  color: var(--blue-dark);
  transform: translateY(-2px);
}

.article-share-status {
  width: 100%;
  min-height: 1.3em;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

@media (max-width: 760px) {
  .article-sharing {
    width: calc(100% - 32px);
    margin: 0 auto 48px;
    padding-top: 22px;
  }

  .article-share-link,
  .article-share-button {
    width: 46px;
    height: 46px;
    min-height: 46px;
  }
}
