.share-slot {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.retention-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
}

/* Меню «Ещё» должно выходить за границы карточки целиком. */
.watch-card,
.inline-player-card {
  overflow: visible;
}

.player-stage,
.inline-player-stage {
  border-radius: 23px 23px 0 0;
}

.share-heading {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

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

.share-button {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 12px;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.share-button:hover,
.share-button:focus-visible {
  border-color: var(--blue);
  color: var(--blue);
}

.share-button.is-primary {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

@media (max-width: 720px) {
  .player-stage,
  .inline-player-stage {
    border-radius: 15px 15px 0 0;
  }

  .share-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .share-button {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

}
