/* CIBLE L'IFRAME DIRECTEMENT */

/* L'iframe qui a le style inline */
iframe#genii-iframe-core {
  width: 600px !important;
}

/* Le wrapper parent aussi */
#genii-core-wrapper {
  width: 600px !important;
}

/* Container à l'intérieur de l'iframe */
#core-widget {
  width: 100% !important;
  max-width: none !important;
}

/* Le contenu pour qu'il s'adapte */
.ai_flex.flex-d_column.h_100% {
  width: 100% !important;
}

/* 💻 DESKTOP SEULEMENT */
@media (min-width: 769px) {
  iframe#genii-iframe-core {
    width: 600px !important;
  }

  #genii-core-wrapper {
    width: 600px !important;
  }
}

/* 📱 MOBILE - Largeur normale */
@media (max-width: 768px) {
  iframe#genii-iframe-core {
    width: 100vw !important;
    max-width: 100vw !important;
  }

  #genii-core-wrapper {
    width: 100vw !important;
    max-width: 100vw !important;
  }

  /* Plein écran sur mobile */
  #core-widget {
    width: 100% !important;
    height: 100vh !important;
    border-radius: 0 !important;
  }
}