.wall__container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    height: fit-content;
}

.wall__item{
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    overflow: hidden;
    text-decoration: none;
    color: white;
    width: 100%;
    flex: auto;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}
.wall__container .col-left, .wall__container .col-right {
    width: 48.5%;
}

.col-left .wall__item, .col-right .wall__item {
    width: 100%;
    height: 182px;
    margin-bottom: 20px;
}

/*.col-left .wall__item:nth-child(3n) {*/
/*    height: 384px;*/
/*}*/

.col-left .wall__item.format_bandeau, .col-right .wall__item.format_bandeau{
    height: 182px;
}

.col-left .wall__item.format_carre, .col-right .wall__item.format_carre{
    height: 384px;
}

/*.col-right .wall__item:first-child {*/
/*    height: 384px;*/
/*}*/

/*.col-right .wall__item:nth-child(4n) {*/
/*    height: 384px;*/
/*}*/

.wall__item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.4;
    z-index: 0;
    transition: all 200ms ease-in-out;
}

.wall__item:hover::before{
    opacity: 0.2 !important;
}

.wall__item__text-top-left {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    text-transform: uppercase;
    transition: all 200ms ease-in-out;
    font-weight: bold;
    color: black;
    background-color: #ffc845;
    padding: 10px;
    line-height: 1em;
}

.wall__item__text-bottom-right {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.2);
    display: inline-block;
    padding: 10px;
    line-height: 1.2em;
    max-width: 80%;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    transition: all 200ms ease-in-out;
    font-weight: bold;
    color: white;
}

.wall__item:hover .wall__item__text-bottom-right {
    background:#212322;
}

.wall__item__subtext-bottom-right {
    padding: 0 !important;
    background: none !important;
    backdrop-filter: none !important;
    text-transform: none !important;
    font-weight: normal !important;
    color: #ffc845;
    display: inline-block !important;
    margin-top: 3px;
    transition: all 200ms ease-in-out;
}

.wall__item__link {
    background-color: #ffc845;
    line-height: 1em;
    color: black;
    text-decoration: none;
    font-weight: 600;
    padding: 13px 12px 11px;
    font-size: 16px;
    border-bottom: 0;
    margin: 0;
    text-align: center;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    transition: all 200ms ease-in-out;
    box-sizing: border-box;
    height: 182px;
    margin-bottom: 20px;
}

.wall__item__link:hover{
    color: black;
    border: 1px solid #ffc845;
}

.wall__item__link:hover {
    background-color: #fff;
}

@media screen and (max-width: 700px){
    .wall__container .col-left, .wall__container .col-right {
        width: 100%;
    }

    .col-left .wall__item, .col-right .wall__item {
        height: 160px !important;
    }

    .wall__item__link {
        height: 160px;
    }
}
