.postcard.evenly-4 {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr 40px 1fr;
    gap: 10px;
    padding: 10px;
    width: 1100px;
    aspect-ratio: 1.5;
    background-color: white;
}

    .postcard.evenly-4 .postcard-photo {
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        border-radius: 6px; /* optional, but tasty */
    }

        .postcard.evenly-4 .postcard-photo:nth-child(1),
        .postcard.evenly-4 .postcard-photo:nth-child(2) {
            grid-row: 1;
        }

        .postcard.evenly-4 .postcard-photo:nth-child(3),
        .postcard.evenly-4 .postcard-photo:nth-child(4) {
            grid-row: 3;
        }


    .postcard.evenly-4 .postcard-greeting {
        grid-column: 1 / -1;
        grid-row: 2;

        align-self: center;
        justify-self: center;

        font-size: 45px;
        font-weight: 500;
        letter-spacing: 0.6px;
        color: #333;
        background: white;

        border-radius: 20px;

        pointer-events: none;
    }

    .postcard.evenly-4 .postcard-greeting span {
        font-weight: 700;
    }