body {
    background: #666;
    --hh : 100px;
    margin: 0;
}
* {box-sizing: border-box;}
.map-container {
    background: white;
    overflow: scroll;
    position: relative;
    margin-top: var(--hh);
    width: 100vw;
    height: calc(100vh - var(--hh));
}

.map {
    display: grid;
    grid-template-columns: repeat(17, 1fr);
    grid-template-rows: 4fr 1fr 4fr;
    border: 1px solid;
    gap: 4vw;
    width: 100%;
    height: 100%;
    
}
figure {
    margin: 0;
    grid-column: span 3;
    grid-row: span 4;
    grid-column: var(--c, 1) / span 3;
    grid-row: var(--r, 1 / span 2);
    display: flex;
    align-items: center;
}
span {
    display: block;
    aspect-ratio: 10/18;
    max-width: 300px;
}
img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

figure:nth-child(1){ --c:1; --r: 1 / span 2; align-items: end;}
figure:nth-child(2){ --c:3; --r: 3 }
figure:nth-child(3){ --c:5; --r: 1; align-items: start;}
figure:nth-child(4){ --c:7; --r: 2 / span 2; align-items: start;}
figure:nth-child(5){ --c:11; --r:  1 / span 2; align-items: end;}
figure:nth-child(6){ --c:10; --r: 3; align-items: end;}
figure:nth-child(7){ --c:15; --r: 2 / span 2; align-items: start;}