/* Grid */
.afbeelding-gallerij .grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 26px;
    row-gap: 17px;
}

.afbeelding-gallerij img {
    grid-column: span 1;
    grid-row: span 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    min-height: 284px;
}

.afbeelding-gallerij img:nth-child(8n + 1) {
    grid-row: span 2;
    grid-column: span 2;
    border-radius: 0 0 0 50px;
}
.afbeelding-gallerij img:nth-child(8n + 2) {
    grid-column: span 2;
    border-radius: 0 50px 0 0;
}
.afbeelding-gallerij img:nth-child(8n + 3) {
    border-radius: 0 0 50px 0;
}
.afbeelding-gallerij img:nth-child(8n + 4) {
    border-radius: 0 0 0 50px;
}
.afbeelding-gallerij img:nth-child(8n + 5) {
    grid-column: span 2;
    border-radius: 0 50px 0 0;
}
.afbeelding-gallerij img:nth-child(8n + 6) {
    grid-column: span 2;
    grid-row: span 2;
    border-radius: 0 0 0 50px;
}
.afbeelding-gallerij img:nth-child(8n + 7) {
    border-radius: 0 0 50px 0;
}
.afbeelding-gallerij img:nth-child(8n + 8) {
    border-radius: 0 0 0 50px;
}

@media screen and (max-width: 1180px) and (orientation: portrait),
screen and (max-width: 1024px) {
    /* Grid */
    .afbeelding-gallerij .grid {
        column-gap: 11px;
        row-gap: 7px;
    }

    .afbeelding-gallerij img {
        grid-column: span 2;
        grid-row: span 2;
        min-height: 165px;
    }

    .afbeelding-gallerij img:nth-child(4n + 1) {
        grid-row: span 4;
        grid-column: span 4;
        border-radius: 0 0 0 30px;
        height: 340px;
    }
    .afbeelding-gallerij img:nth-child(4n + 2) {
        grid-column: span 4;
        border-radius: 0 30px 0 0;
    }
    .afbeelding-gallerij img:nth-child(4n + 3) {
        border-radius: 0 0 30px 0;
    }
    .afbeelding-gallerij img:nth-child(4n + 4) {
        border-radius: 0 0 0 30px;
    }

}