#page-home {
  display: flex;
  flex-direction: column;
  font-family: 'Montserrat', sans-serif;
  width: 100%;
  box-sizing: border-box;

  p {
    align-self: center;
    color: #5c1c1c;
    font-size: 1.2rem;
    margin: 0 0 4rem 0;
    font-style: italic;
    font-weight: bold;
    text-align: justify;
    padding: 0 1rem;
    max-width: 1100px;
  }

  .container-nouveautes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4rem;
    padding: 2rem 2.5rem 5rem 2.5rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

    .item {
      display: block;
    }

    img {
      display: block;
      width: 100%;
      height: auto;
      max-width: 600px;
      margin: 0 auto;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
      transition: transform 0.25s ease;
    }

    img:hover {
      transform: scale(1.02);
    }
  }
  */
  
  /* Solution avec flexbox */
  .container-temporaire {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    margin: 0 auto;
    gap: 2rem;
    padding: 2rem;
    padding-top: 1rem;
    
    .image-gauche, .image-droite, .image-centre {
      height: 700px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: visible;
    }
    
    .image-gauche, .image-droite {
      width: 28%;
      
      img {
        width: 100%;
        height: 100%;
        display: block;
        filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.2)) drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15));
        object-fit: contain;
      }
    }
    
    .image-centre {
      width: 28%;
      
      img {
        width: 100%;
        height: 100%;
        display: block;
        filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.2)) drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15));
        object-fit: contain;
      }
    }
  }
}

@media screen and (max-width: 900px) {
  #page-home {
    .container-nouveautes {
      grid-template-columns: 1fr;
      gap: 6rem;
      padding: 0 1rem 4rem 1rem;
    }
  }
}



