/* Let readers select prose so Copy can display the restriction notice.
   The scoped clipboard handler blocks copying; controls keep native behavior. */
[data-copy-protected] {
  -webkit-user-select: text;
  user-select: text;
}

.copy-notice {
  box-sizing: border-box;
  width: min(26rem, calc(100% - 2rem));
  max-height: calc(100dvh - 2rem);
  margin: auto;
  padding: 1.5rem;
  border: 1px solid #ead5e0;
  border-radius: 1.25rem;
  background: #fff;
  color: #242024;
  box-shadow: 0 1.5rem 5rem #24121f33;
  font: 1rem/1.6 system-ui, sans-serif;
  text-align: left;
  overflow: auto;
}
.copy-notice::backdrop { background: #20131c80; }
.copy-notice h2 { margin: 0 0 .65rem; font: 700 1.25rem/1.4 system-ui, sans-serif; color: #242024; }
.copy-notice p { margin: 0 0 1.25rem; font: inherit; color: #50434c; }
.copy-notice button {
  display: block;
  width: 100%;
  min-height: 48px;
  padding: .65rem 1rem;
  border: 0;
  border-radius: .7rem;
  background: #b62870;
  color: #fff;
  font: 600 1rem/1.5 system-ui, sans-serif;
  cursor: pointer;
}
.copy-notice button:focus-visible { outline: 3px solid #242024; outline-offset: 3px; }
