
/*bread-now-list-item*/
.bread-now-list-item {
    display: block;
    position: relative;
    display: flex;
    margin-bottom: 36px;
}

.bread-now-list-item .img {
    flex: 1;
    margin-right: 24px;
    overflow: hidden;
    position: relative;
    display: block;
}

.bread-now-list-item .img:after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0,0,0,.5));
    content: '';
    opacity: 0;
    -webkit-transition: opacity 100ms ease-out, height 100ms ease-out;
    -moz-transition: opacity 100ms ease-out, height 100ms ease-out;
    -ms-transition: opacity 100ms ease-out, height 100ms ease-out;
    -o-transition: opacity 100ms ease-out, height 100ms ease-out;
    transition: opacity 100ms ease-out, height 100ms ease-out;
}


.bread-now-list-item .img:hover:after  {
    height: 100%;
    opacity: 1;
}

.bread-now-list-item .img img {
    display: block;
    width: 100%;
}

.bread-now-list-item .desc {
    flex: 1;
}
.bread-now-list-item .post-category {
    margin-bottom: 16px;
}
.bread-now-list-item .post-title {
    font-size: 24px;
    line-height: 1.25;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;

}

.bread-now-list-item .post-excerpt {
    line-height: 1.575;
    color: #4a4a4a;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.bread-now-list-item .post-date {
    font-size: 10px;
}

.bread-now-list-item .post-category:hover ,
.bread-now-list-item .post-title:hover ,
.bread-now-list-item .post-excerpt:hover {
    text-decoration: underline;
}


@media screen and (max-width: 768px) {

    .bread-now-list-item .post-title {
        font-size: 24px;
    }

}

@media screen and (max-width: 640px) {
    .bread-now-list-item .post-title {
        font-size: 18px;
    }
    .bread-now-list-item .post-excerpt {
        display: none;
    }

    .bread-now-list-item .img {
        margin-right: 16px;
    }
}