.article-share-tools {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 26px 0 34px;
  padding: 14px 0;
  border-top: 1px solid #d9d9d5;
  border-bottom: 1px solid #d9d9d5;
  font-family: "Open Sans", Arial, sans-serif;
}

.article-share-tools > strong {
  color: #585854;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.article-share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.article-share-action {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid #d0d0cc;
  border-radius: 999px;
  background: #fff;
  color: #171717;
  cursor: pointer;
  font: 700 11px/1 "Open Sans", Arial, sans-serif;
  text-decoration: none;
  transition: border-color .18s ease, color .18s ease, background .18s ease, transform .18s ease;
}

.article-share-action svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: currentColor;
}

.article-share-action:hover,
.article-share-action:focus-visible {
  border-color: #c70027;
  color: #c70027;
  transform: translateY(-1px);
}

.article-share-action--whatsapp:hover,
.article-share-action--whatsapp:focus-visible {
  border-color: #128c4a;
  color: #128c4a;
}

.article-share-action.is-copied {
  border-color: #128c4a;
  background: #edf8f1;
  color: #087139;
}

@media (max-width: 700px) {
  .article-share-tools {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin: 22px 0 28px;
  }

  .article-share-actions {
    width: 100%;
  }

  .article-share-action {
    width: 40px;
    padding: 8px;
  }

  .article-share-action span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
}
