.feed-post-menu {
  gap: 12px;
}

.feed-post-menu-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.feed-post-menu-heading h2 {
}

.feed-post-menu-heading p {
  margin-top: 2px;
  color: var(--color-text-secondary);
}

.feed-post-menu-heading > button {
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  background: var(--color-bg-subtle);
  border-radius: var(--radius-circle);
}

.feed-post-menu-heading svg {
  width: 18px;
  height: 18px;
}

.feed-post-menu-actions {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-card);
}

.feed-post-menu-actions > button {
  display: grid;
  min-height: 58px;
  padding: 8px 12px;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  background: var(--color-bg-surface);
  border-bottom: 1px solid var(--color-border-subtle);
  text-align: left;
}

.feed-post-menu-actions > :last-child {
  border-bottom: 0;
}

.feed-post-menu-actions > button > svg {
  width: 19px;
  height: 19px;
  color: var(--color-text-secondary);
}

.feed-post-menu-actions > button > span {
  display: grid;
  gap: 3px;
}

.feed-post-menu-actions strong {
}

.feed-post-menu-actions small {
  color: var(--color-text-secondary);
}

.feed-post-menu-actions .is-danger,
.feed-post-menu-actions .is-danger > svg {
  color: var(--color-danger);
}
