.images-preview-wrapper {
    position: relative;
  }
  
  .fixed-images {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: repeat(2, 1fr);
      grid-template-areas:
          "main main side1"
          "main main side2";
      gap: 10px;
  }
  
  
  .gallery-image {
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border-radius: 10px;
  }
  
  
  .gallery-image::after {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.15);
    opacity: 0;
    transition: all .3s ease-in-out;
    pointer-events: none;
  }
  
  
  .gallery-image:hover::after {
    opacity: 1;
  }
  
  .gallery-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }
  
  .fixed-images .gallery-image:first-child {
    grid-area: main;
  }
  
  .fixed-images .gallery-image:not(:first-child) {
    grid-area: side1;  
  }
  
  .fixed-images .gallery-image:last-child {
    grid-area: side2;  
  }
  
  .view-all-photos {
    position: absolute;
    bottom: 15px;
    right: 15px;
  }
  
  .view-all-photos button {
    border: none;
    backdrop-filter: blur(30px);
    background-color: rgb(255 255 255 / 68%);
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 16px;
    font-family: 'HostGrotesk-SemiBold';
    cursor: pointer;
  }
  
  .view-all-photos button::before {
      content: "";
      display: block;
      width: 100%;
      height: 100%;
      background: #fff;
      position: absolute;
      inset: 0;
      border-radius: 6px;
      z-index: -1;
      opacity: 0;
      transition: all .3s ease-in-out;
  }
  
  .view-all-photos button:hover::before {
    opacity: 1;
  }