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

.article {
    padding: 15px;
    border-radius: 10px;
    box-sizing: border-box;
    width: 31%;
    margin: 25px 0;
    background-color: var(--white);
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.14);
}

.map_options .search_bar {
    width: 100%;
}

.gfo_article_wrapper .article {
    width: 100%;
    margin-top: 0;
    margin-bottom: 20px;
}

.thumbnail {
    width: 100%;
    height: 220px;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

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

.article_excerpt h3 {
    color: var(--black);
    margin-top: 10px;
    margin-bottom: 0;
}

.article_excerpt p {
    color: var(--black);
    display: flex;
    align-items: flex-start;
}

.article_excerpt i {
    display: flex;
    justify-content: center;
    width: 40px;
    margin-left: -13px;
    margin-top: 4px;
}

.producer_wrapper .article:last-of-type {
    margin-bottom: 20px;
}

.gfo_article_wrapper .article_excerpt i {
    margin-left: 0;
}

.article_excerpt p:last-of-type {
    margin-bottom: 0;
}

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

.producer_wrapper .article .bronze {
    margin-left: 0;
} 

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

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

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

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

    .recipe_wrapper {
        display: block;
    }
}