.breadcrumb .pull-right:before { content: "" }

/* News list */
#post-stream,
#stream-paging.pagination {
    max-width: 1260px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
}

#post-stream {
    color: #263241;
}

.blog-news-heading {
    margin: 0 0 20px;
}

.blog-news-heading h1 {
    margin: 0;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    color: #202a36;
}

.blog-news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 22px;
    padding: 6px 0 30px;
}

.blog-news-card {
    min-width: 0;
    background: #fff;
    border: 1px solid #e3eaf2;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 24px rgba(25, 42, 62, .07);
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.blog-news-card:hover {
    border-color: #c8d7e8;
    box-shadow: 0 12px 30px rgba(25, 42, 62, .11);
    transform: translateY(-2px);
}

.blog-news-card__media {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 8.5;
    background: #f1f5f9;
    overflow: hidden;
    color: #4278d6;
    text-decoration: none;
}

.blog-news-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-news-card__media--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f7fb;
}

.blog-news-card__media--placeholder span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    border: 1px solid #d8e4f2;
    border-radius: 8px;
    color: #4278d6;
    font-size: 14px;
    font-weight: 700;
}

.blog-news-card__content {
    min-width: 0;
    min-height: 218px;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.blog-news-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 14px;
    margin-bottom: 10px;
    color: #6c7b8d;
    font-size: 13px;
    line-height: 1.4;
}

.blog-news-card__comments {
    color: #4278d6;
    text-decoration: none;
}

.blog-news-card__comments:hover {
    color: #2bace2;
    text-decoration: none;
}

.blog-news-card__title {
    margin: 0 0 12px;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
    text-align: left;
}

.blog-news-card__title a {
    color: #202a36;
    text-decoration: none;
}

.blog-news-card__title a:hover {
    color: #4278d6;
    text-decoration: none;
}

.blog-news-card__excerpt {
    min-width: 0;
    margin: 0 0 14px;
    color: #536174;
    font-size: 15px;
    line-height: 1.55;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.blog-news-card__footer {
    margin-top: auto;
    padding-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid #edf2f7;
}

.blog-news-card__author {
    min-width: 0;
    color: #7a8796;
    font-size: 13px;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.blog-news-card__more {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 8px;
    background: #4278d6;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
}

.blog-news-card__more:hover,
.blog-news-card__more:focus {
    background: #2f66c8;
    color: #fff;
    text-decoration: none;
}

.blog-news-empty {
    grid-column: 1 / -1;
    padding: 30px;
    background: #fff;
    border: 1px solid #e3eaf2;
    border-radius: 8px;
    color: #6c7b8d;
    text-align: center;
}

#stream-paging.pagination {
    margin-top: 0;
    margin-bottom: 30px;
}

@media (max-width: 1199px) {
    .blog-news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .blog-news-heading h1 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    #post-stream,
    #stream-paging.pagination {
        padding-left: 14px;
        padding-right: 14px;
    }

    .blog-news-heading {
        margin-bottom: 16px;
    }

    .blog-news-heading h1 {
        font-size: 25px;
    }

    .blog-news-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
        padding-top: 2px;
    }

    .blog-news-card__media {
        aspect-ratio: 16 / 9;
    }

    .blog-news-card__content {
        min-height: 0;
        padding: 16px;
    }

    .blog-news-card__title {
        font-size: 20px;
        line-height: 1.3;
    }

    .blog-news-card__excerpt {
        font-size: 15px;
        -webkit-line-clamp: 4;
    }

    .blog-news-card__footer {
        align-items: stretch;
        flex-direction: column;
    }

    .blog-news-card__author {
        white-space: normal;
    }

    .blog-news-card__more {
        width: 100%;
    }
}
/* Blog shared layout */
.page-content > .breadcrumb,
.page-content > .breadcrumbs {
    max-width: 1260px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 18px;
    padding: 14px 16px 0;
    box-sizing: border-box;
    background: transparent;
}

.post,
.comments,
.comment-form {
    max-width: 1260px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
}

.post {
    margin-bottom: 36px;
}

.post h1 {
    margin: 0 0 16px;
    color: #202a36;
    font-size: 32px;
    line-height: 1.24;
    font-weight: 700;
}

.post .credentials {
    margin-bottom: 18px;
}

.post .text {
    color: #263241;
    font-size: 16px;
    line-height: 1.62;
}

.post .text p {
    margin: 0 0 14px;
}

.post .text img {
    margin: 18px 0 24px;
    border-radius: 8px;
}

@media (max-width: 767px) {
    .page-content > .breadcrumb,
    .page-content > .breadcrumbs,
    .post,
    .comments,
    .comment-form {
        padding-left: 14px;
        padding-right: 14px;
    }

    .post h1 {
        font-size: 25px;
        line-height: 1.3;
    }

    .post .text {
        font-size: 15px;
    }
}
.post h1,
.post>div,
.post form {
	/*padding-left:15px;
	padding-right:15px;*/
}
.post .credentials {
	border-bottom: 2px solid #f5f5f5;
	border-top: 2px solid #f5f5f5;
	color: #555;
	padding-bottom: 5px;
	padding-top: 5px;
}
.post .credentials a {
	color: #2bace2;
	font-weight: 500;
}
.post .date {
	font-size: 100%;
	margin-right: 10px;
}
.post .text {
	padding-bottom: 10px;
	padding-top: 10px;
	margin-bottom: 20px;
}
.post img {
	display: block;
	width: 100% \9;
	max-width: 100%;
	height: auto;
}
.post iframe {
	width: 100% \9;
}
.comments,
.comment-form {
	/*padding-left:15px;
	padding-right:15px;*/
}
.comments-header {
	border-bottom: 1px solid #ccc;
	border-top: 1px solid #ccc;
	color: #2bace2;
	font-size: 22px;
	padding: 15px 0;
}
.comment-form form {
	max-width: 480px;
}
.comment-form h4 {
	color: #2bace2;
	font-size: 22px;
}

.comment-form .auth-type {
	font-size: 12px;
}
.comment-form .auth-type li a {
	color: #222;
	text-decoration: underline;
}
.comment-form .auth-type li a:hover {
	text-decoration: none;
}
.comment-form .auth-type li a img {
	margin-right: 4px;
	margin-top: -2px;
}
.comment .comment-reply {
	font-size: 12px;
	font-weight: 500;
}
.comment h4 {
	color: #000;
	font-size: 17px;
	font-weight: normal;
	position: relative;
}
.comment h4 .comment-date {
	color: #777;
	font-size: 12px;
	position: absolute;
	right: 0;
	top: 3px;
}

/* ПОИСК ПОСТА */
.search-match .post-heading img {
	margin: 20px 0;
}
.search-match .post-info { 
	border-top: solid 1px #eee;
	border-bottom: solid 1px #eee;
	color: #555;
	padding-top: 5px;
	padding-bottom: 5px;
	margin-bottom: 10px;
}
.search-match .post-info ul {
	margin: 0;
}
.search-match h3 a {
	color: #585f69;
	font-size: 21px;
	line-height: 32px;
	margin-bottom: 10px;
}

/* БЛОГ 1.3.0 */
html.realtime-preview,
html.realtime-preview body { background: #fff; }
html.realtime-preview .footer,
html.realtime-preview .header,
html.realtime-preview .navbar,
html.realtime-preview .auth,
html.realtime-preview .wrapper-toolbar,
html.realtime-preview .breadcrumb{ display: none; }
/*html.realtime-preview .page-content { margin-right: 0; }
html.realtime-preview .page { top: 0; margin: 10px 0; }*/


.photo-album-attachment ul.thumbs { padding-left: 0; }
.photo-album-attachment ul.thumbs li { list-style: none; display: inline-block; margin: 0 20px 20px 0; float: left; }
.photo-album-attachment .photo { margin-bottom: 20px; }
.photo-album-attachment .photo img { margin-top: -10px; }
.post .photo-album-attachment { padding-top: 10px; }