/*Start Post Header*/
.post-header-big {
    float: left;
    position: relative;
    width: 100%;
    max-height: 370px;
    overflow: hidden;
}

.post-header-img {
    position: relative;
    overflow: hidden;
}

.post-header-img a:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,rgba(0,0,0,.4) 0%,rgba(0,0,0,.3) 100%);
    transform: rotate(-180deg);
}

.post-header-img a img.post_img{
    -o-object-fit: cover!important;
    object-fit: cover!important;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.post-header-img a:hover img.post_img{
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}

.post-header-info {
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
    color: #fff;
    width: 100%;
    height: 50px;
}

.post-header-info h3 {
    width: 100%;
    height: 100%;
}

.post-header-info a {
    color: #fff;
    display: block;
    padding-left: 20px;
    box-sizing: border-box;
    position: absolute;
    bottom: 15px;
}

.post-header-small {
    float: left;
    width: 100%;
    overflow: hidden
}

.post-header-item {
    width: 50%;
    position: relative;
    padding-left: 10px;
    margin-bottom: 13px;
    float: left;
    max-height: 178px
}

.post-header-big .post-header-name {
    font-weight: bold;
    font-size: 18px;
    line-height: 30px;
    text-transform: capitalize;
    display: block;
}

.post-header-small .post-header-name {
    font-weight: bold;
    font-size: 16px;
    line-height: 20px;
    text-transform: capitalize;
    display: block;
}

/*End Post Header*/
/**/
.post-list {
    float: left;
    width: 100%;
    display: block;
    margin-bottom: 16px;
}

.post-list .post-header {
    width: 100%;
    float: left;
    padding: 0;
}

.post-list .post-header .post-header-title{
    float: left;
    width: 100%;
    padding: 0;
}

.post-list .post-header .post-header-title .post-title{
    font-family: Nunito;
    font-style: normal;
    font-size: 18px;
    line-height: 24px;
    color: #2c2f36;
    font-weight: 600;
    margin: 12px 0 15px;
}

.post-list .post-header .post-header-sort{
    float: right;
    width: 180px;
    margin-bottom: 5px;
}

.post-list .post-header .post-header-sort .post-header-sort-control{
    background: #fff;
    border-radius: 3px 5px 5px 3px;
    height: 34px;
}

.post-list .post-header .post-header-sort .post-header-sort-control .post-header-sort-item{
    float: left;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    position: relative;
    cursor: pointer;
    margin: 0;
}

.post-list .post-body {
    float: left;
    width: 100%;
    padding: 5px 0;
}

.post-list .post-body .post-item {
    width: 100%;
    float: left;
    padding: 8px;
    border-radius: 4px;
    background: #fff;
    border: 1px solid #f2f2f2;
    margin-bottom: 15px;
    box-shadow: 0px 4px 6px 0px rgb(44 44 44 / 10%);
    cursor: pointer;
}

.post-list .post-body .post-item:hover {
    box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 15%);
}

.post-list .post-body .post-item .post-image {
    width:  32%;
    height: 180px;
    float: left;
    position: relative;
    overflow: hidden;
    display: block;
    border-radius: 3px;
}

.post-list .post-body .post-item .post-image img{
    width: 100%;
    height: auto;
    display: block;
    -o-object-fit: cover!important;
    object-fit: cover!important;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.post-list .post-body .post-item .post-image:hover img{
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}

.post-list .post-body .post-item .post-main, 
.post-list .post-body .post-item .post-hot{
    width: 68%;
    float: left;
    padding-left: 15px;
}

.post-list .post-body .post-item .post-title{
    display: block;
}

.post-list .post-body .post-item .post-title a{
    display: block;
    color: #004E7F;
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
}

.post-list .post-body .post-item .post-title-m {
    display: none;
}

.post-list .post-body .post-item .post-main .post-des {
    float: left;
    width: 100%;
    min-height: 60px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 20px;
    margin-bottom: 10px;
}

/*SCREEN 640*/
@media screen and (max-width: 767px) {
    .post-header-big {
        padding-bottom: 15px;
    }

    .post-list .post-body .post-item .post-title {
        display: none;
    }

    .post-list .post-body .post-item .post-title-m {
        display: block;
    }

    .post-list .post-body .post-item .post-title-m a{
        display: block;
        color: #004E7F;
        /*text-indent: 20px;
        background: url(../assets/img/icons/ic_star.svg) no-repeat left 0;*/
        font-size: 15px;
        font-weight: 600;
        line-height: 20px;
    }

    .post-list .post-body .post-item .post-image {
        height: 80px;
    }


}