.social-share {
  width: 100%;
  max-width: 290px;
  margin: 14px auto 0;
  color: var(--muted);
  text-align: center;
}

.social-share__title {
  margin: 0 0 8px;
  color: var(--muted);
  font: 650 12px/1.25 "Segoe UI", Arial, sans-serif;
  letter-spacing: .02em;
}

.social-share__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.social-share__button {
  display: inline-grid;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, .72);
  color: var(--muted);
  font: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: border-color .16s ease, background-color .16s ease, color .16s ease, transform .16s ease;
}

.social-share__button:hover,
.social-share__button:focus-visible,
.social-share__button.is-copied {
  border-color: var(--accent);
  background: #fff;
  color: var(--accent);
  transform: translateY(-1px);
}

.social-share__button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.social-share__button svg {
  display: block;
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.social-share__button--reddit svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-share__status {
  min-height: 16px;
  margin: 5px 0 0;
  color: var(--accent);
  font-size: 11px;
  line-height: 16px;
}

@media (max-width: 480px) {
  .social-share {
    max-width: 270px;
    margin-top: 12px;
  }

  .social-share__button {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .social-share__button {
    transition: none;
  }
}
