/* ─────────────────────────────────────────────
   Focus Reading Mode – focus-reading-mode.css
   Apply class "focus-reading" to any element.
───────────────────────────────────────────── */

/* Every sentence span — faded by default.
   We ONLY touch opacity, never color, so the
   theme's typeface color is always preserved. */
.focus-reading .frm-sentence {
    display: inline;
    opacity: 0.25;
    transition: opacity 0.25s ease;
}

/* Links inside faded sentences — same opacity via parent */
.focus-reading .frm-sentence a {
    color: inherit;
}

/* The active (center-locked) sentence — full opacity */
.focus-reading .frm-sentence.frm-active {
    opacity: 1;
}

/* Smooth scroll behaviour */
html {
    scroll-behavior: smooth;
}
