.gallery-wrap {
width: 900px;
display: grid;
grid-template-columns: 1fr 1fr 1fr;
align-items: start;
justify-items: start;
// grid-template-columns: 1fr 2fr 1fr 1fr 1fr 1fr 1fr 1fr 2fr 1fr;
grid-gap: 90px;
&__item {
height: 200px;
background-color: brown;
img {
width: 100%;
height: auto;
}
&:nth-child(2) {
grid-column: 1/3;
grid-row: 1/3;
}
}
}