
.post_item{
    border: solid 1px #ccc;
    border-radius: 10px;
    overflow: hidden;
}
.post_item:hover{
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.post_item .post_thumb img{
    min-height: 300px;
    height: 100%;
    object-fit: cover;
}
.post_item ul.entry-meta{
    list-style: none;
    display: flex;
    padding-left: 0;
}
.post_item ul{
    list-style: none;
}
.post_item ul li:not(:last-child):after{
    content: "/";
    padding: 0 10px 0 12px;
}

.post_item ul li{
    position: relative;
    display: inline-block;
    font-size: 13px;
    color: #71728c;
}
.post_item ul li a{
    color: #71728c !important;
}
.post_item ul li i{
    padding-right: 5px;
    
}
.post_text{
    padding: 10px;
}
.post_text .post_title
{
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* number of lines to show */
            line-clamp: 3; 
    -webkit-box-orient: vertical;
    min-height: 86px;

}
