.FormGroup--1_PlD {padding: 16px !important;}


/*///// PP MENU MOBILE 100% WIDTH ////*/
body:not(.pp-visualbuilder) .pp-slideover > .pp-block {width: 100vw !important;}


.copyright-footer.css-abs75a {
display: none;
}



/* ================================
   GALERIES GUTENBERG – VERSION CONTENEUR
   1 image  = large mais alignée contenu
   2+ images = galerie classique
================================ */

/* Base galerie */
.wp-block-gallery.is-layout-flex {
  gap: 1rem;
}

/* ===== CAS 1 : UNE SEULE IMAGE ===== */
.wp-block-gallery.is-layout-flex:has(> .wp-block-image:only-child)
> .wp-block-image {
  flex: 0 0 100%;
  max-width: 100%;
}

.wp-block-gallery.is-layout-flex:has(> .wp-block-image:only-child) img {
  width: 100%;
  height: auto;
}

/* ===== CAS 2 : PLUSIEURS IMAGES ===== */
.wp-block-gallery.is-layout-flex:not(:has(> .wp-block-image:only-child))
> .wp-block-image {
  flex: 1 1 calc(33.333% - 1rem);
}


/* ================================
   BLOCS IMAGE SIMPLES – LARGE CONTENEUR
================================ */

/* Le conteneur image prend toute la largeur dispo */
.wp-block-image {
  max-width: 100%;
}

/* Images simples uniquement (hors galeries) */
.wp-block-image:not(.wp-block-gallery *) img {
  width: 100%;
  height: auto;
}

/* Neutraliser les tailles WP */
.wp-block-image.size-large,
.wp-block-image.size-medium,
.wp-block-image.size-full {
  max-width: 100%;
}


/* ================================
   GALERIES GUTENBERG – RENDU ÉDITEUR
================================ */

/* Galerie croppée : comportement natif WP */
.wp-block-gallery.is-cropped > .wp-block-image {
  overflow: hidden;
  display: flex;
}

/* Image en galerie croppée = EXACTEMENT comme l’éditeur */
.wp-block-gallery.is-cropped > .wp-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: none;
}

