/* ===========================
   RYCIA – BlurText Scrub (scroll)
   =========================== */

.ry-blurtext{
  display: flex;
  flex-wrap: wrap;
  gap: 0; /* el espacio lo maneja el JS con nbsp */
}

.ry-blurtext .ry-bt{
  display: inline-block;
  will-change: transform, filter, opacity;
}

/* Accesibilidad */
@media (prefers-reduced-motion: reduce){
  .ry-blurtext .ry-bt{
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }
}
