.cat_posts{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}
.cat_post_item{
    background: #7ab8d340;
    transition: all .25s cubic-bezier(.45, .26, 0, 1);
    box-shadow: 2px 2px 4px rgba(0,0,0,.2);
    border-radius: 10px;
    overflow: hidden;
}
.cat_post_item:hover{
    box-shadow: 2px 4px 15px rgba(0,0,0,.2);
}
.cat_post_img{
    width: 100%;
    height: 170px;
}
.cat_post_title{
    margin: 20px 10px 12px 10px;
	font-size: 20px;
    line-height: 29px;
    text-align: center;
	color: #000;
}
.cat_post_title::before{
	display:none;
}
.cat_post_descr{
    padding: 0 10px;
	color: #000;
}
@media(max-width: 992px){
    .cat_posts{
        grid-template-columns: 1fr 1fr;
    }
}
@media(max-width: 575px){
    .cat_posts{
        grid-template-columns: 1fr;
    }
}