/* ============================================================
   WIWITV — Prévisualisation vidéo au survol (guides/POV)
   ============================================================ */

.guide-thumb {
  position: relative;
  overflow: hidden;
}

.guide-thumb__preview {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.guide-thumb__preview.is-visible {
  opacity: 1;
}
.guide-thumb__preview iframe {
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}