/* =Headlines
-------------------------------------------------------------- */
.category-listing-headline {
    clear: both;
    display: block;
}

.product-listing-headline {
    margin: 20px 0;
    clear: both;
    display: block;
}

/* =List elements
-------------------------------------------------------------- */
ul.category-listing {
    display: flex;
    flex-wrap: wrap;
    justify-content: baseline;
    padding: 0;
    list-style: none;
    margin-left: 0;
    clear: both;
}

ul.category-listing li:first-child {
    clear: both;
}

ul.category-listing li {
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: .25rem;
    display: flex;
    flex-direction: column;
    float: left;
    padding: 0;
    position: relative;
    width: 12%;
    margin: 0 0.25% 1em;
}

ul.category-listing li h2 {
    font-size: 15px;
    color: #000;
    text-align: center;
    padding: 10px 10px;
}

ul.category-listing li img {
    border-bottom: 1px solid rgba(0,0,0,0.125);
    border-radius: 0;
}

/* =Mobile Queries
-------------------------------------------------------------- */
@media screen and (max-width:992px) {
    ul.category-listing li {
        width: 24%;
    }
}

@media screen and (max-width:376px) {
    ul.category-listing li {
        width: 49%;
    }
}

@media screen and (max-width:321px) {
    ul.category-listing li {
        width: 99%;
    }
}