/* ================================================ */
/* MAGIC-OZ — RÈGLES CSS BASES                      */
/* Règles fondamentales de l'écosystème Magic-Oz.   */
/* Ne jamais redéclarer dans les blocs HTML.        */
/* ================================================ */

/* ================================================ */
/* TITRES DE PAGE — Masquer                         */
/* ================================================ */
.entry_title, .page-title { display: none !important; }
.header-empty-block {
    display: none !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
}

/* ================================================ */
/* UTILITAIRES — Visibilité responsive              */
/* ================================================ */
@media (max-width: 768px) {
  .desktop-only,
  .desktop-only * {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .mobile-only,
  .mobile-only * {
    display: none !important;
  }
}

/* ================================================ */
/* SR-ONLY — Accessibilité & SEO — Global           */
/* Utilisé par tous les blocs HTML du site.         */
/* ================================================ */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ================================================ */
/* NL-VIDEO-WRAP — Blocs vidéo autonomes            */
/* Utilisé par tous les blocs nl-video-wrap du site.*/
/* ================================================ */
.nl-video-wrap {
  display: none;
  position: absolute;
  z-index: 9999;
  line-height: 0;
  overflow: visible;
}

/* ================================================ */
/* NL-MEDIA-WRAP — Boutons image autonomes          */
/* Utilisé par tous les blocs nl-media-wrap du site.*/
/* ================================================ */
.nl-media-wrap {
  display: none;
  position: absolute;
  z-index: 9999;
  line-height: 0;
  overflow: visible;
}
.nl-media-wrap a { display: block; line-height: 0; }
.nl-media-wrap img {
  display: block !important;
  width: auto !important;
  height: auto !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: none !important;
  transition: transform 0.3s ease;
}
.nl-media-wrap:hover img {
  transform: scale(1.02);
  filter: drop-shadow(0px 4px 10px rgba(0,0,0,0.25));
  opacity: 0.92;
}

/* ================================================ */
/* NL-SLIDER-PC — Slider desktop                    */
/* Utilisé par tous les blocs nl-slider-pc du site. */
/* ================================================ */
.nl-slider-pc {
  display: none;
}
