.location_wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
}

.location_wrapper .article {
    width: 31%;
    margin: 25px 0;
}

.location_wrapper .article .article_excerpt {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100% - 220px);
}

.list_dummy_card {
    height: 0px !important;
    padding-top: 0px !important;
    margin-top: 0px !important;
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
}

.buttons_container .button {
    margin-left: 0;
    width: 100%;
}

@media(max-width: 1050px) {
    .location_wrapper .article {
        width: 47%;
    }
}

@media(max-width: 750px) {
    .location_wrapper .article {
        width: 100%;
    }

    .location_wrapper .article:last-of-type {
        margin-bottom: 0;
    }

    .location_wrapper {
        display: block;
    }
}