.behind {
    margin: 120px 30px;
    display: grid;
    justify-content: center;
    /* grid-template-columns: repeat(auto-fit, 170px); */
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    grid-auto-rows: 170px;
    grid-auto-flow: dense;
    gap: 2rem;
}

.behind img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.behind h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 3.5rem;
    font-weight: 500;
    margin-bottom: 35px;
}

.landscape {
    grid-column: span 2;
}

.portrait {
    grid-row: span 2;
}

img.large {
    grid-column: span 2;
    grid-row: span 2;
}