/* IZZY.LA — FILIGREE: the engraver's stock blocks (positioning shell).
   All geometry is solved in filigree.js from measured rects; this file only
   guarantees the overlay contract: absolutely positioned, never interactive,
   never in layout, gone on the printed press sheet. Ink lives in the canvas
   bitmaps — no colors declared here. */

.fl-piece {
  position: absolute;
  pointer-events: none;
}

.fl-piece canvas {
  display: block;
  width: 100%;
  height: 100%;
}

/* the press sheet (chunk G) prints without its stock blocks — the TRUE
   photograph and the copy own the printed page */
@media print {
  .fl-piece { display: none; }
}
