/** Shopify CDN: Minification failed

Line 16:0 Unexpected "<"
Line 18:16 Expected identifier but found whitespace
Line 18:18 Unexpected "{"
Line 18:28 Expected ":"
Line 18:41 Expected ":"
Line 55:4 Unexpected "<"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:image-custom (INDEX:35) */
<style>
      .custom-images-container {
        padding: {{ settings.padding }}px;
      }
      .custom-images-grid {
        display: flex;
        flex-wrap: wrap;
      }
      @media (min-width: 768px) {
        .custom-images-grid {
          justify-content: center;
          gap: 8px;
          padding: 80px;
          align-items: stretch; /* Assicura che tutte le immagini abbiano la stessa altezza */
        }
        .custom-images-grid div {
          flex-basis: 30%; /* O qualsiasi dimensione desiderata per il desktop */
          display: flex;
        }
        .custom-images-grid img {
          height: 100%;
          object-fit: cover; /* Assicura che l'immagine copra tutto lo spazio disponibile */
        }
      }
      @media (max-width: 767px) {
        .custom-images-grid div:nth-child(3) {
          flex-basis: 100%;
        }
        .custom-images-grid div {
          flex-basis: 50%;
        }
        .custom-images-grid {
      padding: 80px 20px;
  }
      }
      .custom-images-grid img {
        width: 100%;
        max-height: 590px;
      }
    </style>
/* END_SECTION:image-custom */