<style>
/*Карточки потоков в две колонки в мобильной версии*/
@media (max-width:960px){
.js-feed-container {
box-sizing: border-box;
display: flex;
flex-wrap: wrap;
flex-direction: inherit !important;
padding: 0 20px;
gap:20px;
}
.js-feed-post {
width: calc((100% - 20px)/2);
padding-left: 0px !important;
padding-right: 0px !important;
margin-bottom:0;
background-color: #fff;
}
.t-feed__col-grid__content {
padding: 5px 20px 20px;
}
.js-feed-container:before{
content:none !important;
}
.t-feed__post__line-separator {
display:none;
}
}
</style>