.post-item{
	display:flex;
	align-items:center;
	max-height: 140px;
	margin-bottom:15px;
    background: #FFFFFF;
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.2);
}

.post-item .content{
	margin:0 18px;
    width: 100%;
}
.post-item .content a{
	text-decoration:none;
}
.post-item .image{
	height:140px;
}
.post-item .image img{
	max-height:140px;
    object-fit: cover;
    max-width: none;
    width: 255px;
}

.post-item .content .cat-name{
    color: var(--wp--preset--color--secondary);
	font-size:12px;
    font-weight:700;
    display: block;
    margin-bottom: 10px;
}

.post-item .content .title{
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 700;
	font-size: 16px;
	line-height: 150%;
	margin:10px 0;
	color: #333333;
}
.post-item .content p{
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 400;
	font-size: 12px;
	line-height: 150%;
	color: #595959;
	margin-top:0;
	margin-bottom:0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
            line-clamp: 2; 
    -webkit-box-orient: vertical;
}
.actions{
    display: flex;
}
.actions .act-btn:not(:first-child){
    margin-left: 10px;
}
.act-btn{
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    width: 100%;
    height: 37px;
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 5px;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    text-decoration: none;
}
.act-btn.light{
    color: var(--wp--preset--color--secondary); 
}
.act-btn.dark,.wp-block-button__link{
    background-color: var(--wp--preset--color--secondary); 
    color: #fff; 
    border: none;
}

@media (max-width: 570px){
    .post-item .content p{
        display: none;
    }
    .post-item .image img{
        max-height: 120px;
        object-fit: cover;
        max-width: none;
        width: 200px;
    }
    .post-item .image {
        height: 110px 
    }
}
@media (max-width: 440px){
    .post-item{
        display: block; 
        max-height: max-content;
    }
    .post-item .image {
        height: 100%
    }
    .post-item .image img{
        max-height: max-content;
        max-width: none;
        width: 100%;
    }
    .post-item .content{
        margin: 0 0px; 
        padding: 5px 15px;
        width: auto;
    }
}