.news-page {
    --news-ink: var(--cbe-ink, #17324d);
    --news-muted: #5f7488;
    --news-line: #d8e8f4;
    --news-soft: #f5fbff;
    --news-accent: #0f6f9b;
    --news-green: #008060;
}

.news-page.container {
    width: calc(100% - 30px);
    max-width: 1300px;
}

.news-page__inner {
    padding-bottom: 42px;
}

.news-detail-layout,
.news-category-layout {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.news-detail-layout:before,
.news-detail-layout:after,
.news-category-layout:before,
.news-category-layout:after {
    display: none;
}

.news-main {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
    max-width: none;
    float: none;
    padding-left: 0;
    padding-right: 0;
}

.news-sidebar {
    flex: 0 0 320px;
    width: 320px;
    max-width: 320px;
    float: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: static !important;
    top: auto !important;
    padding-left: 0;
    padding-right: 0;
}

.news-hero {
    position: relative;
    overflow: hidden;
    margin: 0 0 24px;
    padding: 34px 36px;
    border: 1px solid var(--news-line);
    border-radius: 28px;
    background:
        radial-gradient(circle at 92% 0, rgba(15,111,155,.18) 0 0, transparent 230px),
        linear-gradient(135deg, #12324d 0%, #1d6f95 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.news-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 10px;
    color: rgba(255,255,255,.72);
    font-size: 13px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.news-hero__title {
    margin: 0;
    color: #fff;
    font-family: "Roboto Slab", serif;
    font-size: 34px;
    line-height: 1.22;
    font-weight: 800;
}

.news-hero__desc {
    max-width: 840px;
    margin: 14px 0 0;
    color: rgba(255,255,255,.84);
    font-size: 17px;
    line-height: 1.7;
}

.news-hero__note {
    flex: 0 0 340px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    color: rgba(255,255,255,.88);
    font-size: 14px;
    line-height: 1.45;
    font-weight: 700;
}

.news-card-list {
    display: grid;
    gap: 18px;
}

.news-card {
    display: grid;
    grid-template-columns: minmax(260px, 34%) minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid var(--news-line);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(17,49,78,.07);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.news-card:hover {
    transform: translateY(-2px);
    border-color: #bfd8ea;
    box-shadow: 0 24px 54px rgba(17,49,78,.11);
}

.news-card__media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 260px;
    padding: 18px;
    background: linear-gradient(180deg, #eef9ff 0%, #e4f4fb 100%);
}

.news-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 18px 36px rgba(17,49,78,.10);
}

.news-card__body {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 22px 24px;
}

.news-card__title {
    margin: 0;
    color: var(--news-ink);
    font-family: "Roboto Slab", serif;
    font-size: 24px;
    line-height: 1.35;
    font-weight: 800;
}

.news-card__title a {
    color: inherit;
    text-decoration: none;
}

.news-card__title a:hover {
    color: var(--news-accent);
    text-decoration: none;
}

.news-card__meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    color: var(--news-muted);
    font-size: 14px;
    font-weight: 700;
}

.news-card__meta i,
.news-card__desc i {
    color: var(--news-accent);
}

.news-card__desc {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 10px;
    margin: 16px 0 0;
    padding-top: 16px;
    border-top: 1px dashed var(--news-line);
    color: var(--news-muted);
    font-size: 16px;
    line-height: 1.65;
}

.news-card__desc span {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news-card__footer {
    display: flex;
    justify-content: flex-end;
    margin-top: auto;
    padding-top: 18px;
}

.news-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    background: #17324d;
    color: #fff !important;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none !important;
}

.news-card__cta:hover {
    background: #0f6f9b;
}

.news-pagination {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.news-empty {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 22px 24px;
    border: 1px solid var(--news-line);
    border-radius: 22px;
    background: #fff;
    color: var(--news-muted);
    font-weight: 700;
}

.news-page--detail {
    padding-bottom: 52px;
}

.news-page--detail .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0 0 18px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #6d8092;
    font-size: 14px;
    line-height: 1.5;
}

.news-page--detail .breadcrumb a {
    color: #35506c;
    text-decoration: none;
}

.news-page--detail .breadcrumb a:hover {
    color: var(--news-accent);
}

.news-page--detail .breadcrumb span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.news-page--detail .breadcrumb .navigation-pipe:before {
    content: "/";
    color: #9aabb9;
    margin-right: 2px;
}

.news-page--detail .news-detail-layout {
    gap: 30px;
}

.news-page--detail .news-main {
    padding: 34px 38px;
    border: 1px solid var(--news-line);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 22px 54px rgba(17,49,78,.06);
}

.news-detail__title {
    margin: 0 0 24px;
    padding: 0 0 18px;
    border: 0;
    border-bottom: 1px solid var(--news-line);
    color: var(--news-ink);
    font-family: "Roboto Slab", serif;
    font-size: 42px;
    line-height: 1.18;
    font-weight: 800;
}

.news-page--detail .list_bus_home,
.news-page--detail .page-detail {
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.news-page--detail .content-prose {
    color: #2f4961;
    font-size: 17px;
    line-height: 1.85;
}

.news-page--detail .content-prose p {
    margin: 0 0 18px;
}

.news-page--detail .content-prose h2,
.news-page--detail .content-prose h3 {
    color: var(--news-ink);
    font-family: "Roboto Slab", serif;
    font-weight: 800;
}

.news-page--detail .content-prose img {
    display: block;
    max-width: min(100%, 940px);
    height: auto !important;
    margin: 28px auto;
    border-radius: 20px;
    box-shadow: 0 22px 48px rgba(17,49,78,.12);
}

.news-page--detail .news-sidebar {
    flex-basis: 360px;
    width: 360px;
    max-width: 360px;
}

.news-page--detail .news-sidebar .site-sidebar__card {
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(17,49,78,.06);
}

.news-page--detail .news-sidebar .site-sidebar__title {
    margin-bottom: 14px;
    color: var(--news-ink);
    font-family: "Roboto Slab", serif;
    font-size: 22px;
    line-height: 1.25;
}

.news-page--detail .news-sidebar .site-sidebar__item {
    border-radius: 18px;
    background: var(--news-soft);
}

.news-page--detail .news-sidebar .site-sidebar__media {
    border-radius: 16px;
}

.news-sidebar .bus-side__card--showcase {
    margin-top: 0;
}

.news-sidebar .bus-side__feature-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #6683a1;
    font-size: 18px;
}

.news-sidebar .bus-side__feature-body,
.news-sidebar .bus-side__support-main {
    min-width: 0;
}

.news-sidebar .bus-side__feature-body strong,
.news-sidebar .bus-side__support-main strong {
    display: block;
    color: var(--news-ink);
    font-size: 14px;
    line-height: 1.45;
    font-weight: 800;
}

.news-sidebar .bus-side__feature-body small,
.news-sidebar .bus-side__support-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    color: var(--news-muted);
    font-size: 13px;
    line-height: 1.55;
}

.news-sidebar .bus-side__feature-body small i,
.news-sidebar .bus-side__support-link i {
    width: 16px;
    color: var(--news-accent);
    text-align: center;
}

.news-sidebar .bus-side__feature-price {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    color: var(--news-muted);
    font-size: 13px;
    line-height: 1.45;
    font-weight: 800;
}

.news-sidebar .bus-side__feature-price:before {
    content: "\f02b";
    font-family: FontAwesome;
    color: var(--news-accent);
    font-weight: 400;
}

.news-sidebar .bus-side__support-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
}

.news-sidebar .bus-side__support-link {
    font-weight: 800;
    text-decoration: none;
}

.news-sidebar__title,
.news-sidebar .news-side__title {
    display: flex;
    align-items: center;
    gap: 9px;
}

.news-sidebar__title i,
.news-sidebar__meta i,
.news-sidebar .news-side__title i,
.news-sidebar .news-side__meta i {
    color: var(--news-accent);
}

.news-sidebar__same-list,
.news-sidebar .news-side__same-list {
    display: grid;
    gap: 10px;
}

.news-sidebar__same-item,
.news-sidebar .news-side__same-item {
    align-items: flex-start;
}

.news-sidebar__same-name,
.news-sidebar .news-side__same-name {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news-sidebar__meta,
.news-sidebar .news-side__meta {
    margin-top: 5px;
}

.news-sidebar__placeholder,
.news-sidebar .news-side__placeholder {
    font-size: 22px;
}

.news-rating {
    margin-top: 34px;
    padding: 26px;
    border: 1px solid var(--news-line);
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    box-shadow: 0 18px 42px rgba(17,49,78,.06);
}

.news-rating__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 26px;
    padding: 0 0 22px;
    border-bottom: 1px solid var(--news-line);
}

.news-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #6b8298;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.news-rating__title {
    margin: 0;
    color: var(--news-ink);
    font-family: "Roboto Slab", serif;
    font-size: 26px;
    line-height: 1.25;
    font-weight: 800;
}

.news-rating__tip {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 440px;
    padding: 14px 18px;
    border: 1px solid var(--news-line);
    border-radius: 999px;
    background: #fff;
    color: var(--news-muted);
    font-size: 15px;
    line-height: 1.45;
}

.news-rating__tip i {
    color: var(--news-accent);
}

.news-rating__layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 28px;
    align-items: stretch;
}

.news-rating__score {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 210px;
    padding: 28px 20px;
    border-radius: 24px;
    background: linear-gradient(135deg, #14324f 0%, #1c5376 100%);
    color: #fff;
    text-align: center;
}

.news-rating__score-value {
    font-size: 64px;
    line-height: 1;
    font-weight: 800;
}

.news-rating__score-note {
    margin-top: 14px;
    font-size: 15px;
    font-weight: 800;
}

.news-rating__score-count {
    margin-top: 12px;
    color: rgba(255,255,255,.76);
    font-size: 15px;
}

.news-rating__body {
    align-self: center;
}

.news-rating__body h4 {
    margin: 0 0 8px;
    color: var(--news-ink);
    font-family: "Roboto Slab", serif;
    font-size: 26px;
    line-height: 1.3;
    font-weight: 800;
}

.news-rating__body p {
    margin: 0 0 18px;
    color: var(--news-muted);
}

.news-rating__stars {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.news-rating__star {
    width: 58px;
    height: 58px;
    border: 1px solid #f2a31a;
    border-radius: 18px;
    background: #fff7e8;
    color: #f39a12;
    font-size: 26px;
    line-height: 1;
    transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}

.news-rating__star:hover,
.news-rating__star:focus,
.news-rating__star.is-filled {
    transform: translateY(-1px);
    background: #f7a51c;
    color: #fff;
    box-shadow: 0 12px 26px rgba(243,154,18,.22);
}

.news-rating__hint,
.news-rating__message {
    margin-top: 12px;
    color: var(--news-muted);
    font-size: 15px;
}

@media (max-width: 991px) {
    .news-detail-layout,
    .news-category-layout {
        display: block;
    }

    .news-sidebar {
        width: 100%;
        max-width: none;
        margin-top: 24px;
    }

    .news-page--detail .news-main {
        padding: 28px 24px;
        border-radius: 24px;
    }

    .news-page--detail .news-sidebar {
        width: 100%;
        max-width: none;
    }

    .news-detail__title {
        font-size: 34px;
    }

    .news-rating__head {
        display: block;
    }

    .news-rating__tip {
        max-width: none;
        margin-top: 14px;
        border-radius: 18px;
    }

    .news-rating__layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .news-rating__score {
        min-height: 170px;
    }

    .news-hero {
        display: block;
    }

    .news-hero__note {
        width: 100%;
        margin-top: 18px;
        border-radius: 18px;
    }
}

@media (max-width: 767px) {
    .news-page.container {
        width: 100%;
        padding-right: 14px;
        padding-left: 14px;
    }

    .news-hero {
        padding: 26px 22px;
        border-radius: 22px;
    }

    .news-hero__title {
        font-size: 28px;
    }

    .news-card {
        grid-template-columns: minmax(0, 1fr);
        border-radius: 22px;
    }

    .news-card__media {
        min-height: 220px;
        padding: 16px;
    }

    .news-card__body {
        padding: 20px;
    }

    .news-card__title {
        font-size: 22px;
    }

    .news-page--detail .breadcrumb {
        gap: 6px;
    }

    .news-page--detail .news-main {
        padding: 22px 18px;
        border-radius: 22px;
    }

    .news-detail__title {
        font-size: 28px;
    }

    .news-page--detail .content-prose {
        font-size: 16px;
    }

    .news-page--detail .content-prose img {
        border-radius: 16px;
        margin: 22px auto;
    }

    .news-rating {
        padding: 20px;
        border-radius: 22px;
    }

    .news-rating__title,
    .news-rating__body h4 {
        font-size: 22px;
    }

    .news-rating__score-value {
        font-size: 52px;
    }

    .news-rating__star {
        width: 52px;
        height: 52px;
        border-radius: 16px;
    }
}
