.parent {
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-template-rows: repeat(5, 1fr);
grid-column-gap: 0px;
grid-row-gap: 0px;
}

.div1 { grid-area: 1 / 1 / 3 / 2; }
.div2 { grid-area: 1 / 2 / 3 / 3; }
.div3 { grid-area: 1 / 3 / 6 / 5; }
.div4 { grid-area: 3 / 1 / 6 / 3; }

.div1, .div2, .div3, .div4 {
  padding: 10px;
}
.hytte_product_img_small {
  width: 100%; /* Adjust width as necessary */
  height: auto;
  display: block;
}

.hytte_product_img_big {
  width: 100%; /* Adjust width as necessary */
  height: 100%;
  display: block;
}

.inspiration-image {
  width: 100%; /* Will fill the div4 */
  height: auto;
  display: block;
}
