/* Visibility is the default. Only successfully observed, unseen blocks are armed by JS. */
html[data-aerd-reveal='1'] [data-ar-reveal][data-ar-state='pending'] {
  opacity: 0;
}
/* Native focus and the common pause preference always take precedence. */
html[data-aerd-reveal='1'] [data-ar-reveal]:focus-within,
html[data-aerd-reveal='1'][data-rl-state='paused'] [data-ar-reveal],
html[data-aerd-reveal='1'][data-rl-state='reduced'] [data-ar-reveal] {
  opacity: 1 !important;
  translate: none !important;
}
@media (prefers-reduced-motion: reduce) {
  html[data-aerd-reveal='1'] [data-ar-reveal] {
    opacity: 1 !important;
    translate: none !important;
  }
}
@media print {
  html[data-aerd-reveal='1'] [data-ar-reveal] {
    opacity: 1 !important;
    translate: none !important;
  }
}
