/* RedRoute Removals — TechText (vanilla port of React Bits Tech Text).
   The original is a block that fills its container (width/height 100%)
   with the canvas stretched over it. Here the host is a word inside
   running text, so:
   - the host stays inline (inline-block only so it has a measurable box;
     a single word has no internal break points, so wrapping and the
     baseline are unchanged);
   - the real text keeps doing the layout and is hidden (transparent)
     only once the canvas has painted the same glyphs on top of it;
   - the canvas is absolutely positioned over the word (size and offset
     set by tech-text.js, a little larger than the word so the selection
     frame and specks have room) and never takes pointer events. */
.tech-text{
  position: relative;
  display: inline-block;
}
.tech-text.tech-text--live{
  color: transparent;
}
.tech-text-canvas{
  position: absolute;
  display: block;
  pointer-events: none;
}
