.product-overview-general__list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.product-overview-general__list-item {
    display: flex;
    /* due to issues in IOS 10+ we cannot use 1 1 50% - it won't wrap the flex children correctly
     * AND due to issues in IE 11 we cannot use 0 0 100% - see https://github.com/philipwalton/flexbugs#flexbug-7 */
    flex: 0 0 auto;
    width: 100%;
    padding: 0 15px;
    /* required to avoid content to dictate item width and maybe cause overflow, due to too long words for example */
    overflow: hidden;
    transition: opacity .3s;
}

@media ( min-width: 768px ) {
    .product-overview-general__list-item {
        width: 50%;
    }
}

@media ( min-width: 1200px ) {
    .product-overview-general__list-item {
        width: 33.333%;
    }
}

@media ( min-width: 1600px ) {
    .product-overview-general--vehicles .product-overview-general__list-item {
        width: 25%;
    }
}
