@media screen and (max-width: 768px) {
    .vk_posts-result-wrapper {
        width: 100vw;
        overflow-x: auto;
    }
}
.vk_posts-result{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1em;
    margin-left: 0;
    margin-right: 0;
}
@media screen and (max-width: 768px){
    .vk_posts-result{
        display: flex;
        flex-wrap: nowrap;
        gap: 0;
    }
}
.vk_post-result{
    display: block;
    width: 100%;
    padding: 1em;
    background: #fff;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-left: 0;
    margin-right: 0;
}
@media screen and (max-width: 768px){
    .vk_post-result {
        flex: 0 0 90vw;
        box-shadow: none;
        padding: 5px;
    }
    .vk_post-result:first-child{
        margin-left: 5vw;
    }
}
.vk_post_result:visited{
    color: inherit;
}
.vk_post .vk_post_title-result{
    color: #00479d;
    font-size: 1.1em;
    padding: 0 0 .25em;
    border-bottom: solid 1px #e0e0e0;
    font-weight: normal;
}
.vk_post_tags-result{
    display: flex;
    flex-wrap: wrap;
    font-size: 1rem;
    gap: .5em;
    margin-top: .5em;
}
.vk_post_tags-result .vk_post_tags-result-li{
    display: inline-block;
    line-height: 1.1;
}

.scroll-hint-shadow-wrap::before,
.scroll-hint-shadow-wrap::after{
    content: none;
}