/* Copy-link share button — lives in the .poem-share block beside the
   (conditionally shown) Facebook button. Always available to every
   viewer: a generic, platform-agnostic way to share the poem URL. */

.poem-full .poem-share__actions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--np-space-3);
  flex-wrap: wrap;
}

.poem-full .poem-share__copy {
  display: inline-flex;
  align-items: center;
  gap: var(--np-space-1);
  margin: 0;
  padding: 6px 14px;
  font-family: var(--np-font-sans);
  font-size: var(--np-text-sm);
  font-weight: 500;
  line-height: 1;
  color: var(--np-text-secondary);
  background: transparent;
  border: 1px solid var(--np-border-tertiary, rgba(0, 0, 0, 0.15));
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.poem-full .poem-share__copy:hover {
  color: var(--np-text-primary);
  border-color: var(--np-border-secondary, rgba(0, 0, 0, 0.30));
}

.poem-full .poem-share__copy:focus-visible {
  outline: 2px solid var(--np-border-focus, #D85A30);
  outline-offset: 2px;
}

.poem-full .poem-share__copy svg {
  display: block;
  width: 16px;
  height: 16px;
}

/* Brief confirmation state after a successful copy. */
.poem-full .poem-share__copy.is-copied {
  color: var(--np-border-focus, #D85A30);
  border-color: var(--np-border-focus, #D85A30);
}
