.editorial-news {
    --ne-ink: #10293b;
    --ne-navy: #071f33;
    --ne-blue: #0b6388;
    --ne-teal: #0b9a9f;
    --ne-gold: #c89b54;
    --ne-text: #263b49;
    --ne-muted: #71818d;
    --ne-line: #e2e9ed;
    --ne-soft: #f5f8f9;
    background: #fff;
    color: var(--ne-text);
    overflow: hidden
}

    .editorial-news * {
        box-sizing: border-box
    }

    .editorial-news a {
        text-decoration: none
    }

.news-hero {
    background: var(--ne-navy);
    color: #fff;
    height: 530px;
    overflow: hidden;
    position: relative
}

    .news-hero:before {
        content: "";
        position: absolute;
        z-index: 2;
        top: 0;
        right: 0;
        left: 0;
        height: 330px;
        pointer-events: none;
        background: linear-gradient( 180deg, #FFF 0%, rgba(255, 255, 255, 0.00) 100%);
    }

.news-hero__image {
    height: 100%;
    inset: 0;
    object-fit: cover;
    position: absolute;
    width: 100%
}

.news-hero__overlay {
    background: linear-gradient(90deg, rgba(4, 30, 44, .7) 0%, rgba(4, 30, 44, .66) 52%, rgba(4, 30, 44, .28) 100%);
    inset: 0;
    position: absolute
}

.news-hero__content {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    padding-top: 65px;
    position: relative;
    z-index: 1
}

.news-breadcrumb {
    align-items: center;
    color: rgba(255, 255, 255, .75);
    display: flex;
    font-size: 12px;
    gap: 10px;
    margin-bottom: 32px;
    display: none;
}

    .news-breadcrumb a {
        color: inherit
    }

        .news-breadcrumb a:hover {
            color: #fff
        }

    .news-breadcrumb i {
        font-size: 7px;
        opacity: .5
    }

.news-eyebrow {
    align-items: center;
    color: #edcd83;
    display: inline-flex;
    font-size: 15px;
    font-weight: 800;
    gap: 8px;
    letter-spacing: .13em;
    text-transform: uppercase
}

.news-eyebrow--dark {
    color: var(--ne-teal)
}

.news-hero h1 {
    color: #fff;
    font-family: 'BeVietnamPro-Medium', Arial, sans-serif;
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -.025em;
    line-height: 1.08;
    margin: 14px 0;
    max-width: 760px
}

.news-hero__content > p {
    color: rgba(255, 255, 255, .72);
    font-size: 15px;
    line-height: 1.75;
    margin: 0;
    max-width: 670px;
    text-align: justify;
    display: none;
}

.news-hero__meta {
    align-items: center;
    display: flex;
    gap: 25px;
    margin-top: 28px
}

    .news-hero__meta span {
        align-items: center;
        color: rgba(255, 255, 255, .72);
        display: flex;
        font-size: 15px;
        gap: 7px
    }

    .news-hero__meta strong {
        color: #fff;
        font-family: 'BeVietnamPro-Medium', Arial, sans-serif;
        font-size: 28px;
    }

.news-category-bar {
    background: #fff;
    border-bottom: 1px solid var(--ne-line);
    box-shadow: 0 7px 18px rgba(15, 39, 55, .04)
}

.news-category-scroll {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    padding-bottom: 13px;
    padding-top: 13px;
    scrollbar-width: thin
}

    .news-category-scroll a {
        border-radius: 999px;
        color: #647985;
        flex: 0 0 auto;
        font-size: 15px;
        font-weight: 700;
        padding: 8px 15px;
        transition: .2s
    }

        .news-category-scroll a:hover,
        .news-category-scroll a.is-active {
            background: var(--ne-navy);
            color: #fff
        }

.news-index-body {
    padding: 44px 0 25px;
}

.news-section-heading {
    align-items: flex-end;
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px
}

    .news-section-heading h2 {
        color: var(--ne-ink);
        font-family: 'BeVietnamPro-Medium', Arial, sans-serif;
        font-size: 36px;
        font-weight: 500;
        margin: 8px 0 0
    }

    .news-section-heading > p {
        color: var(--ne-muted);
        font-size: 16px;
        line-height: 1.65;
        margin: 0;
        max-width: 515px;
        text-align: right
    }

    .news-section-heading > a {
        color: var(--ne-blue);
        font-size: 16px;
        font-weight: 800
    }

.news-featured-wrap {
    margin-bottom: 42px
}

.news-featured {
    background: var(--ne-soft);
    border: 1px solid var(--ne-line);
    border-radius: 18px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .95fr);
    min-height: 400px;
    overflow: hidden
}

.news-featured__image {
    display: block;
    min-height: 400px;
    overflow: hidden;
    position: relative
}

    .news-featured__image:after {
        background: linear-gradient(0deg, rgba(5, 25, 38, .35), transparent 45%);
        content: "";
        inset: 0;
        position: absolute
    }

    .news-featured__image img {
        height: 100%;
        object-fit: cover;
        transition: .55s ease;
        width: 100%
    }

.news-featured:hover .news-featured__image img {
    transform: scale(1.035)
}

.news-featured__badge {
    background: var(--ne-gold);
    border-radius: 999px;
    bottom: 22px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    left: 22px;
    letter-spacing: .06em;
    padding: 8px 12px;
    position: absolute;
    text-transform: uppercase;
    z-index: 1
}

.news-featured__content {
    align-self: center;
    padding: 42px 42px;
}

.news-card__category {
    color: var(--ne-teal);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
    display: none;
}

.news-featured__content h2 {
    font-family: 'BeVietnamPro-Medium', Arial, sans-serif;
    font-size: 23px;
    font-weight: 500;
    line-height: 1.7;
    margin: 12px 0
}

    .news-featured__content h2 a {
        color: var(--ne-ink);
        display: -webkit-box;
        overflow: hidden;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        text-align: justify;
    }

.news-featured__content > p {
    color: var(--ne-muted);
    font-size: 17px;
    line-height: 1.75;
    margin: 0 0 17px;
    text-align: justify;
}

.news-card__meta {
    align-items: center;
    color: #8a99a3;
    display: flex;
    font-size: 14px;
    gap: 17px
}

    .news-card__meta span {
        align-items: center;
        display: flex;
        gap: 6px
    }

.news-read-more {
    align-items: center;
    border-top: 1px solid var(--ne-line);
    color: var(--ne-blue);
    display: flex;
    font-size: 15px;
    font-weight: 800;
    gap: 9px;
    margin-top: 23px;
    padding-top: 19px
}

    .news-read-more i {
        transition: .2s
    }

    .news-read-more:hover i {
        transform: translateX(4px)
    }

.news-card-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr))
}

.news-card {
    background: #fff;
    border: 1px solid var(--ne-line);
    border-radius: 15px;
    box-shadow: 0 10px 28px rgba(16, 41, 59, .055);
    overflow: hidden;
    transition: .25s
}

    .news-card:hover {
        box-shadow: 0 16px 36px rgba(16, 41, 59, .11);
        transform: translateY(-4px)
    }

.news-card__image {
    display: block;
    height: 230px;
    overflow: hidden;
    position: relative
}

    .news-card__image:after {
        background: linear-gradient(0deg, rgba(4, 25, 39, .3), transparent 50%);
        content: "";
        inset: 0;
        position: absolute
    }

    .news-card__image img {
        height: 100%;
        object-fit: cover;
        transition: .5s;
        width: 100%
    }

.news-card:hover .news-card__image img {
    transform: scale(1.05)
}

.news-card__image > span {
    align-items: center;
    background: #fff;
    border-radius: 50%;
    bottom: 14px;
    color: var(--ne-blue);
    display: flex;
    height: 36px;
    justify-content: center;
    opacity: 0;
    position: absolute;
    right: 14px;
    transform: translateX(10px);
    transition: .25s;
    width: 36px;
    z-index: 1
}

.news-card:hover .news-card__image > span {
    opacity: 1;
    transform: none
}

.news-card__content {
    padding: 21px
}

.news-card__top {
    align-items: center;
    display: flex;
    justify-content: space-between
}

    .news-card__top time {
        color: #9aa8b1;
        font-size: 14px;
    }

.news-card__content h3 {
    font-family: 'BeVietnamPro-Medium', Arial, sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.7;
    margin: 10px 0
}

    .news-card__content h3 a {
        color: var(--ne-ink);
        display: -webkit-box;
        overflow: hidden;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

        .news-card__content h3 a:hover {
            color: var(--ne-blue)
        }

.news-card__content > p {
    color: var(--ne-muted);
    display: -webkit-box;
    font-size: 15px;
    line-height: 1.65;
    margin: 0;
    min-height: 59px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3
}

.news-card__footer {
    align-items: center;
    border-top: 1px solid var(--ne-line);
    display: flex;
    justify-content: space-between;
    margin-top: 17px;
    padding-top: 14px
}

    .news-card__footer span {
        color: #9aa7af;
        font-size: 14px;
    }

        .news-card__footer span i {
            margin-right: 5px
        }

    .news-card__footer a {
        color: var(--ne-blue);
        font-size: 14px;
        font-weight: 800
    }

.news-pagination {
    margin-top: 38px
}

.news-empty {
    background: var(--ne-soft);
    border: 1px dashed #cad7de;
    border-radius: 16px;
    padding: 60px 20px;
    text-align: center
}

    .news-empty > span {
        align-items: center;
        background: #e6eef2;
        border-radius: 50%;
        color: #8ba0ad;
        display: flex;
        font-size: 26px;
        height: 72px;
        justify-content: center;
        margin: 0 auto 18px;
        width: 72px
    }

    .news-empty h2 {
        color: var(--ne-ink);
        font-family: 'BeVietnamPro-Medium', Arial, sans-serif;
        font-size: 27px;
        font-weight: 500;
        margin: 0 0 8px
    }

    .news-empty p {
        color: var(--ne-muted);
        font-size: 12px
    }

    .news-empty > a {
        background: var(--ne-blue);
        border-radius: 8px;
        color: #fff;
        display: inline-block;
        font-size: 11px;
        font-weight: 800;
        margin-top: 12px;
        padding: 12px 18px
    }

.news-subscribe-band {
    background: linear-gradient(120deg, #09233a, #0b617a);
    color: #fff;
    padding: 55px 0
}

    .news-subscribe-band > div {
        align-items: center;
        display: flex;
        justify-content: space-between
    }

    .news-subscribe-band span {
        color: #82dfe1;
        font-size: 17px;
        font-weight: 800;
        letter-spacing: .12em;
        text-transform: uppercase
    }

    .news-subscribe-band h2 {
        color: #fff;
        font-family: 'BeVietnamPro-Medium', Arial, sans-serif;
        font-size: 30px;
        font-weight: 500;
        margin: 8px 0
    }

    .news-subscribe-band p {
        color: rgba(255, 255, 255, .65);
        font-size: 15px;
        margin: 0
    }

    .news-subscribe-band a {
        background: #fff;
        border-radius: 9px;
        color: var(--ne-blue);
        font-size: 16px;
        font-weight: 800;
        padding: 14px 18px;
        white-space: nowrap
    }

.news-detail-hero {
    background: linear-gradient(125deg, #061c2f, #0c405d 68%, #08757d);
    color: #fff;
    padding: 135px 0 70px;
    position: relative
}

    .news-detail-hero:after {
        background: radial-gradient(circle, rgba(255, 255, 255, .12) 1px, transparent 1px);
        background-size: 24px 24px;
        content: "";
        inset: 0;
        opacity: .18;
        position: absolute
    }

    .news-detail-hero > div {
        position: relative;
        z-index: 1
    }

    .news-detail-hero .news-breadcrumb {
        margin-bottom: 36px
    }

    .news-detail-hero h1 {
        color: #fff;
        font-family: 'BeVietnamPro-Medium', Arial, sans-serif;
        font-size: 34px;
        font-weight: 500;
        letter-spacing: -.02em;
        line-height: 1.5;
        margin: 16px 0 23px;
        max-width: 970px
    }

.news-detail-meta {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 20px
}

    .news-detail-meta span {
        align-items: center;
        color: rgba(255, 255, 255, .7);
        display: flex;
        font-size: 15px;
        gap: 7px
    }

    .news-detail-meta i {
        color: #75d4dc
    }

.news-detail-body {
    background: #f7f9fa;
    padding: 58px 0 78px
}

.news-detail-layout {
    align-items: start;
    display: grid;
    gap: 30px;
    grid-template-columns: minmax(0, 1fr) 340px
}

.news-article {
    background: #fff;
    border: 1px solid var(--ne-line);
    border-radius: 17px;
    box-shadow: 0 14px 42px rgba(16, 41, 59, .065);
    overflow: hidden;
    padding: 44px
}

.news-article__lead {
    border-left: 3px solid var(--ne-gold);
    color: #405866;
    font-family: 'BeVietnamPro-Medium', Arial, sans-serif;
    font-size: 18px;
    font-style: italic;
    line-height: 1.75;
    margin: 0 0 30px;
    padding: 3px 0 3px 20px
}

.news-article__cover {
    margin: 0;
}

    .news-article__cover img {
        border-radius: 12px;
        display: block;
        max-height: 560px;
        object-fit: cover;
        width: 100%
    }

    .news-article__cover figcaption {
        color: #98a5ad;
        font-size: 15px;
        line-height: 1.5;
        margin-top: 8px;
        text-align: center
    }

.news-attachment {
    align-items: center;
    background: #eff8fa;
    border: 1px solid #cce8ec;
    border-radius: 12px;
    display: grid;
    gap: 12px;
    grid-template-columns: auto 1fr auto;
    margin-bottom: 30px;
    padding: 15px
}

    .news-attachment > span {
        align-items: center;
        background: #fff;
        border-radius: 10px;
        color: var(--ne-teal);
        display: flex;
        font-size: 20px;
        height: 43px;
        justify-content: center;
        width: 43px
    }

    .news-attachment small,
    .news-attachment strong {
        display: block
    }

    .news-attachment small {
        color: #7f949f;
        font-size: 9px;
        text-transform: uppercase
    }

    .news-attachment strong {
        color: #2c4856;
        font-size: 12px;
        margin-top: 3px;
        overflow-wrap: anywhere
    }

    .news-attachment > a {
        background: var(--ne-blue);
        border-radius: 8px;
        color: #fff;
        font-size: 10px;
        font-weight: 800;
        padding: 11px 13px
    }

.news-richtext {
    color: #344d5b;
    font-family: 'Arimo-Regular', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.85
}

    .news-richtext h2,
    .news-richtext h3,
    .news-richtext h4 {
        color: var(--ne-ink);
        font-family: 'BeVietnamPro-Medium', Arial, sans-serif;
        font-weight: 500;
        line-height: 1.4;
        margin: 31px 0 13px
    }

    .news-richtext h2 {
        font-size: 28px
    }

    .news-richtext h3 {
        font-size: 23px
    }

    .news-richtext p {
        margin: 0 0 17px
    }

    .news-richtext img {
        max-width: 100% !important
    }

    .news-richtext iframe {
        aspect-ratio: 16/9;
        height: auto;
        max-width: 100%;
        width: 100%
    }

    .news-richtext table {
        border-collapse: collapse;
        display: block;
        max-width: 100%;
        overflow-x: auto
    }

    .news-richtext td,
    .news-richtext th {
        border: 1px solid var(--ne-line);
        padding: 8px
    }

    .news-richtext a {
        color: var(--ne-blue);
        text-decoration: underline
    }

    .news-richtext blockquote {
        background: #f4f8fa;
        border-left: 3px solid var(--ne-teal);
        font-family: 'BeVietnamPro-Medium', Arial, sans-serif;
        font-style: italic;
        margin: 24px 0;
        padding: 18px 22px
    }

.news-album {
    border-top: 1px solid var(--ne-line);
    margin-top: 35px;
    padding-top: 32px
}

    .news-album > header {
        margin-bottom: 18px
    }

        .news-album > header > span {
            color: var(--ne-teal);
            font-size: 10px;
            font-weight: 800;
            letter-spacing: .1em;
            text-transform: uppercase
        }

    .news-album h2 {
        color: var(--ne-ink);
        font-family: 'BeVietnamPro-Medium', Arial, sans-serif;
        font-size: 27px;
        font-weight: 500;
        margin: 5px 0
    }

    .news-album header p {
        color: var(--ne-muted);
        font-size: 10px;
        margin: 0
    }

.news-album-grid {
    display: grid;
    gap: 9px;
    grid-template-columns: repeat(3, minmax(0, 1fr))
}

.news-album-item {
    border-radius: 9px;
    height: 170px;
    overflow: hidden;
    position: relative
}

    .news-album-item img {
        height: 100%;
        object-fit: cover;
        transition: .4s;
        width: 100%
    }

    .news-album-item span {
        align-items: center;
        background: rgba(5, 28, 42, .65);
        color: #fff;
        display: flex;
        inset: 0;
        justify-content: center;
        opacity: 0;
        position: absolute;
        transition: .25s
    }

    .news-album-item:hover img {
        transform: scale(1.06)
    }

    .news-album-item:hover span {
        opacity: 1
    }

.news-article-end {
    align-items: flex-start;
    border-top: 1px solid var(--ne-line);
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin-top: 10px;
    padding-top: 24px
}

.news-tags {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    width: 78%;
}

    .news-tags strong {
        color: #526976;
        font-size: 15px;
        font-family: 'BeVietnamPro-SemiBold';
    }

    .news-tags a {
        background: #f0f5f7;
        border-radius: 999px;
        color: #637985;
        font-size: 13px;
        padding: 4px 10px;
        font-family: 'Arimo-Regular';
    }

.news-share {
    align-items: center;
    display: flex;
    gap: 7px;
    flex: 1 1 0;
    justify-content: end;
    -webkit-justify-content: flex-end;
}

    .news-share > strong {
        color: #617682;
        font-size: 13px;
    }

    .news-share button {
        align-items: center;
        background: #edf4f7;
        border: 0;
        border-radius: 50%;
        color: var(--ne-blue);
        cursor: pointer;
        display: flex;
        height: 34px;
        justify-content: center;
        position: relative;
        width: 34px
    }

.news-share-copy span {
    background: var(--ne-navy);
    border-radius: 5px;
    bottom: 42px;
    color: #fff;
    font-size: 11px;
    opacity: 0;
    padding: 5px 7px;
    pointer-events: none;
    position: absolute;
    transition: .2s;
    white-space: nowrap
}

.news-share-copy.is-copied span {
    opacity: 1
}

.news-comments {
    border-top: 1px solid var(--ne-line);
    margin-top: 35px;
    padding-top: 32px
}

    .news-comments > header {
        align-items: flex-end;
        display: flex;
        justify-content: space-between;
        margin-bottom: 20px
    }

        .news-comments > header h2 {
            color: var(--ne-ink);
            font-family: 'BeVietnamPro-Medium', Arial, sans-serif;
            font-size: 26px;
            font-weight: 500;
            margin: 5px 0 0
        }

        .news-comments > header > span {
            color: var(--ne-muted);
            font-size: 14px;
            font-family: 'Arimo-Regular';
        }

.news-comment-form {
    background: #f5f8fa;
    border: 1px solid var(--ne-line);
    border-radius: 12px;
    padding: 20px
}

.news-comment-fields {
    display: grid;
    gap: 13px;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 13px
}

.news-comment-form label {
    color: #506773;
    display: block;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 7px
}

.news-comment-form input[type=text],
.news-comment-form textarea {
    background: #fff;
    border: 1px solid #d8e3e8;
    border-radius: 8px;
    color: var(--ne-text);
    font-size: 16px;
    outline: none;
    padding: 11px;
    width: 100%;
    font-family: 'BeVietnamPro-Regular';
}

.news-comment-form input[type=text] {
    height: 42px
}

.news-comment-form textarea {
    line-height: 1.55;
    resize: vertical
}

    .news-comment-form input:focus,
    .news-comment-form textarea:focus {
        border-color: var(--ne-teal);
        box-shadow: 0 0 0 3px rgba(11, 154, 159, .09)
    }

.news-captcha {
    display: grid;
    gap: 7px;
    grid-template-columns: 100px 1fr
}

    .news-captcha > strong {
        align-items: center;
        background: #e4eef2;
        border-radius: 8px;
        color: var(--ne-navy);
        display: flex;
        font-family: monospace;
        font-size: 18px;
        justify-content: center;
        letter-spacing: .15em
    }

.news-comment-honeypot {
    height: 0;
    left: -10000px;
    overflow: hidden;
    position: absolute;
    width: 0
}

.news-comment-submit {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-top: 13px
}

    .news-comment-submit p {
        color: #8a9aa4;
        font-size: 15px;
        margin: 0;
        font-family: 'Arimo-Regular';
    }

    .news-comment-submit input {
        background: var(--ne-blue);
        border: 0;
        border-radius: 8px;
        color: #fff;
        cursor: pointer;
        font-size: 15px;
        font-weight: 800;
        padding: 12px 17px;
        font-family: 'BEVIETNAMPRO-SEMIBOLD';
    }

.news-comment-list {
    display: grid;
    gap: 13px;
    margin-top: 22px
}

.news-comment {
    display: grid;
    gap: 12px;
    grid-template-columns: 42px 1fr
}

.news-comment__avatar {
    align-items: center;
    background: linear-gradient(135deg, var(--ne-blue), var(--ne-teal));
    border-radius: 50%;
    color: #fff;
    display: flex;
    font-size: 15px;
    font-weight: 800;
    height: 42px;
    justify-content: center;
    width: 42px
}

.news-comment > div {
    background: #f8fafb;
    border: 1px solid var(--ne-line);
    border-radius: 10px;
    padding: 13px
}

.news-comment header {
    align-items: center;
    display: flex;
    justify-content: space-between
}

    .news-comment header strong {
        color: #314a59;
        font-size: 11px
    }

.news-comment time {
    color: #9aa8b0;
    font-size: 8px
}

.news-comment > div > p,
.news-comment__reply p {
    color: #5d717d;
    font-size: 11px;
    line-height: 1.65;
    margin: 7px 0 0
}

.news-comment__reply {
    background: #eaf6f6;
    border-left: 2px solid var(--ne-teal);
    margin-top: 11px;
    padding: 10px
}

    .news-comment__reply strong {
        color: #167c80;
        font-size: 9px
    }

.news-no-comments {
    background: #f8fafb;
    border-radius: 9px;
    color: #8b9aa3;
    font-size: 16px;
    padding: 14px;
    text-align: center;
    font-family: 'Arimo-Regular';
}

.news-detail-aside {
    display: grid;
    gap: 20px;
    position: sticky;
    top: 95px
}

.news-aside-card {
    background: #fff;
    border: 1px solid var(--ne-line);
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(16, 41, 59, .05);
    padding: 22px
}

    .news-aside-card > header span {
        color: var(--ne-teal);
        font-size: 13px;
        font-weight: 800;
        letter-spacing: .09em;
        text-transform: uppercase
    }

    .news-aside-card > header h2 {
        color: var(--ne-ink);
        font-family: 'BeVietnamPro-Medium', Arial, sans-serif;
        font-size: 24px;
        font-weight: 500;
        margin: 5px 0 17px
    }

.news-aside-about {
    background: linear-gradient(140deg, #09253c, #0c6678);
    color: #fff
}

    .news-aside-about > span {
        align-items: center;
        background: rgba(255, 255, 255, .12);
        border-radius: 10px;
        color: #83e1e3;
        display: flex;
        font-size: 20px;
        height: 45px;
        justify-content: center;
        width: 45px
    }

    .news-aside-about h2 {
        color: #fff;
        font-family: 'BeVietnamPro-Medium', Arial, sans-serif;
        font-size: 25px;
        font-weight: 500;
        margin: 16px 0 8px
    }

    .news-aside-about p {
        color: rgba(255, 255, 255, .67);
        font-size: 14px;
        line-height: 1.65
    }

    .news-aside-about > a {
        border-top: 1px solid rgba(255, 255, 255, .16);
        color: #fff;
        display: block;
        font-size: 14px;
        font-weight: 800;
        margin-top: 16px;
        padding-top: 14px
    }

.news-popular-list {
    display: grid;
    gap: 14px
}

    .news-popular-list article {
        align-items: center;
        display: grid;
        gap: 11px;
        grid-template-columns: 85px 1fr
    }

        .news-popular-list article > a {
            border-radius: 8px;
            height: 76px;
            overflow: hidden
        }

    .news-popular-list img {
        height: 100%;
        object-fit: cover;
        width: 100%
    }

    .news-popular-list time {
        color: #9aa8b0;
        font-size: 11px;
    }

    .news-popular-list h3 {
        font-family: 'BeVietnamPro-Medium', Arial, sans-serif;
        font-size: 15px;
        font-weight: 500;
        line-height: 1.7;
        margin: 4px 0
    }

        .news-popular-list h3 a {
            color: var(--ne-ink);
            display: -webkit-box;
            overflow: hidden;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }

.news-aside-banner {
    border-radius: 14px;
    display: block;
    overflow: hidden
}

    .news-aside-banner img {
        display: block;
        height: auto;
        width: 100%
    }

.news-related {
    background: #fff;
    padding: 70px 0 85px
}

    .news-related .news-card-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr))
    }

@media(max-width:1023px) {
    .news-featured {
        grid-template-columns: 1.1fr .9fr
    }

    .news-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .news-detail-layout {
        grid-template-columns: minmax(0, 1fr) 300px
    }

    .news-article {
        padding: 32px
    }

    .news-detail-hero h1 {
        font-size: 42px
    }

    .news-plan-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:767px) {
    .news-hero {
        height: 390px;
        padding-bottom: 21px;
    }

    .news-hero__overlay {
        background: linear-gradient(0deg, rgba(4, 23, 37, .94), rgba(4, 23, 37, .5))
    }

    .news-category-scroll {
        margin: 10px 0 !important;
    }

    .news-hero__content {
        justify-content: flex-end;
        padding-bottom: 55px;
        padding-top: 80px
    }

    .news-hero h1 {
        font-size: 32px;
    }

    .news-hero__content > p {
        font-size: 13px;
        text-align: justify;
    }

    .news-hero__meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px
    }

    .news-index-body {
        padding: 35px 0 20px;
    }

    .news-section-heading {
        align-items: flex-start;
        display: block
    }

        .news-section-heading h2 {
            font-size: 27px;
        }

        .news-section-heading > p {
            margin-top: 10px;
            text-align: left
        }

    .news-featured {
        display: block
    }

    .news-featured__image {
        min-height: 260px
    }

    .news-featured__content {
        padding: 15px;
    }

        .news-featured__content h2 {
            font-size: 21px;
        }

    .news-card-grid,
    .news-related .news-card-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .news-card__content h3 {
        font-size: 16px;
    }

    .news-card__image {
        height: 235px
    }

    .news-subscribe-band > div {
        align-items: flex-start;
        display: flex;
        flex-direction: column;
        gap: 20px
    }

    .news-subscribe-band h2 {
        font-size: 26px
    }

    .news-detail-hero {
        padding: 35px 0 30px;
    }

        .news-detail-hero h1 {
            font-size: 23px;
        }

    .news-eyebrow {
        font-size: 12px;
    }

    .news-detail-meta {
        gap: 5px 11px;
    }

    .news-detail-body {
        padding: 30px 0 31px;
    }

    .news-detail-meta span {
        font-size: 14px;
    }

    .news-detail-layout {
        display: block
    }

    .news-article {
        border-radius: 12px;
        padding: 21px
    }

    .news-article__lead {
        font-size: 15px;
        padding-left: 14px;
        text-align: justify;
    }

    .news-article__cover {
        margin-bottom: 26px
    }

    .news-richtext {
        font-size: 15px;
    }

    .news-detail-aside {
        margin-top: 24px;
        position: static
    }

    .news-album-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .news-album-item {
        height: 135px
    }

    .news-article-end {
        align-items: flex-start;
        flex-direction: column
    }

    .news-comment-fields {
        grid-template-columns: 1fr
    }

    .news-comment-submit {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px
    }

        .news-comment-submit input {
            width: 100%
        }

    .news-attachment {
        grid-template-columns: auto 1fr
    }

        .news-attachment > a {
            grid-column: 1/-1;
            text-align: center
        }

    .news-related {
        padding: 30px 0 55px;
    }
}

@media(max-width:420px) {
    .news-hero h1 {
        font-size: 34px
    }

    .news-featured__image {
        min-height: 225px
    }

    .news-card__image {
        height: 155px;
    }

    .news-detail-hero h1 {
        font-size: 20px;
    }

    .news-card__content {
        padding: 12px;
    }

    .news-article {
        padding: 17px;
    }

    .news-album-grid {
        grid-template-columns: 1fr
    }

    .news-album-item {
        height: 210px
    }

    .news-captcha {
        grid-template-columns: 90px 1fr
    }

    .news-comment {
        grid-template-columns: 34px 1fr
    }

    .news-comment__avatar {
        height: 34px;
        width: 34px
    }
}

/* Trang tÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ng hÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â£p tin tÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â©c theo tag */

.news-tag-hero {
    background: linear-gradient(125deg, #061d31 0%, #0a4862 62%, #087c80 100%);
    color: #fff;
    overflow: hidden;
    padding: 130px 0 68px;
    position: relative
}

.news-tag-hero__pattern {
    background: radial-gradient(circle, rgba(255, 255, 255, .14) 1px, transparent 1px);
    background-size: 23px 23px;
    inset: 0;
    opacity: .25;
    position: absolute
}

.news-tag-hero:before {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    left: 0;
    height: 330px;
    pointer-events: none;
    background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0.00) 100%);
}

.news-tag-hero:after {
    border: 65px solid rgba(255, 255, 255, .035);
    border-radius: 50%;
    content: "";
    height: 330px;
    position: absolute;
    right: -80px;
    top: -130px;
    width: 330px
}

.news-tag-hero__inner {
    position: relative;
    z-index: 1
}

.news-tag-hero .news-breadcrumb {
    margin-bottom: 35px
}

.news-tag-heading {
    align-items: center;
    display: flex;
    gap: 24px
}

.news-tag-heading__icon {
    align-items: center;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 18px;
    color: #84e2e2;
    display: flex;
    flex: 0 0 82px;
    font-size: 32px;
    height: 82px;
    justify-content: center
}

.news-tag-heading h1 {
    color: #fff;
    font-family: 'BeVietnamPro-Medium', Arial, sans-serif;
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -.02em;
    margin: 14px 0;
}

.news-tag-heading p {
    color: rgba(255, 255, 255, .68);
    font-size: 15px;
    line-height: 1.65;
    margin: 0
}

.news-tag-summary {
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, .15);
    display: flex;
    gap: 34px;
    margin-top: 31px;
    padding-top: 19px
}

    .news-tag-summary > span {
        align-items: center;
        display: flex;
        gap: 9px
    }

    .news-tag-summary strong {
        color: #fff;
        font-family: 'BeVietnamPro-Medium', Arial, sans-serif;
        font-size: 28px;
    }

    .news-tag-summary small {
        color: rgba(255, 255, 255, .67);
        font-size: 14px;
    }

    .news-tag-summary i {
        color: #82dfe1;
        font-size: 15px
    }

.news-tag-navigation {
    background: #fff;
    border-bottom: 1px solid var(--ne-line);
    box-shadow: 0 6px 20px rgba(16, 41, 59, .045)
}

    .news-tag-navigation > div {
        align-items: center;
        display: flex;
        gap: 14px;
        padding-bottom: 13px;
        padding-top: 13px
    }

        .news-tag-navigation > div > strong {
            color: #4e6572;
            flex: 0 0 auto;
            font-size: 13px;
        }

            .news-tag-navigation > div > strong i {
                color: var(--ne-teal);
                margin-right: 5px
            }

.news-tag-scroll {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    scrollbar-width: thin
}

    .news-tag-scroll a {
        background: #f1f5f7;
        border-radius: 999px;
        color: #617783;
        flex: 0 0 auto;
        font-size: 14px;
        padding: 8px 11px;
        transition: .2s
    }

        .news-tag-scroll a:hover {
            background: var(--ne-navy);
            color: #fff
        }

.news-tag-results {
    background: #f8fafb
}

    .news-tag-results .news-featured,
    .news-tag-results .news-card {
        background: #fff
    }

.news-tag-featured {
    box-shadow: 0 12px 34px rgba(16, 41, 59, .06)
}

.news-tag-empty {
    background: #fff
}

.news-tag-assurance {
    background: #fff;
    border-top: 1px solid var(--ne-line);
    padding: 48px 0
}

    .news-tag-assurance > div {
        align-items: center;
        display: grid;
        gap: 17px;
        grid-template-columns: auto 1fr auto
    }

        .news-tag-assurance > div > span {
            align-items: center;
            background: #eaf6f6;
            border-radius: 14px;
            color: var(--ne-teal);
            display: flex;
            font-size: 24px;
            height: 58px;
            justify-content: center;
            width: 58px
        }

    .news-tag-assurance small {
        color: var(--ne-teal);
        font-size: 15px;
        font-weight: 800;
        letter-spacing: .1em;
        text-transform: uppercase
    }

    .news-tag-assurance h2 {
        color: var(--ne-ink);
        font-family: 'BeVietnamPro-Medium', Arial, sans-serif;
        font-size: 26px;
        font-weight: 500;
        margin: 5px 0;
        line-height: 1.4;
    }

    .news-tag-assurance p {
        color: var(--ne-muted);
        font-size: 16px;
        margin: 0
    }

    .news-tag-assurance a {
        background: var(--ne-blue);
        border-radius: 9px;
        color: #fff;
        font-size: 15px;
        font-weight: 800;
        padding: 12px 17px;
        white-space: nowrap
    }

@media(max-width:767px) {
    .news-tag-hero {
        padding: 100px 0 50px
    }

    .news-tag-heading {
        align-items: flex-start
    }

    .news-tag-heading__icon {
        border-radius: 13px;
        flex-basis: 56px;
        font-size: 23px;
        height: 56px
    }

    .news-tag-heading h1 {
        font-size: 26px;
        overflow-wrap: anywhere
    }

    .news-tag-heading p {
        font-size: 12px
    }

    .news-tag-summary {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px
    }

    .news-tag-navigation > div {
        align-items: flex-start;
        flex-direction: column
    }

    .news-tag-scroll {
        max-width: 100%;
        width: 100%
    }

    .news-tag-navigation {
        padding: 12px 0 !important;
    }

    .news-tag-assurance > div {
        align-items: flex-start;
        grid-template-columns: auto 1fr
    }

    .news-tag-assurance a {
        grid-column: 1/-1;
        text-align: center;
        width: 100%
    }

    .news-tag-assurance h2 {
        font-size: 23px
    }
}