.wide-cell{
    float: left;
    margin: 0px 20px 0px 0px;
    width: 600px;
    display: -webkit-inline-flex;
    display: inline-flex;
    flex-direction: column;
}

.wide-preview{
    position: relative;
    display: block;
    margin-bottom: 20px;
    border-radius: 6px;
    background-color: #2d2e36;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.26);
    transition-duration: 150ms;
}

.wide-preview .image{
    border-radius: 6px;
    overflow: hidden;
}

.wide-preview .text {
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    height: 217px;
    padding: 25px 20px 20px 335px;
    background: -moz-linear-gradient(left, rgba(0, 0, 0, 0) 17%, rgba(45, 46, 54, 1) 48%, rgba(45, 46, 54, 1) 100%);
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 17%, rgba(45, 46, 54, 1) 48%, rgba(45, 46, 54, 1) 100%);
    background: linear-gradient(to right, rgba(0, 0, 0, 0) 17%, rgba(45, 46, 54, 1) 48%, rgba(45, 46, 54, 1) 100%);
    /*filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#002d2e36', endColorstr='#2d2e36', GradientType=1);*/
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}
.wide-preview .text .category-label {
    display: inline-block;
    height: 30px;
    line-height: 30px;
    padding: 0 15px;
    margin-bottom: 15px;
    border-radius: 4px;
    background-color: #da4242;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: white;
}
.wide-preview .text .title {
    font-weight: 700;
    transition-duration: 150ms;
    padding-left: 5px;
    font-size: 20px;
    color: white;
    transform: scale(1.1, 1);
    font-family: 'Roboto', sans-serif;
    line-height: initial;
}
.wide-preview .text_category{
    display: -webkit-flex;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: flex-end;
}
.wide-preview .text_category .category-label{
    margin-bottom: 0px;
}

.wide-preview .image {
    display: block;
    width: 325px;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    overflow: hidden;
}
.wide-preview .image img{
    width: 100%;
    aspect-ratio: 3 / 2;
}

@media screen and (max-width: 1219px) {
    .wide-cell {
        width: 470px;
    }

    .wide-preview .image {
        width: 260px;
    }

    .wide-preview .text {
        height: 174px;
        padding: 15px 10px 18px 230px;
    }
    .wide-preview .text .category-label {
        margin-bottom: 8px;
    }
}

@media screen and (min-width: 728px) and  (max-width: 1000px) {
    .hide-on-1000 {
         display: none !important;
     }

    .wide-preview .text {
        height: 250px;
        padding: 15px 10px 18px 250px;
        background: linear-gradient(to right, rgba(0, 0, 0, 0) 17%, rgba(45, 46, 54, 1) 60%, rgb(11, 11, 14) 100%);
    }

    .wide-preview .image {
        width: 375px;
    }
}

@media screen and (max-width: 728px)
{
    .wide-cell
    {
        margin-right: 15px;
    }
}
