/* General */
.wrapper {
    display: grid;
    grid-gap: 10px;
    margin-bottom: 10px;
}
.box {
    background: none;
    border-radius: 5px;
    padding: 20px;
    font-size: 150%;
    background-position: center center;
    background-size: cover;
    position: relative;
}
.box a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}


/* Wrappers */
.wrapper_1 {
    grid-template-columns: repeat(3,1fr);
}


/* Boxes */
.box_1 {
    grid-column: 1;
    grid-row: 1/3;
}

.box_2 {
    grid-column: 2 / span 2;
    grid-row: 1;
    aspect-ratio: 16/9;
}

.box_3 {
    grid-column: 2;
    grid-row: 2;
    aspect-ratio: 1/1;
}

.box_4 {
    grid-column: 3;
    grid-row: 2;
    aspect-ratio: 1/1;
}


@media (max-width: 767px) {
    .wrapper_1 {
        grid-template-columns: repeat(2,1fr);
    }

    .box_1 {
        grid-column: 1;
        grid-row: 1/3;
    }
    .box_2 {
        grid-column: 1 / span 2;
        grid-row: 3;
    }
    .box_3 {
        grid-column: 2;
        grid-row: 1;
    }
    .box_4 {
        grid-column: 2;
        grid-row: 2;
    }
}