:root {
    --ne-red: #d71920;
    --ne-red-dark: #a90f15;
    --ne-green: #2bb79a;
    --ne-coral: #f46f61;
    --ne-ink: #222;
    --ne-muted: #666;
    --ne-subtle: #999;
    --ne-line: #e6e6e6;
    --ne-soft-line: #f1f1f1;
    --ne-bg: #fff;
    --ne-panel: #fff;
    --ne-soft: #f7f8fa;
}

* {
    box-sizing: border-box;
}

.ne-body {
    margin: 0;
    background: var(--ne-bg);
    color: var(--ne-ink);
    font-family: Arial, "Microsoft YaHei", "PingFang SC", sans-serif;
    overflow-x: hidden;
}

.ne-body a {
    color: inherit;
    text-decoration: none;
}

.ne-main {
    min-height: 60vh;
    background: var(--ne-bg);
}

.ne-shell {
    width: min(1200px, calc(100vw - 40px));
    margin: 0 auto;
}

.ne-globalbar {
    background: #2b2b2b;
    color: #d6d6d6;
    font-size: 12px;
}

.ne-globalbar-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 36px;
    gap: 16px;
}

.ne-globalbar nav {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.ne-globalbar a:hover {
    color: #fff;
}

.ne-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--ne-line);
    background: rgba(255, 255, 255, .97);
}

.ne-header-row {
    display: flex;
    align-items: center;
    min-height: 72px;
    gap: 24px;
}

.ne-brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 10px;
    min-width: 180px;
    color: var(--ne-ink);
    font-size: 25px;
    font-weight: 900;
    line-height: 1;
}

.ne-brand-mark {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 34px;
    border-radius: 4px;
    background: var(--ne-red);
    color: #fff;
    font-size: 22px;
    font-weight: 900;
}

.ne-topnav {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 18px;
    color: #333;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
}

.ne-topnav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 72px;
    border-bottom: 3px solid transparent;
}

.ne-topnav a:hover,
.ne-topnav a.is-active {
    color: var(--ne-red);
    border-bottom-color: var(--ne-red);
}

.ne-search {
    display: flex;
    align-items: center;
    width: 260px;
    margin-left: auto;
    border: 1px solid var(--ne-line);
    border-radius: 4px;
    background: #f7f7f7;
    overflow: hidden;
}

.ne-search input {
    min-width: 0;
    flex: 1;
    border: 0;
    background: transparent;
    padding: 9px 10px;
    color: var(--ne-ink);
    font-size: 13px;
    outline: none;
}

.ne-search button {
    flex: 0 0 auto;
    border: 0;
    background: var(--ne-red);
    padding: 9px 13px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.ne-mobile-menu {
    display: none;
    margin-left: auto;
    color: var(--ne-ink);
}

.ne-channel-rail {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px 0 16px;
    background: #fff;
}

.ne-channel {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    border: 1px solid var(--ne-line);
    border-radius: 4px;
    padding: 0 12px;
    color: #333;
    font-size: 14px;
    font-weight: 600;
}

.ne-channel:hover,
.ne-channel.is-active {
    border-color: var(--ne-red);
    background: var(--ne-red);
    color: #fff;
}

.ne-layout {
    display: grid;
    grid-template-columns: minmax(0, 820px) 320px;
    gap: 36px;
    align-items: start;
    padding: 26px 0 44px;
}

.ne-feed {
    display: grid;
    min-width: 0;
    gap: 18px;
}

.ne-home-lead {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 26px;
    border-bottom: 2px solid #222;
    padding: 6px 0 24px;
}

.ne-home-lead-main h1 {
    margin: 8px 0 0;
    color: var(--ne-ink);
    font-size: 34px;
    line-height: 1.28;
    font-weight: 800;
}

.ne-home-lead-main,
.ne-home-headlines,
.ne-article-card > div,
.ne-post-column {
    min-width: 0;
}

.ne-home-lead-main h1,
.ne-home-headlines a,
.ne-home-headlines span,
.ne-page-title,
.ne-article-title,
.ne-article-h1,
.ne-hot-item,
.ne-related-card,
.ne-prose {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.ne-home-lead-main h1 a:hover {
    color: var(--ne-red);
}

.ne-home-lead-main p {
    margin: 13px 0 0;
    color: var(--ne-muted);
    font-size: 15px;
    line-height: 1.75;
}

.ne-home-headlines {
    display: grid;
    align-content: start;
    gap: 10px;
    border-left: 1px solid var(--ne-line);
    padding-left: 22px;
}

.ne-home-headlines a,
.ne-home-headlines span {
    display: block;
    color: #333;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 600;
}

.ne-home-headlines a:hover {
    color: var(--ne-red);
}

.ne-mini-title,
.ne-page-kicker {
    color: var(--ne-subtle);
    font-size: 13px;
    line-height: 1.4;
    font-weight: 700;
}

.ne-hot-carousel {
    display: grid;
    gap: 8px;
    border: 1px solid var(--ne-line);
    border-radius: 4px;
    background: #fff;
    padding: 0 14px 10px;
}

.ne-breaking {
    display: none;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    color: #333;
    font-size: 14px;
    line-height: 1.5;
}

.ne-breaking.is-active {
    display: flex;
}

.ne-breaking strong {
    flex: 0 0 auto;
    border-radius: 3px;
    background: var(--ne-red);
    padding: 2px 7px;
    color: #fff;
    font-size: 12px;
}

.ne-hot-dots {
    display: flex;
    justify-content: flex-end;
    gap: 6px;
}

.ne-hot-dots button {
    width: 7px;
    height: 7px;
    border: 0;
    border-radius: 999px;
    background: #d8d8d8;
}

.ne-hot-dots button.is-active {
    width: 18px;
    background: var(--ne-red);
}

.ne-page-head {
    border-bottom: 2px solid #222;
    padding: 8px 0 22px;
}

.ne-page-title {
    margin: 8px 0 0;
    color: var(--ne-ink);
    font-size: 32px;
    line-height: 1.25;
    font-weight: 800;
}

.ne-page-desc {
    margin: 10px 0 0;
    color: var(--ne-muted);
    font-size: 15px;
    line-height: 1.7;
}

.ne-category-head {
    border-bottom-color: var(--ne-green);
}

.ne-category-head .ne-page-kicker,
.ne-category-head .ne-page-title {
    color: var(--ne-green);
}

.ne-category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.ne-category-tabs a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    border: 1px solid #d9eee9;
    border-radius: 4px;
    background: #f5fffc;
    padding: 0 13px;
    color: #168970;
    font-size: 14px;
    font-weight: 700;
}

.ne-category-tabs a:hover,
.ne-category-tabs a.is-active {
    border-color: var(--ne-coral);
    background: var(--ne-coral);
    color: #fff;
}

.ne-feed-card {
    display: grid;
    gap: 0;
}

.ne-section-title {
    display: flex;
    align-items: center;
    gap: 9px;
    border-bottom: 1px solid var(--ne-line);
    padding: 0 0 12px;
    color: var(--ne-ink);
    font-size: 18px;
    line-height: 1.35;
    font-weight: 800;
}

.ne-section-title::before {
    content: "";
    flex: 0 0 auto;
    width: 4px;
    height: 18px;
    border-radius: 2px;
    background: var(--ne-red);
}

.ne-title-row {
    min-width: 0;
}

.ne-article-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 132px;
    gap: 18px;
    border-bottom: 1px solid var(--ne-soft-line);
    padding: 18px 0;
}

.ne-article-card:hover {
    background: #fafafa;
}

.ne-card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    color: var(--ne-subtle);
    font-size: 13px;
    line-height: 1.45;
}

.ne-pill {
    color: var(--ne-red);
    font-weight: 700;
}

.ne-article-title {
    margin: 7px 0 0;
    color: var(--ne-ink);
    font-size: 21px;
    line-height: 1.38;
    font-weight: 800;
}

.ne-article-title a:hover {
    color: var(--ne-red);
}

.ne-article-summary {
    margin: 8px 0 0;
    color: var(--ne-muted);
    font-size: 14px;
    line-height: 1.72;
}

.ne-card-action {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
    color: var(--ne-subtle);
    font-size: 13px;
    font-weight: 700;
}

.ne-card-action:hover {
    color: var(--ne-red);
}

.ne-thumb {
    display: grid;
    place-items: center;
    min-height: 90px;
    border-radius: 4px;
    background: #f5f5f5;
    color: var(--ne-red);
    font-size: 32px;
    font-weight: 900;
}

.ne-sidebar,
.ne-post-aside {
    position: sticky;
    top: 128px;
    display: grid;
    gap: 18px;
    min-width: 0;
}

.ne-panel {
    border-top: 2px solid #222;
    background: var(--ne-panel);
    padding-top: 12px;
}

.ne-panel .ne-section-title {
    border-bottom: 0;
    padding-bottom: 8px;
}

.ne-hot-list {
    display: grid;
    gap: 0;
}

.ne-hot-item {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 10px;
    border-bottom: 1px solid var(--ne-soft-line);
    padding: 10px 0;
    color: #333;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 600;
}

.ne-hot-item:hover {
    color: var(--ne-red);
}

.ne-hot-index {
    color: var(--ne-subtle);
    font-size: 16px;
    line-height: 1.35;
    font-weight: 800;
    text-align: center;
}

.ne-hot-item:nth-child(1) .ne-hot-index {
    color: var(--ne-red);
}

.ne-hot-item:nth-child(2) .ne-hot-index {
    color: var(--ne-coral);
}

.ne-hot-item:nth-child(3) .ne-hot-index {
    color: #d79b00;
}

.ne-feed-panel-title {
    margin: 8px 0 0;
    color: var(--ne-ink);
    font-size: 23px;
    line-height: 1.25;
    font-weight: 800;
}

.ne-feed-panel-desc {
    margin: 10px 0 0;
    color: var(--ne-muted);
    font-size: 14px;
    line-height: 1.7;
}

.ne-article-layout {
    display: grid;
    grid-template-columns: minmax(0, 820px) 320px;
    gap: 36px;
    align-items: start;
    padding: 30px 0 54px;
}

.ne-post-column {
    min-width: 0;
}

.ne-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    color: var(--ne-subtle);
    font-size: 13px;
    line-height: 1.6;
}

.ne-breadcrumb a {
    color: #555;
    font-weight: 700;
}

.ne-breadcrumb a:hover {
    color: var(--ne-red);
}

.ne-breadcrumb span:last-child {
    min-width: 0;
    max-width: 100%;
}

.ne-article-main {
    border-bottom: 1px solid var(--ne-line);
    padding-bottom: 34px;
}

.ne-article-h1 {
    margin: 0;
    color: var(--ne-ink);
    font-size: 36px;
    line-height: 1.28;
    font-weight: 800;
}

.ne-post-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    color: var(--ne-subtle);
    font-size: 13px;
    line-height: 1.5;
}

.ne-post-info a {
    color: var(--ne-red);
    font-weight: 700;
}

.ne-article-excerpt {
    border-left: 4px solid var(--ne-line);
    margin: 26px 0 0;
    padding: 0 0 0 16px;
    color: #555;
    font-size: 17px;
    line-height: 1.8;
}

.ne-prose {
    margin-top: 28px;
    color: #222;
    font-size: 17px;
    line-height: 1.95;
}

.ne-prose p,
.ne-prose ul,
.ne-prose ol,
.ne-prose blockquote,
.ne-prose table {
    margin: 1.1em 0;
}

.ne-prose h2 {
    margin: 2em 0 .75em;
    border-left: 4px solid var(--ne-red);
    padding-left: 12px;
    color: var(--ne-ink);
    font-size: 24px;
    line-height: 1.35;
    font-weight: 800;
}

.ne-prose h3 {
    margin: 1.7em 0 .65em;
    color: var(--ne-ink);
    font-size: 20px;
    line-height: 1.4;
    font-weight: 800;
}

.ne-prose a {
    color: var(--ne-red);
    font-weight: 700;
}

.ne-prose img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 24px auto;
}

.ne-prose figcaption {
    display: none;
}

.ne-prose blockquote {
    border-left: 4px solid var(--ne-line);
    padding-left: 16px;
    color: #555;
}

.ne-prose .article-table-wrap {
    max-width: 100%;
    overflow-x: auto;
    border: 1px solid var(--ne-line);
    border-radius: 4px;
}

.ne-prose table,
.ne-prose .article-table {
    width: max(680px, 100%);
    border-collapse: collapse;
    font-size: 15px;
    line-height: 1.7;
}

.ne-prose th,
.ne-prose td {
    border: 1px solid var(--ne-line);
    padding: 12px 14px;
    vertical-align: top;
}

.ne-prose th {
    background: var(--ne-soft);
    font-weight: 800;
}

.ne-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 30px;
}

.ne-tag-list span {
    border: 1px solid var(--ne-line);
    border-radius: 4px;
    padding: 5px 10px;
    color: #555;
    font-size: 13px;
    font-weight: 700;
}

.ne-related-block {
    margin-top: 26px;
}

.ne-related-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 24px;
}

.ne-related-card {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 10px;
    border-bottom: 1px solid var(--ne-soft-line);
    padding: 12px 0;
    color: #333;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 600;
}

.ne-related-card:hover {
    color: var(--ne-red);
}

.ne-related-index {
    color: var(--ne-red);
    font-weight: 800;
    text-align: center;
}

.ne-ad-slot {
    margin-top: 30px;
    border: 1px solid var(--ne-line);
    border-radius: 4px;
    background: #fafafa;
    padding: 16px;
}

.ne-ad-slot h2 {
    margin: 0 0 8px;
    color: var(--ne-ink);
    font-size: 16px;
    line-height: 1.4;
}

.ne-footer {
    border-top: 1px solid var(--ne-line);
    background: #f8f8f8;
}

.ne-footer-inner {
    padding: 26px 0;
    color: var(--ne-muted);
    font-size: 13px;
    line-height: 1.6;
    text-align: center;
}

.ne-feed nav[role="navigation"] {
    margin-top: 14px;
}

@media (max-width: 1080px) {
    .ne-shell {
        width: min(100% - 32px, 960px);
    }

    .ne-header-row {
        gap: 18px;
    }

    .ne-brand {
        min-width: auto;
    }

    .ne-search {
        display: none;
    }

    .ne-layout,
    .ne-article-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .ne-sidebar,
    .ne-post-aside {
        position: static;
        display: none;
    }
}

@media (max-width: 820px) {
    .ne-shell {
        width: min(100% - 20px, 960px);
    }

    .ne-globalbar {
        display: none;
    }

    .ne-header-row {
        min-height: 58px;
    }

    .ne-brand {
        font-size: 20px;
    }

    .ne-brand-mark {
        width: 34px;
        height: 30px;
        font-size: 18px;
    }

    .ne-topnav {
        display: none;
    }

    .ne-mobile-menu {
        display: inline-flex;
    }

    .ne-layout,
    .ne-article-layout {
        gap: 20px;
        padding: 18px 0 34px;
    }

    .ne-home-lead {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .ne-home-lead-main h1,
    .ne-page-title,
    .ne-article-h1 {
        font-size: 28px;
        line-height: 1.28;
    }

    .ne-home-headlines {
        border-left: 0;
        border-top: 1px solid var(--ne-line);
        padding: 14px 0 0;
    }

    .ne-article-card {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .ne-thumb {
        display: none;
    }

    .ne-related-grid {
        grid-template-columns: 1fr;
    }

    .ne-prose {
        font-size: 16px;
        line-height: 1.85;
    }

    .ne-prose h2 {
        font-size: 22px;
    }
}

/*
 * Mobile-first guardrails sit last so long Chinese/English mixed headlines
 * cannot keep the homepage lead in the desktop two-column shape.
 */
.ne-home-lead {
    grid-template-columns: minmax(0, 1fr);
}

.ne-home-headlines {
    border-left: 0;
    border-top: 1px solid var(--ne-line);
    padding: 14px 0 0;
}

@media (min-width: 821px) {
    .ne-home-lead {
        grid-template-columns: minmax(0, 1fr) 260px;
    }

    .ne-home-headlines {
        border-left: 1px solid var(--ne-line);
        border-top: 0;
        padding: 0 0 0 22px;
    }
}

/* GEOFlow template variant: GEOFlow 03 Salmon Insight.
 * High-level inspiration: Financial Times.
 * This file only applies public visual cues and does not copy proprietary assets or source code.
 */
:root {
    --ne-red: #0f766e;
    --ne-red-dark: #9e2f25;
    --ne-green: #c15f3c;
    --ne-coral: #c15f3c;
    --ne-ink: #2b211c;
    --ne-muted: #705f55;
    --ne-subtle: #9a8477;
    --ne-line: #e8cdbb;
    --ne-soft-line: #e8cdbb;
    --ne-bg: #fff1e5;
    --ne-panel: #fff8f1;
    --ne-soft: #f8e4d4;
}

.ne-body { background: #fff1e5; color: #2b211c; font-family: Georgia, "Times New Roman", "Noto Serif SC", serif; }
.ne-main { background: #fff1e5; }
.ne-shell { width: min(1180px, calc(100vw - 40px)); }
.ne-globalbar { background: #2f1d1a; color: color-mix(in srgb, #fff8f1 78%, #0f766e); font-family: Arial, "PingFang SC", sans-serif; }
.ne-header { border-bottom-color: #e8cdbb; background: color-mix(in srgb, #fff8f1 94%, #fff1e5); backdrop-filter: saturate(180%) blur(10px); }
.ne-header-row { min-height: 72px; }
.ne-brand { color: #2b211c; font-family: Arial, "PingFang SC", sans-serif; font-size: 25px; letter-spacing: 0; }
.ne-brand-mark { border-radius: 3px; background: #0f766e; color: #fff; }
.ne-topnav { color: #705f55; font-family: Arial, "PingFang SC", sans-serif; font-size: 15px; }
.ne-topnav a:hover,
.ne-topnav a.is-active { border-bottom-color: #0f766e; color: #0f766e; }
.ne-search { border-color: #e8cdbb; border-radius: 3px; background: #f8e4d4; font-family: Arial, "PingFang SC", sans-serif; }
.ne-search button { background: #0f766e; color: #fff; }
.ne-channel { border-color: #e8cdbb; border-radius: 3px; background: #fff8f1; color: #705f55; font-family: Arial, "PingFang SC", sans-serif; }
.ne-channel:hover,
.ne-channel.is-active { border-color: #0f766e; background: #0f766e; color: #fff; }
.ne-layout,
.ne-article-layout { grid-template-columns: minmax(0, 805px) 320px; gap: 34px; }
.ne-home-lead { gap: 34px; border-bottom-color: #2b211c; padding: 18px 0 22px; }
.ne-home-lead-main h1 { color: #2b211c; font-size: 35px; letter-spacing: 0; }
.ne-home-lead-main p,
.ne-page-desc,
.ne-article-summary,
.ne-feed-panel-desc { color: #705f55; }
.ne-home-headlines { border-top-color: #0f766e; background: #fff8f1; border-radius: 3px; padding: 18px; }
.ne-mini-title,
.ne-page-kicker,
.ne-pill,
.ne-post-info a,
.ne-breadcrumb a { color: #0f766e; font-family: Arial, "PingFang SC", sans-serif; }
.ne-breaking { border-left-color: #0f766e; background: color-mix(in srgb, #0f766e 8%, #fff8f1); color: #2b211c; border-radius: 3px; }
.ne-feed-card { background: #fff8f1; }
.ne-section-title { border-bottom-color: #e8cdbb; color: #2b211c; font-family: Arial, "PingFang SC", sans-serif; }
.ne-section-title::before { background: #0f766e; }
.ne-article-card { border-bottom-color: #e8cdbb; padding: 18px 0; }
.ne-article-card:hover { background: color-mix(in srgb, #0f766e 5%, #fff8f1); }
.ne-article-title { color: #2b211c; font-size: 21px; }
.ne-article-title a:hover,
.ne-card-action:hover,
.ne-hot-item:hover,
.ne-related-card:hover,
.ne-prose a { color: #0f766e; }
.ne-card-action,
.ne-card-meta,
.ne-post-info,
.ne-breadcrumb,
.ne-footer-inner { font-family: Arial, "PingFang SC", sans-serif; }
.ne-thumb { border-radius: 3px; background: color-mix(in srgb, #0f766e 10%, #f8e4d4); color: #0f766e; }
.ne-panel { border-top-color: #2b211c; background: #fff8f1; }
.ne-hot-index,
.ne-related-index { color: #0f766e; }
.ne-article-main { border-bottom-color: #e8cdbb; }
.ne-article-h1 { color: #2b211c; font-size: 37px; letter-spacing: 0; }
.ne-article-excerpt { border-left-color: #0f766e; color: #705f55; }
.ne-prose { color: #2b211c; font-size: 17px; line-height: 1.92; }
.ne-prose h2 { border-left-color: #0f766e; color: #2b211c; }
.ne-prose h3,
.ne-ad-slot h2 { color: #2b211c; }
.ne-prose .article-table-wrap,
.ne-prose th,
.ne-prose td,
.ne-tag-list span,
.ne-ad-slot { border-color: #e8cdbb; }
.ne-prose th,
.ne-ad-slot { background: #f8e4d4; }
.ne-footer { border-top-color: #e8cdbb; background: #f8e4d4; }
/* GEOFlow white editorial system v2: begin */
/* GEOFlow 03 Salmon Insight keeps a pure white content surface and borrows only high-level layout cues from Financial Times. */
:root {
    --ne-red: #b3472f;
    --ne-red-dark: #0f766e;
    --ne-green: #b3472f;
    --ne-coral: #0f766e;
    --ne-ink: #111827;
    --ne-muted: #4b5563;
    --ne-subtle: #6b7280;
    --ne-line: #e5e7eb;
    --ne-soft-line: #eef2f7;
    --ne-bg: #ffffff;
    --ne-panel: #ffffff;
    --ne-soft: #ffffff;
    --geo-template-accent: #b3472f;
    --geo-template-accent-2: #0f766e;
    --geo-template-title-font: Georgia, "Times New Roman", "Noto Serif SC", serif;
    --geo-template-ui-font: Arial, "PingFang SC", sans-serif;
    --geo-template-radius: 0px;
}

.ne-body,
.ne-main,
.ne-feed-card,
.ne-panel,
.ne-home-headlines,
.ne-hot-carousel,
.ne-breaking,
.ne-page-head,
.ne-article-main,
.ne-related-card,
.ne-ad-slot,
.ne-footer,
.ne-prose th,
.ne-prose td,
.ne-prose .article-table,
.ne-category-tabs a,
.ne-search,
.ne-channel,
.ne-thumb {
    background: #ffffff !important;
}

.ne-body {
    color: #111827;
    font-family: var(--geo-template-ui-font);
}

.ne-main {
    min-height: 64vh;
}

.ne-shell {
    width: min(1180px, calc(100vw - 56px));
}

.ne-globalbar {
    border-bottom: 1px solid var(--ne-soft-line);
    background: #ffffff !important;
    color: #6b7280;
    font-family: var(--geo-template-ui-font);
}

.ne-globalbar a:hover {
    color: var(--geo-template-accent);
}

.ne-header {
    border-bottom: 1px solid var(--ne-line);
    background: #ffffff !important;
    backdrop-filter: none;
}

.ne-header-row {
    min-height: 74px;
}

.ne-brand,
.ne-home-lead-main h1,
.ne-page-title,
.ne-article-title,
.ne-article-h1,
.ne-section-title,
.ne-related-card,
.ne-hot-item {
    font-family: var(--geo-template-title-font);
    letter-spacing: 0;
}

.ne-brand {
    color: #111827;
    font-size: 25px;
    line-height: 1.05;
}

.ne-brand-mark {
    border: 1px solid var(--geo-template-accent);
    border-radius: var(--geo-template-radius);
    background: #ffffff;
    color: var(--geo-template-accent);
}

.ne-topnav {
    color: #4b5563;
    font-family: var(--geo-template-ui-font);
    gap: 24px;
}

.ne-topnav a {
    padding: 27px 0 21px;
}

.ne-topnav a:hover,
.ne-topnav a.is-active {
    border-bottom-color: var(--geo-template-accent);
    color: var(--geo-template-accent);
}

.ne-search {
    border-color: var(--ne-line);
    border-radius: var(--geo-template-radius);
    box-shadow: none;
}

.ne-search input {
    color: #111827;
}

.ne-search button {
    background: var(--geo-template-accent);
    color: #ffffff;
}

.ne-channel {
    border-color: var(--ne-line);
    border-radius: var(--geo-template-radius);
    color: #374151;
}

.ne-channel:hover,
.ne-channel.is-active {
    border-color: var(--geo-template-accent);
    background: #ffffff;
    color: var(--geo-template-accent);
}

.ne-layout,
.ne-article-layout {
    grid-template-columns: minmax(0, 800px) minmax(280px, 320px);
    gap: 42px;
    padding: 36px 0 68px;
}

.ne-feed {
    gap: 28px;
}

.ne-home-lead {
    gap: 42px;
    border-bottom: 1px solid var(--ne-line);
    padding: 10px 0 34px;
}

.ne-home-lead-main h1 {
    margin-top: 10px;
    color: #111827;
    font-size: 36px;
    line-height: 1.16;
    font-weight: 800;
}

.ne-home-lead-main p,
.ne-page-desc,
.ne-article-summary,
.ne-feed-panel-desc {
    max-width: 70ch;
    color: #4b5563;
    line-height: 1.82;
}

.ne-home-headlines {
    gap: 13px;
    border-left: 1px solid var(--ne-line);
    border-top: 0;
    border-radius: 0;
    padding: 0 0 0 30px;
}

.ne-home-headlines a,
.ne-home-headlines span {
    color: #111827;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 650;
}

.ne-mini-title,
.ne-page-kicker,
.ne-pill,
.ne-post-info a,
.ne-breadcrumb a,
.ne-card-action,
.ne-hot-index,
.ne-related-index {
    color: var(--geo-template-accent);
    font-family: var(--geo-template-ui-font);
}

.ne-hot-carousel {
    border: 1px solid var(--ne-line);
    border-radius: var(--geo-template-radius);
    padding: 0 18px 12px;
}

.ne-breaking {
    min-height: 46px;
    color: #111827;
}

.ne-breaking strong {
    border: 1px solid var(--geo-template-accent);
    border-radius: var(--geo-template-radius);
    background: #ffffff;
    color: var(--geo-template-accent);
}

.ne-section-title {
    gap: 11px;
    border-bottom: 1px solid var(--ne-line);
    padding: 0 0 16px;
    color: #111827;
    font-size: 20px;
    line-height: 1.3;
}

.ne-section-title::before {
    width: 3px;
    height: 20px;
    border-radius: 999px;
    background: var(--geo-template-accent);
}

.ne-article-card {
    grid-template-columns: minmax(0, 1fr) 148px;
    gap: 30px;
    border-bottom: 1px solid var(--ne-soft-line);
    padding: 28px 0;
}

.ne-article-card > div {
    padding-left: 4px;
}

.ne-article-card:hover {
    background: #ffffff !important;
}

.ne-card-meta {
    gap: 9px 12px;
    color: #6b7280;
    font-family: var(--geo-template-ui-font);
}

.ne-article-title {
    margin-top: 9px;
    color: #111827;
    font-size: 24px;
    line-height: 1.28;
    font-weight: 800;
}

.ne-article-title a:hover,
.ne-card-action:hover,
.ne-hot-item:hover,
.ne-related-card:hover,
.ne-prose a,
.ne-home-lead-main h1 a:hover,
.ne-home-headlines a:hover {
    color: var(--geo-template-accent);
}

.ne-article-summary {
    margin-top: 10px;
    font-size: 15px;
}

.ne-card-action {
    margin-top: 13px;
    font-size: 13px;
}

.ne-thumb {
    min-height: 112px;
    border: 1px solid var(--ne-line);
    border-radius: var(--geo-template-radius);
    color: var(--geo-template-accent);
    font-family: var(--geo-template-title-font);
}

.ne-sidebar,
.ne-post-aside {
    gap: 24px;
}

.ne-panel {
    border-top: 1px solid var(--ne-line);
    padding-top: 18px;
}

.ne-hot-item {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 12px;
    border-bottom: 1px solid var(--ne-soft-line);
    padding: 14px 0;
    color: #111827;
}

.ne-page-head,
.ne-article-main {
    border-bottom: 1px solid var(--ne-line);
    padding-bottom: 30px;
}

.ne-page-title {
    color: #111827;
    font-size: 36px;
    line-height: 1.16;
}

.ne-category-tabs a {
    border-color: var(--ne-line);
    border-radius: var(--geo-template-radius);
    color: #374151;
}

.ne-category-tabs a:hover,
.ne-category-tabs a.is-active {
    border-color: var(--geo-template-accent);
    background: #ffffff;
    color: var(--geo-template-accent);
}

.ne-article-h1 {
    color: #111827;
    font-size: 40px;
    line-height: 1.12;
}

.ne-article-excerpt {
    border-left-color: var(--geo-template-accent);
    color: #374151;
}

.ne-prose {
    color: #1f2937;
    font-size: 17px;
    line-height: 1.92;
}

.ne-prose h2 {
    border-left-color: var(--geo-template-accent);
    color: #111827;
}

.ne-prose h3,
.ne-ad-slot h2 {
    color: #111827;
}

.ne-prose .article-table-wrap,
.ne-prose th,
.ne-prose td,
.ne-tag-list span,
.ne-ad-slot,
.ne-related-card {
    border-color: var(--ne-line);
}

.ne-footer {
    border-top: 1px solid var(--ne-line);
    color: #6b7280;
}

@media (max-width: 1080px) {
    .ne-shell {
        width: min(100% - 36px, 1180px);
    }

    .ne-layout,
    .ne-article-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 34px;
    }

    .ne-sidebar,
    .ne-post-aside {
        position: static;
    }
}

@media (max-width: 820px) {
    .ne-shell {
        width: min(100% - 28px, 1180px);
    }

    .ne-header-row {
        min-height: 66px;
    }

    .ne-layout,
    .ne-article-layout {
        padding: 24px 0 48px;
    }

    .ne-home-lead {
        gap: 18px;
        padding-bottom: 24px;
    }

    .ne-home-headlines {
        border-left: 0;
        border-top: 1px solid var(--ne-line);
        padding: 18px 0 0;
    }

    .ne-article-card {
        grid-template-columns: minmax(0, 1fr);
        gap: 14px;
        padding: 24px 0;
    }

    .ne-article-card > div {
        padding-left: 0;
    }

    .ne-thumb {
        display: none;
    }

    .ne-home-lead-main h1,
    .ne-page-title {
        font-size: 30px;
    }

    .ne-article-h1 {
        font-size: 34px;
    }
}
/* GEOFlow white editorial system v2: end */
/* GEOFlow white editorial system v2 detail cleanup: begin */
.ne-prose blockquote,
.ne-tag-list span,
.ne-related-card,
.ne-ad-slot,
.ne-prose pre,
.ne-prose code,
.ne-prose .article-table-wrap,
.ne-prose .article-table,
.ne-prose th,
.ne-prose td,
.ne-feed nav[role="navigation"] {
    background: #ffffff !important;
}

.ne-prose pre {
    border: 1px solid var(--ne-line);
    color: #111827;
}

.ne-prose code {
    border: 1px solid var(--ne-soft-line);
    color: #111827;
}

.ne-tag-list span {
    border-radius: var(--geo-template-radius);
    color: #4b5563;
}
/* GEOFlow white editorial system v2 detail cleanup: end */

/* GEOFlow white lead layout polish v3: begin */
.ne-home-lead,
.ne-home-lead-main,
.ne-home-headlines {
    background: #ffffff !important;
    box-shadow: none !important;
}

.ne-feed > .ne-home-lead {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
    gap: 48px;
    align-items: start;
    margin: 0 0 26px !important;
    padding: 34px 0 42px !important;
    border: 0 !important;
    border-bottom: 1px solid var(--ne-line, #e5e7eb) !important;
    border-radius: 0 !important;
}

.ne-home-lead-main {
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
}

.ne-home-lead-main .ne-page-kicker {
    display: inline-flex;
    align-items: center;
    margin: 0 0 18px;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    color: var(--ne-accent, #2563eb);
    font-size: 14px;
    line-height: 1.45;
    font-weight: 750;
}

.ne-home-lead-main h1 {
    max-width: 760px;
    margin: 0 !important;
    color: #111827;
    font-size: 42px;
    line-height: 1.14;
    font-weight: 820;
}

.ne-home-lead-main h1 a {
    color: inherit;
    text-decoration: none;
}

.ne-home-lead-main p {
    max-width: 700px;
    margin: 20px 0 0;
    color: #4b5563;
    font-size: 17px;
    line-height: 1.86;
}

.ne-home-lead-main .ne-card-action {
    display: inline-flex;
    align-items: center;
    margin-top: 22px;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    color: #111827;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 760;
    text-decoration: none;
}

.ne-home-lead-main .ne-card-action::after {
    content: "";
    width: 24px;
    height: 1px;
    margin-left: 10px;
    background: currentColor;
}

.ne-home-headlines {
    min-width: 0;
    gap: 0 !important;
    padding: 4px 0 4px 34px !important;
    border: 0 !important;
    border-left: 1px solid var(--ne-line, #e5e7eb) !important;
    border-radius: 0 !important;
}

.ne-home-headlines .ne-mini-title {
    margin: 0 0 14px;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    color: var(--ne-accent, #2563eb);
    font-size: 14px;
    line-height: 1.45;
    font-weight: 780;
}

.ne-home-headlines a,
.ne-home-headlines span {
    display: block;
    padding: 0 0 16px !important;
    margin: 0 0 16px !important;
    border: 0 !important;
    border-bottom: 1px solid var(--ne-soft-line, #eef2f7) !important;
    background: transparent !important;
    border-radius: 0 !important;
    color: #111827;
    font-size: 17px;
    line-height: 1.58;
    font-weight: 730;
}

.ne-home-headlines a:last-child,
.ne-home-headlines span:last-child {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    border-bottom: 0 !important;
}

@media (max-width: 1100px) {
    .ne-feed > .ne-home-lead {
        grid-template-columns: minmax(0, 1fr);
        gap: 28px;
        padding: 28px 0 34px !important;
    }

    .ne-home-headlines {
        padding: 24px 0 0 !important;
        border-left: 0 !important;
        border-top: 1px solid var(--ne-line, #e5e7eb) !important;
    }
}

@media (max-width: 680px) {
    .ne-feed > .ne-home-lead {
        padding: 22px 0 30px !important;
    }

    .ne-home-lead-main h1 {
        font-size: 30px;
        line-height: 1.2;
    }

    .ne-home-lead-main p {
        font-size: 15px;
        line-height: 1.78;
    }

    .ne-home-headlines a,
    .ne-home-headlines span {
        font-size: 15px;
        line-height: 1.62;
    }
}
/* GEOFlow white lead layout polish v3: end */

/* GEOFlow white editorial rhythm v4: begin */
html,
body,
.ne-body,
.ne-main {
    background: #ffffff !important;
    color: #111827;
}

.ne-globalbar {
    background: #ffffff !important;
    color: #6b7280 !important;
    border-bottom: 1px solid var(--ne-soft-line, #eef2f7) !important;
}

.ne-globalbar-row {
    min-height: 34px;
    font-size: 13px;
    line-height: 1.4;
    letter-spacing: 0;
}

.ne-header {
    background: rgba(255, 255, 255, 0.98) !important;
    border-bottom: 1px solid var(--ne-line, #e5e7eb) !important;
    box-shadow: none !important;
}

.ne-header-row {
    min-height: 76px;
    gap: 28px;
}

.ne-brand {
    min-width: auto;
    max-width: 360px;
    gap: 14px;
    font-size: 28px;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: 0;
}

.ne-brand-mark {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 8px;
    box-shadow: none !important;
}

.ne-topnav {
    gap: 24px;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 650;
}

.ne-topnav a {
    min-height: 76px;
    align-items: center;
    border-bottom-width: 2px;
    letter-spacing: 0;
}

.ne-search {
    background: #ffffff !important;
    border-color: var(--ne-line, #e5e7eb) !important;
    border-radius: 8px !important;
    box-shadow: none !important;
}

.ne-search input {
    min-height: 44px;
    font-size: 15px;
}

.ne-search button {
    min-height: 44px;
    border-radius: 0 7px 7px 0 !important;
}

.ne-layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
    gap: 48px;
    align-items: start;
    padding: 34px 0 58px;
}

.ne-feed {
    gap: 26px;
}

.ne-feed > .ne-home-lead {
    grid-template-columns: minmax(0, 1fr) minmax(230px, 292px);
    gap: 36px;
    margin-bottom: 30px !important;
    padding: 36px 0 44px !important;
    background: #ffffff !important;
    border-bottom: 1px solid var(--ne-line, #e5e7eb) !important;
    box-shadow: none !important;
}

.ne-home-lead,
.ne-home-lead-main,
.ne-home-headlines,
.ne-breaking,
.ne-feed-card,
.ne-panel,
.ne-related-card,
.ne-ad-slot,
.ne-footer,
.ne-article-excerpt,
.ne-prose blockquote,
.ne-prose pre,
.ne-prose code,
.ne-prose .article-table,
.ne-prose .article-table-wrap,
.ne-prose th,
.ne-prose td {
    background: #ffffff !important;
    box-shadow: none !important;
}

.ne-home-lead-main {
    max-width: 760px;
}

.ne-home-lead-main .ne-page-kicker,
.ne-panel .ne-page-kicker {
    margin-bottom: 15px;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    color: var(--ne-accent, #2563eb);
    font-size: 13px;
    line-height: 1.45;
    font-weight: 700;
    letter-spacing: 0;
}

.ne-home-lead-main h1 {
    max-width: 720px;
    font-size: 38px;
    line-height: 1.18;
    font-weight: 800;
    letter-spacing: 0;
}

.ne-home-lead-main p {
    max-width: 680px;
    margin-top: 18px;
    color: #4b5563;
    font-size: 16px;
    line-height: 1.78;
}

.ne-home-lead-main .ne-card-action {
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 700;
}

.ne-home-headlines {
    padding: 2px 0 2px 28px !important;
    border-left: 1px solid var(--ne-line, #e5e7eb) !important;
}

.ne-home-headlines .ne-mini-title {
    margin-bottom: 15px;
    color: var(--ne-accent, #2563eb);
    font-size: 13px;
    line-height: 1.45;
    font-weight: 700;
    letter-spacing: 0;
}

.ne-home-headlines a,
.ne-home-headlines span {
    margin-bottom: 14px !important;
    padding-bottom: 14px !important;
    color: #111827;
    font-size: 15px;
    line-height: 1.62;
    font-weight: 700;
    letter-spacing: 0;
}

.ne-breaking {
    min-height: auto;
    padding: 16px 0 !important;
    border-color: var(--ne-line, #e5e7eb) !important;
    border-left: 0 !important;
    border-right: 0 !important;
    border-radius: 0 !important;
}

.ne-feed-card,
.ne-panel,
.ne-related-card {
    border-color: var(--ne-line, #e5e7eb) !important;
    border-radius: 0 !important;
}

.ne-feed-card {
    padding: 0 !important;
}

.ne-section-title {
    margin: 0;
    padding: 24px 0 18px !important;
    border-bottom: 1px solid var(--ne-line, #e5e7eb) !important;
    color: #111827;
    font-size: 23px;
    line-height: 1.28;
    font-weight: 800;
    letter-spacing: 0;
}

.ne-section-title::before {
    width: 3px;
    height: 22px;
    border-radius: 3px;
}

.ne-article-card {
    grid-template-columns: minmax(0, 1fr) minmax(120px, 176px);
    gap: 28px;
    padding: 28px 0 !important;
    border-bottom-color: var(--ne-line, #e5e7eb) !important;
}

.ne-article-card:hover {
    background: #ffffff !important;
}

.ne-article-card > div {
    min-width: 0;
}

.ne-card-meta {
    gap: 10px;
    margin-bottom: 12px;
    color: #6b7280;
    font-size: 13px;
    line-height: 1.45;
    letter-spacing: 0;
}

.ne-pill {
    border-radius: 999px;
    background: #ffffff !important;
    box-shadow: none !important;
}

.ne-article-title {
    max-width: 760px;
    font-size: 22px;
    line-height: 1.36;
    font-weight: 760;
    letter-spacing: 0;
}

.ne-article-summary {
    max-width: 760px;
    margin-top: 12px;
    color: #4b5563;
    font-size: 15px;
    line-height: 1.76;
}

.ne-card-action {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 700;
}

.ne-thumb {
    width: 100%;
    min-height: 128px;
    border-radius: 8px !important;
    background: #ffffff !important;
    border: 1px solid var(--ne-line, #e5e7eb) !important;
    box-shadow: none !important;
}

.ne-sidebar {
    gap: 28px;
}

.ne-panel {
    padding: 28px 0 !important;
    border-width: 1px 0 0 !important;
}

.ne-feed-panel-title {
    color: #111827;
    font-size: 26px;
    line-height: 1.24;
    font-weight: 800;
    letter-spacing: 0;
}

.ne-feed-panel-desc {
    margin-top: 16px;
    color: #4b5563;
    font-size: 15px;
    line-height: 1.78;
}

.ne-hot-item {
    padding: 15px 0 !important;
    border-bottom-color: var(--ne-soft-line, #eef2f7) !important;
    font-size: 15px;
    line-height: 1.58;
    font-weight: 700;
}

.ne-footer {
    border-top: 1px solid var(--ne-line, #e5e7eb) !important;
}

.ne-page-head,
.ne-category-strip,
.ne-channel-rail {
    background: #ffffff !important;
    box-shadow: none !important;
}

@media (max-width: 1280px) {
    .ne-layout {
        grid-template-columns: minmax(0, 1fr) minmax(260px, 300px);
        gap: 40px;
    }

    .ne-feed > .ne-home-lead {
        grid-template-columns: minmax(0, 1fr);
        gap: 28px;
    }

    .ne-home-headlines {
        padding: 24px 0 0 !important;
        border-left: 0 !important;
        border-top: 1px solid var(--ne-line, #e5e7eb) !important;
    }
}

@media (max-width: 1100px) {
    .ne-layout {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-top: 26px;
    }

    .ne-sidebar {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px;
    }
}

@media (max-width: 760px) {
    .ne-globalbar {
        display: none;
    }

    .ne-header-row {
        min-height: 64px;
        gap: 14px;
    }

    .ne-brand {
        max-width: calc(100vw - 112px);
        font-size: 23px;
    }

    .ne-brand-mark {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .ne-feed > .ne-home-lead {
        padding: 24px 0 32px !important;
    }

    .ne-home-lead-main h1 {
        font-size: 30px;
        line-height: 1.2;
    }

    .ne-home-lead-main p {
        font-size: 15px;
        line-height: 1.76;
    }

    .ne-article-card {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .ne-thumb {
        min-height: 96px;
    }

    .ne-sidebar {
        grid-template-columns: 1fr;
    }
}
/* GEOFlow white editorial rhythm v4: end */
