/* "Copied" confirmation for the blog post share buttons.
   Loaded by app/(site)/post/[slug]/page.tsx. BlogShareCopy sets `data-copied` on
   the clicked button for two seconds; this draws it as a small label above it.
   Anchored to the button's right edge because both share rows sit at the right of
   their column, so a centred label on the last icon would run off a phone screen. */
.blogpost_social-link {
  position: relative;
}

.blogpost_social-link[data-copied]::after {
  content: attr(data-copied);
  position: absolute;
  right: 0;
  bottom: calc(100% + 6px);
  padding: 4px 8px;
  border-radius: 6px;
  background-color: var(--black);
  color: #fff;
  font-size: 12px;
  line-height: 1.3;
  white-space: nowrap;
  pointer-events: none;
  z-index: 2;
}
