.ty-article-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin: 23px 0 0;
  color: var(--muted, #6f746f);
  font-family: inherit;
}

.ty-article-share__label {
  margin-right: 3px;
  color: var(--muted, #6f746f);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.ty-article-share__control {
  appearance: none;
  box-sizing: border-box;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 11px;
  border: 1px solid var(--line-strong, rgba(47, 70, 56, 0.28));
  border-radius: 0;
  background: rgba(255, 255, 255, 0.35);
  color: var(--ink-soft, #465149);
  font-family: inherit;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.035em;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.ty-article-share__control:hover {
  border-color: var(--green, #667b68);
  background: rgba(255, 255, 255, 0.62);
  color: var(--green-deep, #2f4638);
}

.ty-article-share__control:focus-visible {
  outline: 2px solid var(--green, #667b68);
  outline-offset: 2px;
}

.ty-article-share[data-placement="flow"] {
  margin-bottom: 36px;
}

@media (max-width: 420px) {
  .ty-article-share {
    gap: 8px;
  }

  .ty-article-share__label {
    width: 100%;
    margin-right: 0;
  }
}

@media print {
  .ty-article-share {
    display: none !important;
  }
}
