body {
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    background: #fff;
    color: #222;
    font-size: 14px;
}

a {
    color: inherit;
    text-decoration: none;
}

    a:hover {
        color: var(--main-red);
        text-decoration: none;
    }

/* màu chủ đạo mới */
:root {
    --main-red: #b61316;
    --main-red-light: #ca3133;
    --text-light: #666;
    --text-smoke: #333;
}

.container-1280 {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 12px;
    padding-right: 12px;
}

.container-1400 {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 12px;
    padding-right: 12px;
}

.topbar {
    border-bottom: 1px solid #eee;
    background: #f5f5f5;
    font-size: 13px;
}

.news-sapo {
    font-size: 14px;
    color: var(--text-smoke);
}

.news-title a {
    font-size: 14px;
    font-weight: 600;
    font-family: 'Noto Serif';
}

ul.news-relation {
    list-style: none;
    padding: 10px 0px 0px;
}

    ul.news-relation li {
        font-size: 14px;
        padding-left: 18px;
        padding-bottom: 5px;
        background: url(/assets/images/icon-right.svg) no-repeat 6px 6px;
        background-size: 9px 9px;
        color: var(--text-light);
    }

/* Kích thước ảnh chung */
.icon-rss {
    height: 22px;
}

.icon-nav-home {
    height: 16px;
}

.mangsec-header {
    height: 100px;
}

.news-thumb {
    width: 100%;
    border-radius: 6px;
}

/* ===== Kích thước ảnh chung ===== */

.hero-article {
    background: #e9ecef;
    border-radius: 6px;
}

/* MENU CHÍNH */
.nav-main {
    background: var(--main-red);
    color: #fff;
    font-size: 14px;
    transition: transform .25s ease, box-shadow .2s ease;
}

    .nav-main.fixed {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1050;
        box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
    }

    .nav-main.hide {
        transform: translateY(-100%);
    }

/* menu cuộn ngang mobile */
.nav-main-inner {
    display: flex;
    /* gap:12px; */
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

    .nav-main-inner::-webkit-scrollbar {
        display: none;
    }

.nav-bottom {
    background: var(--main-red);
    color: #fff;
    font-size: 14px;
    transition: transform .25s ease, box-shadow .2s ease;
}

    .nav-bottom.fixed {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1050;
        box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
    }

    .nav-bottom.hide {
        transform: translateY(-100%);
    }

/* menu cuộn ngang mobile */
.nav-bottom-inner {
    display: flex;
    /* gap:12px; */
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

    .nav-bottom-inner::-webkit-scrollbar {
        display: none;
    }

@media (min-width:992px) {
    .nav-main-inner,
    .nav-bottom-inner {
        flex-wrap: wrap;
        overflow-x: visible;
        white-space: normal;
    }
}

/* item menu đổi nền khi hover/active */
a.nav-link-main {
    color: #fff;
    text-decoration: none;
    padding: 4px 10px;
    font-weight: 500;
    display: inline-block;
}

    a.nav-link-main:first-child {
        padding-top: 3px;
    }

    a.nav-link-main:hover,
    a.nav-link-main.active {
        background: var(--main-red-light);
    }

.btn-danger {
    background: var(--main-red);
    border-color: var(--main-red);
}

.btn-outline-danger {
    color: var(--main-red);
    border-color: var(--main-red);
}

    .btn-outline-danger:hover {
        background: var(--main-red);
        color: #fff;
    }

.section-title {
    border-left: 4px solid var(--main-red);
    padding-left: 8px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.sidebar-box {
    border: 1px solid #e2e2e2;
    border-radius: 6px;
    padding: 12px;
    background: #fafafa;
}

.home-news-cover h2 {
    line-height: 20px;
}

    .home-news-cover h2.news-title a {
        font-size: 23px;
        font-weight: 600;
        line-height: 32px;
    }

.home-other-news-cover h2 {
    line-height: 16px;
    margin-top: 5px;
}

.block-quote-sidebar {
    padding: 35px 20px;
    background: #eee;
    background-image: url(/assets/images/icon-quote.svg);
    background-size: 64px;
    background-repeat: no-repeat;
    background-position: 10px 5px;
    border-radius: 6px;
    text-align: justify;
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: 100%;
}

    .block-quote-sidebar .quote-content h3 {
        font-size: 16px;
        font-family: 'Noto Serif';
        font-style: italic;
        line-height: 23px;
    }

    .block-quote-sidebar .quote-info {
        display: flex;
        justify-content: flex-end;
    }

        .block-quote-sidebar .quote-info .quote-author {
            text-align: right;
            padding-right: 10px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

            .block-quote-sidebar .quote-info .quote-author strong {
                display: block;
                color: var(--main-red);
            }

            .block-quote-sidebar .quote-info .quote-author span {
                font-size: 12px;
                color: var(--text-light);
                font-style: italic;
            }

    .block-quote-sidebar .quote-avatar img {
        width: 50px;
        border-radius: 50px;
        border: solid 1px var(--main-red-light);
        margin-top: 3px;
    }

.block-news {
    margin-bottom: 20px;
}

    .block-news .block-header {
        display: flex;
        margin-bottom: 10px;
        gap: 5px;
    }

        .block-news .block-header .block-title,
        .block-news .block-header .block-title h3 a {
            font-family: 'Noto Serif';
            font-weight: 600;
            font-size: 24px;
            color: var(--main-red);
            margin-left: 0;
        }

            .block-news .block-header .block-title a {
                font-family: 'Roboto', Helvetica, Arial, sans-serif;
                font-size: 12px;
                font-weight: 500;
                color: var(--text-light);
                margin-left: 10px;
            }

                .block-news .block-header .block-title a:first-child {
                    margin-left: 5px;
                }

            .block-news .block-header .block-title h3 {
                display: inline-block;
            }

        .block-news .block-header .block-title-line {
            flex: 1;
            border-bottom: 1px solid #ddd;
            height: 28px;
        }

    .block-news .block-body {
        display: flex;
        /*gap: 15px;*/
        flex-direction: column;
    }

.block-lastest-news .block-body {
    gap: 15px;
}

.block-lastest-news .news-item {
    display: flex;
    gap: 10px;
}

    .block-lastest-news .news-item img {
        width: 210px;
    }

    .block-lastest-news .news-item h3 {
        font-size: 14px;
    }

.news-info {
    color: var(--text-light);
}

    .news-info strong:first-child {
        color: var(--main-red);
    }

.block-small-3-item .block-body {
    gap: 15px;
}

.block-small-3-item .news-item {
    flex-direction: column;
}

    .block-small-3-item .news-item:first-child h3,
    .block-small-3-item .news-item:first-child h3 a {
        font-size: 16px;
    }

    .block-small-3-item .news-item:first-child img {
        width: 330px;
    }

.block-small-3-item .block-body {
    flex-direction: row;
}

.block-small-3-item .news-item {
    flex-direction: column;
    display: flex;
    gap: 10px;
}

.block-small-3-item .news-group-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

    .block-small-3-item .news-group-item .news-item {
        flex-direction: row;
        gap: 15px;
    }

        .block-small-3-item .news-group-item .news-item h3,
        .block-small-3-item .news-group-item .news-item h3 a {
            font-size: 14px;
        }

        .block-small-3-item .news-group-item .news-item img {
            width: 210px;
        }

.block-fullwidth-news .block-title,
.block-fullwidth-news .block-title a {
    color: #fff !important;
}

.block-fullwidth-news .block-title-line {
    border-bottom-color: #354259 !important;
}

.block-fullwidth-news .block-body {
    flex-direction: row;
}

    .block-fullwidth-news .block-body .news-item h3,
    .block-fullwidth-news .block-body .news-item h3 a {
        font-size: 14px;
        color: #fff;
        margin-top: 5px;
    }


.block-big-3-item .news-group-item .news-item h3,
.block-big-3-item .news-group-item .news-item h3 a {
    font-size: 14px;
    margin: 5px 0 15px;
}

.block-big-3-item .news-item h3,
.block-big-3-item .news-item h3 a {
    font-size: 16px;
    margin: 5px 0;
}

.block-big-3-item.block-news-in-zone {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: dashed 1px #eee;
}

    .block-big-3-item.block-news-in-zone .news-item-title h3,
    .block-big-3-item.block-news-in-zone .news-item-title h3 a {
        font-size: 25px;
    }

    .block-big-3-item.block-news-in-zone .news-item .news-item-title h3,
    .block-big-3-item.block-news-in-zone .news-item .news-item-title h3 a {
        font-size: 25px;
    }

    .block-big-3-item.block-news-in-zone .news-group-item .lastest-news-item-title h3,
    .block-big-3-item.block-news-in-zone .news-group-item .lastest-news-item-title h3 a {
        font-size: 17px;
    }

.block-line-3-item .news-item h3,
.block-line-3-item .news-item h3 a {
    font-size: 14px;
    margin: 5px 0 15px;
}

.block-big-3-item .block-body {
    flex-direction: row-reverse !important;
}


.block-column-3-item .news-item {
    flex-direction: column;
}

    .block-column-3-item .news-item:first-child {
        margin-bottom: 10px;
    }

        .block-column-3-item .news-item:first-child h3,
        .block-column-3-item .news-item:first-child h3 a {
            font-size: 16px;
        }

.block-column-3-item .block-body {
    flex-direction: column;
}

.block-column-3-item .news-item {
    flex-direction: column;
    display: flex;
    gap: 10px;
}

.block-column-3-item .news-group-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

    .block-column-3-item .news-group-item .news-item {
        flex-direction: row;
        gap: 15px;
    }

        .block-column-3-item .news-group-item .news-item h3,
        .block-column-3-item .news-group-item .news-item h3 a {
            font-size: 14px;
        }

        .block-column-3-item .news-group-item .news-item img {
            width: 210px;
        }

.box-search {
    display: block;
    clear: both;
    margin-bottom: 10px;
    background-color: #efefef;
    border: 1px solid #ddd;
    float: right;
    width: 100%;
}

    .box-search .box-search-inner {
        margin: 6px;
    }

        .box-search .box-search-inner input {
            width: 252px;
            padding: 3px 8px;
            border: 1px solid #ddd;
            color: #333;
            background-color: #f9f9f9;
            font-size: 13px;
        }

            .box-search .box-search-inner input:hover, .box-search .box-search-inner input:focus {
                background-color: #fff;
            }

        .box-search .box-search-inner a {
            display: block;
            float: right;
            background: url(../images/icon-search.svg) 5px 5px no-repeat;
            width: 27px;
            height: 27px;
            border: 1px solid #ddd;
            background-size: 15px 15px;
        }

            .box-search .box-search-inner a:hover {
                background-color: #fff;
            }

        .box-search .box-search-inner ul {
            margin: 5px 10px 0px;
            font-size: 13px;
        }

            .box-search .box-search-inner ul li {
                margin: 5px 10px 0px;
                float: left;
                list-style: none;
            }

                .box-search .box-search-inner ul li input {
                    width: auto;
                    display: inline;
                    margin-right: 3px;
                }

.top-most-read {
    display: table;
}

    .top-most-read .block-body {
        gap: 10px;
    }

        .top-most-read .block-body .news-item {
            display: flex;
            flex-direction: row;
            gap: 10px;
        }

            .top-most-read .block-body .news-item img {
                width: 120px;
            }

            .top-most-read .block-body .news-item h3,
            .top-most-read .block-body .news-item h3 a {
                font-size: 14px;
            }

.news-in-timeline {
}

    .news-in-timeline .news-item-in-list {
        overflow: hidden;
        margin-bottom: 15px;
        padding-bottom: 15px;
        border-bottom: 1px solid #efefef;
    }

        .news-in-timeline .news-item-in-list img {
            width: 30%;
            float: left;
            margin-right: 15px;
        }

        .news-in-timeline .news-item-in-list.big-item img {
            width: 431px;
        }

        .news-in-timeline .news-item-in-list h3,
        .news-in-timeline .news-item-in-list h3 a {
            font-size: 20px;
            font-weight: 600;
            font-family: 'Noto Serif';
        }


.advbanner {
    display: table;
}


@media screen and (max-width: 600px) {
    .block-quote-sidebar-item {
        min-height: auto;
    }

    .block-small-3-item .block-body {
        flex-direction: column;
    }

    .block-small-3-item .news-item:first-child img {
        width: 100%;
    }

    .block-small-3-item .news-group-item .news-item img {
        width: 210px;
    }

    .block-fullwidth-news .block-body {
        flex-direction: column;
    }

    .block-big-3-item .block-body .news-group-item {
        margin-top: 20px;
    }

    .block-news .block-header .block-title h3 {
        display: block !important;
        margin-bottom: 0;
    }

    .block-lastest-news .news-item img {
        width: 100%;
    }

    .block-lastest-news .news-item {
        flex-direction: column;
    }
}



/* BEGIN OF Style for news content page */
.block-news-content {
    width: 100%;
    overflow: hidden;
}

    .block-news-content .news-header h1,
    .block-news-content .news-header h4 {
        font-size: 36px;
        font-family: 'Roboto Condensed', Arial, sans-serif;
        font-weight: 600;
    }

    .block-news-content .news-header .news-info {
        font-size: 16px;
        color: #999;
        margin-bottom: 15px;
    }

        .block-news-content .news-header .news-info .author-name {
            font-weight: 600;
            color: #c00;
        }

    .block-news-content .news-header .news-sapo {
        font-size: 18px;
        font-weight: normal;
        color: #666;
        line-height: 25px;
        text-align: justify;
    }

    .block-news-content .news-header .social-icons {
        padding: 10px 0 5px;
        margin: 10px 0;
        border-bottom: solid 1px #eee;
        border-top: solid 1px #eee;
        overflow: hidden;
    }

        .block-news-content .news-header .social-icons > div {
            float: left;
            margin-right: 10px;
        }

    .block-news-content .news-header .news-avatar {
        overflow: hidden;
        display: inline-block;
        background: #f5f5f5;
        margin-bottom: 15px;
        width: 100%;
    }

        .block-news-content .news-header .news-avatar img {
            width: 100%;
        }

        .block-news-content .news-header .news-avatar .news-avatar-sapo {
            padding: 8px 10px 0px;
        }

            .block-news-content .news-header .news-avatar .news-avatar-sapo h2 {
                font-size: 15px;
                font-weight: normal;
                font-family: Arial;
                font-style: italic;
                color: #333;
            }

    .block-news-content .news-body-content {
        color: #000;
        font-family: 'Noto Serif';
        line-height: 1.618;
        font-size: 18px;
        text-align: justify;
    }

        .block-news-content .news-body-content a {
            color: #1167b3;
        }

            .block-news-content .news-body-content a:hover {
                color: #de2020;
            }

    .block-news-content .news-footer {
        display: block;
    }

        .block-news-content .news-footer .news-footer-info {
            margin: 20px 0;
        }

            .block-news-content .news-footer .news-footer-info .news-footer-author {
                text-align: right;
                font-weight: bold;
                color: #0f6d38;
            }

            .block-news-content .news-footer .news-footer-info .news-footer-source {
                text-align: right;
                font-style: italic;
            }

                .block-news-content .news-footer .news-footer-info .news-footer-source span {
                    font-weight: bold;
                }



    .block-news-content .newsrelation-in-content {
        display: block;
        overflow: hidden;
        background-color: #fcfcfc;
        margin-bottom: 10px;
    }

        .block-news-content .newsrelation-in-content .block-title {
            padding: 5px;
            background-color: #f5f5f5;
            color: #999;
        }

            .block-news-content .newsrelation-in-content .block-title span {
                display: inline-block;
                font-family: 'Roboto Condensed', sans-serif;
                font-size: 18px;
                text-transform: uppercase;
                FONT-WEIGHT: bold;
                padding-left: 10px;
            }

        .block-news-content .newsrelation-in-content .block-content {
            overflow: hidden;
            padding: 5px 15px;
            font-size: 15px;
        }

            .block-news-content .newsrelation-in-content .block-content ul {
                margin-bottom: 0px;
            }

                .block-news-content .newsrelation-in-content .block-content ul li {
                    display: block;
                    margin-bottom: 5px;
                    padding-bottom: 5px;
                    border-bottom: solid 1px #eee;
                    overflow: hidden;
                }

                    .block-news-content .newsrelation-in-content .block-content ul li.last {
                        margin-bottom: 0px;
                        border-bottom: none;
                        padding-bottom: 0px;
                    }

                    .block-news-content .newsrelation-in-content .block-content ul li span {
                        color: #aaa;
                        margin-right: 10px;
                        display: block;
                        width: 71px;
                        float: left;
                        font-size: 12px;
                    }

                        .block-news-content .newsrelation-in-content .block-content ul li span::after {
                            content: '';
                            border-right: 1px solid #ccc;
                            margin-left: 9px;
                            height: 11px;
                            display: inline-block;
                            position: relative;
                        }

                    .block-news-content .newsrelation-in-content .block-content ul li a {
                        display: block;
                        float: left;
                        max-width: 780px;
                        color: #257A4B;
                    }

    .block-news-content .news-footer .social-icons {
        padding: 10px 5px 5px;
        border-bottom: solid 1px #eee;
        border-top: solid 1px #eee;
        margin-bottom: 10px;
        overflow: hidden;
    }

        .block-news-content .news-footer .social-icons > div {
            float: left;
            margin-right: 10px;
        }

    .block-news-content .news-tags {
        margin-bottom: 5px;
    }

        .block-news-content .news-tags a {
            font-size: 11px;
            border: solid 1px #ccc;
            color: #999;
            background-color: #f5f5f5;
            padding: 3px 5px;
            display: inline-block;
            margin: 0 5px 5px;
        }

            .block-news-content .news-tags a:hover {
                border: solid 1px #0f6d38;
                background-color: #0f6d38;
                color: #fff;
            }

            .block-news-content .news-tags a:before {
                content: '#';
            }

.news-detail-comment {
    display: block;
    overflow: hidden;
    margin-bottom: 20px;
}

    .news-detail-comment .news-detail-comment-content {
        display: block;
        overflow: hidden;
        border: 1px solid #f5f5f5;
    }

        .news-detail-comment .news-detail-comment-content .news-detail-comment-title {
            color: #666;
            background-color: #f5f5f5;
            font-weight: bold;
            display: block;
            overflow: hidden;
            text-transform: uppercase;
            padding: 10px 15px;
        }

        .news-detail-comment .news-detail-comment-content .NewsCommentPaging {
            display: block;
            clear: both;
            overflow: hidden;
            text-align: right;
            padding: 10px;
            border-bottom: 1px dotted #ccc;
        }

            .news-detail-comment .news-detail-comment-content .NewsCommentPaging ul {
                list-style: none;
                padding: 0;
                margin: 0;
                overflow: hidden;
                float: right;
            }

                .news-detail-comment .news-detail-comment-content .NewsCommentPaging ul li {
                    list-style: none;
                    float: left;
                    margin-right: 10px;
                }

                .news-detail-comment .news-detail-comment-content .NewsCommentPaging ul li {
                    list-style: none;
                    float: left;
                    margin-right: 10px;
                    font-weight: bold;
                }

                    .news-detail-comment .news-detail-comment-content .NewsCommentPaging ul li span {
                        color: #cc0000;
                    }

        .news-detail-comment .news-detail-comment-content .NewsCommentList {
            overflow-y: scroll;
            padding: 10px 15px;
            background-color: #fff;
        }

            .news-detail-comment .news-detail-comment-content .NewsCommentList .NewsCommentItem {
                width: 100%;
                border-bottom: dotted 1px #ccc;
                padding-bottom: 10px;
                margin-bottom: 10px;
            }

                .news-detail-comment .news-detail-comment-content .NewsCommentList .NewsCommentItem h3 {
                    margin: 5px 0 5px 0;
                    padding: 0;
                    color: #0f6d38;
                    font-size: 15px;
                }

                    .news-detail-comment .news-detail-comment-content .NewsCommentList .NewsCommentItem h3 .post-date {
                        font-weight: normal;
                        font-size: 13px;
                        color: #999;
                    }

    .news-detail-comment .ShowHideCommentBox {
        margin-top: 5px;
    }

        .news-detail-comment .ShowHideCommentBox a {
            color: #0f6d38;
            font-weight: 500;
            text-transform: uppercase;
            display: block;
            overflow: hidden;
            border: solid 1px #ddd;
            padding: 5px 10px;
            background: url(../images/main-spint.png) no-repeat 8px -349px #f5f5f5;
        }

            .news-detail-comment .ShowHideCommentBox a:hover {
                background-color: #fafafa;
            }

    .news-detail-comment .NewsCommentForm {
        display: block;
        border-top: solid 1px #fff;
        border-bottom: solid 1px #ddd;
        border-left: solid 1px #ddd;
        border-right: solid 1px #ddd;
        background-color: #f5f5f5;
        padding: 10px 15px;
        font-size: 15px;
    }

        .news-detail-comment .NewsCommentForm div {
            display: table;
            margin-bottom: 10px;
        }

        .news-detail-comment .NewsCommentForm label {
            white-space: nowrap;
            float: left;
            width: 100px;
            color: #999;
            margin-top: 5px;
        }

        .news-detail-comment .NewsCommentForm input {
            width: 485px;
            float: left;
            padding: 8px 10px;
            border: solid 1px #ccc;
            color: #999;
            float: left;
        }

            .news-detail-comment .NewsCommentForm input.small {
                width: 100px;
            }

        .news-detail-comment .NewsCommentForm textarea {
            width: 500px;
            height: 60px;
        }

        .news-detail-comment .NewsCommentForm a {
            float: right;
            display: block;
            margin-left: 10px;
        }

        .news-detail-comment .NewsCommentForm img {
            float: left;
            height: 33px;
            margin: 0 10px;
        }

        .news-detail-comment .NewsCommentForm a#SendComment {
            padding: 5px 10px;
            background-color: #0f6d38;
            border: 1px solid #0f6d38;
            color: #fff;
            margin-left: 100px;
            width: 100px;
            text-align: center;
        }

        .news-detail-comment .NewsCommentForm a#Reset {
            padding: 5px 10px;
            background-color: #f3f3f3;
            border: 1px solid #e4e4e4;
        }

        .news-detail-comment .NewsCommentForm a#RefreshCaptcha {
            width: 23px;
            height: 23px;
            background: url(../images/main-spint.png) no-repeat -200px -22px;
            float: left;
            display: block;
            margin-left: 0px;
        }

.block-interesting-news {
    display: block;
    overflow: hidden;
    padding-bottom: 20px;
    border-bottom: solid 1px #ccc;
    margin-bottom: 20px;
}

    .block-interesting-news .block-title {
        width: 100%;
        margin-bottom: 10px;
    }

        .block-interesting-news .block-title span {
            display: inline-block;
            border-left: solid 6px #0f6d38;
            font-family: 'Roboto Condensed', sans-serif;
            font-size: 22px;
            text-transform: uppercase;
            FONT-WEIGHT: bold;
            padding-left: 10px;
        }

    .block-interesting-news .block-content {
        display: block;
        overflow: hidden;
    }

        .block-interesting-news .block-content ul li {
            float: left;
            margin-left: 20px;
            width: 284px;
        }

            .block-interesting-news .block-content ul li.first {
                margin-left: 0px;
            }

            .block-interesting-news .block-content ul li img {
                width: 284px;
                height: 170px;
            }

            .block-interesting-news .block-content ul li h4 {
                font-size: 18px;
                margin: 10px 0;
            }

.block-other-news-in-zone {
    display: block;
    overflow: hidden;
    margin: 15px 0;
    padding-bottom: 15px;
    background: url(../images/home-focus-news-break-line-bottom.png) repeat-x bottom left;
}

    .block-other-news-in-zone .block-title {
        width: 100%;
        margin-bottom: 10px;
    }

        .block-other-news-in-zone .block-title span {
            display: inline-block;
            border-left: solid 5px #257A4B;
            font-family: 'Roboto Condensed', sans-serif;
            font-size: 22px;
            text-transform: uppercase;
            font-weight: bold;
            padding-left: 10px;
            color: #c00;
        }

        .block-other-news-in-zone .block-title.break-title {
            height: 40px;
            background-color: #f0f0f0;
            margin-bottom: 0;
        }

            .block-other-news-in-zone .block-title.break-title span {
                margin-top: 6px;
            }

    .block-other-news-in-zone .block-content {
        display: block;
        overflow: hidden;
    }

        .block-other-news-in-zone .block-content .news-big-focus,
        .block-other-news-in-zone .block-content .news-other-focus {
            float: left;
        }

            .block-other-news-in-zone .block-content .news-big-focus h3 {
                margin-top: 10px;
            }

            .block-other-news-in-zone .block-content .news-other-focus .news-item-in-list {
                width: 100%;
                overflow: hidden;
                margin-bottom: 15px;
                padding-bottom: 15px;
                border-bottom: solid 1px #efefef;
            }

                .block-other-news-in-zone .block-content .news-other-focus .news-item-in-list:last-child {
                    margin-bottom: 15px;
                    padding-bottom: 0;
                    border-bottom: 0;
                }

                .block-other-news-in-zone .block-content .news-other-focus .news-item-in-list img {
                    width: 200px;
                    float: left;
                    margin-right: 10px;
                }

                .block-other-news-in-zone .block-content .news-other-focus .news-item-in-list h3 {
                    margin: -10px 0 0 0;
                }

                    .block-other-news-in-zone .block-content .news-other-focus .news-item-in-list h3 a {
                        font-size: 18px;
                    }
/* END OF Style for news content page */
