/* Narration (assets/js/narration-player.js): no player window. Click a statement's label to
   hear that statement, the post title to hear the whole post, anywhere to stop. */

/* Clickable labels and title. */
.post-body .math-label-anchor[data-nrp],
.post-title[data-nrp] {
  cursor: pointer;
}
.post-body .math-label-anchor[data-nrp]:hover,
.post-title[data-nrp]:hover {
  text-decoration: none;
}

/* Reading focus: while playing, everything but the section being read fades — labels,
   links and equations included (post.css colours those explicitly). */
.nrp-reading .post-body > .nrp-dim,
.nrp-reading .post-body > .nrp-dim * { color: #a8a8ad !important; }
.nrp-reading .post-body .math-label-anchor[data-nrp]:hover,
.nrp-reading .post-title[data-nrp]:hover { text-decoration: none; }

@media (prefers-color-scheme: dark) {
  .nrp-reading .post-body > .nrp-dim,
  .nrp-reading .post-body > .nrp-dim * { color: #6e6e73 !important; }
}
@media (prefers-reduced-motion: reduce) {
  .post-body > *, .post-body > * * { transition: none; }
}
