/**
 * 
*/
.sc-list{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px -30px;
}
.sc-list>article{
    display: flex;
    margin-bottom: 30px;
}

.sc-list .item{
    display: flex;
    width: 100%;
    max-width: 425px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 15px 0px rgba(75, 102, 110, 0.2);
}

.sc-list .thumb{
    width:33.333%;
    flex-shrink: 0;
    position: relative;
}
.sc-list .thumb img{
    position: absolute;
    top:0;
    left:0;
    height: 100%;
    width:100%;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.sc-list .content{
    padding:15px;
}
.sc-list .sc_loop-title{
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
}
.sc-list .excerpt p{
    font-size: .875rem;
    margin-bottom: 0;
}


@media (max-width: 450px){
    .sc-list{
        margin-bottom: -15px;
    }
    .sc-list .product{
        margin-bottom: 15px;
    }
    .sc-list .thumb{
        width:50%;
    }
}

/**
 * hover
*/
.sc-list .thumb:after{
    content: '';
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height: 100%;
    background-color: #122034;
    opacity: .5;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    transition: opacity .3s;
}
.sc-list .sc_loop-title{
    transition: color .3s;
}
@media (min-width: 992px){
    .sc-list a:hover .thumb:after,
    .sc-list a:focus .thumb:after{
        opacity:0;
    }
    .sc-list a:hover .sc_loop-title,
    .sc-list a:focus .sc_loop-title{
        color:#122034;
    }
}

/** - */
div.cat-desr {
    margin-bottom: 10%;
}
.cat-desr .page-title{
    font-size: 24px;
}
.cat-desr .archive-description{
    margin-top: 20px;
}
.prod-list .block-header {
    width: 100%;
    text-align: center;
}

@media (max-width: 991px){
    .cat-posts{
        display: none;
    }
}