.blog-list-view .summary,
.blog-list-view .pagination {
    width: 100%;
    margin-top: 15px;
}
.blog-index__cat {
    padding: 8px 15px;
    margin-bottom: 20px;
    list-style: none;
    background-color: #f5f5f5;
    border-radius: 4px;
}
.blog-index__cat li {
    display: inline-block;
}
.blog-index__cat > li + li:before {
    padding: 0 5px;
    color: #ccc;
    content: "|\00a0";
}
.blog-post,
.blog-brief {
    padding: 20px 35px;
    -webkit-box-shadow: 0px 2px 20px #ececec;
    box-shadow: 0px 2px 20px #ececec;
    border-radius: 2px;
    margin: 15px 0 0 0;
}
.blog-post__nav,
.blog-brief__nav {
    padding: 5px 0;
    margin-bottom: 25px;
    position: relative
}
.blog-post__nav::after,
.blog-brief__nav::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background: var(--link);
}
.blog-post__info,
.blog-brief__info {
    color: #494949;
}
.blog-post__info,
.blog-brief__info {
    .glyphicon-tag {
        font-size: 10px;
    }
}
.blog-post__info > span:not(:first-child),
.blog-brief__info > span:not(:first-child) {
    margin-left: 15px;
}
.blog-post__title,
.blog-brief__title {
    margin-top: 0;
}
.blog-post__content,
.blog-brief__content {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}
.blog-post,
.blog-brief {
    h1, .h1 {
        font-size: 26px;
    }
    h2, .h2 {
        font-size: 22px;
    }
    h3, .h3, h4, .h4 {
        font-size: 18px;
    }
    h5, .h5, h6, .h6, p {
        font-size: 16px;
    }
    h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, p {
        font-family: inherit;
        line-height: 1.7;
        margin-bottom: 0;
    }
}
.blog-post__img,
.blog-brief__img {
    width: 200px;
    float: right;
    margin-left: 30px;
}
.blog-comments {
    margin-top: 50px;
    margin-bottom: 50px;
    -webkit-box-shadow: 0px 0px 10px #ececec;
    box-shadow: 0px 0px 10px #ececec;
    border-radius: 2px;
    padding: 35px 35px;

}
.blog-comments__header {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}
.blog-comment-form #blogcomment-captcha-image {
    cursor: pointer;

}
.blog-comment {
    padding: 10px 25px;
    border: 1px solid transparent;
    margin: 15px 0 25px 0;
    position: relative;
}
.blog-comment--inactive {
    border-left-color: #e3e3e3;
    opacity: 0.75
}
.blog-comment--inactive:hover {
    opacity: 1;
    border-left-color: #ccc;
}
.blog-comment--inactive::after {
    content: 'На проверке';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #ef7c7c;
    font-size: 12px;
    font-style: italic;
    padding: 5px 20px;
    border: 1px solid #ccc;
    border-radius: 2px;
    background: #fff;
    z-index: 100;
    opacity: 0.5;
}
.blog-comment--inactive:hover::after {
    opacity: 1;
}
.blog-comment__top {
    margin-bottom: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.blog-comment__author {
    font-size: 16px;
    color: #494949;
}
.blog-comment__date {
    font-size: 12px;
    color: #cccccc;
}
@media only screen and (max-width: 767px) {
    .blog-brief,
    .blog-post {
        padding: 20px;
        img {
            display: block;
            height: auto;
            max-width: 100%;
            margin: 0 auto;
        }
    }
}