.image-gallery__items{display:grid;gap:.5em;grid-auto-flow:row;grid-template-areas:"one one two two" "three three four four";grid-template-columns:repeat(4,1fr);grid-template-rows:repeat(2,1fr);margin-bottom:.5rem}.image-gallery__item:first-child{grid-area:one}.image-gallery__item:nth-child(2){grid-area:two}.image-gallery__item:nth-child(3){grid-area:three}.image-gallery__item:nth-child(4){grid-area:four}.image-gallery__item:nth-child(5){grid-area:five}.image-gallery__item:nth-child(6){grid-area:six}.image-gallery__item:nth-child(7){grid-area:seven}.image-gallery__item:nth-child(8){grid-area:eight}.image-gallery__item>img{height:100%;object-fit:cover;object-position:center;width:100%}@media screen and (min-width:768px){.image-gallery__items{grid-template-areas:"four four three three one" "four four three three two";grid-template-columns:repeat(5,1fr);grid-template-rows:repeat(2,1fr)}.image-gallery__items.even{grid-template-areas:"one three three four four" "two three three four four"}}