.page-news {
    --news-gold: #e3b341;
    --news-gold-soft: #f7d98c;
    --news-red: #e63b3b;
    --news-blue: #1b6df2;
    --news-sky: #5fa8ff;
    --news-cream: #f6f3eb;
    --news-grey: #b9c6da;
    --news-navy-700: #123b77;
    --news-line: rgba(95, 168, 255, 0.16);
    --news-card-bg: rgba(255, 255, 255, 0.06);
    display: block;
    padding: 26px 20px 72px;
    background-image:
        linear-gradient(rgba(95, 168, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(95, 168, 255, 0.07) 1px, transparent 1px);
    background-size: 28px 28px;
    position: relative;
}
.page-news > * {
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
}
.page-news a {
    color: var(--news-sky);
    text-decoration: none;
    transition: color var(--duration) var(--ease);
}
.page-news a:hover {
    color: var(--news-gold-soft);
}
.page-news .breadcrumb {
    margin: 0 0 22px;
    font-size: 13px;
}
.page-news .breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: var(--font-mono);
    color: var(--news-grey);
}
.page-news .breadcrumb li + li::before {
    content: "/";
    margin-right: 8px;
    color: rgba(185, 198, 218, 0.5);
}
.page-news .breadcrumb li[aria-current="page"] {
    color: var(--news-gold);
}

/* Hero */
.page-news .news-hero {
    padding: 18px 0 34px;
    border-bottom: 1px solid var(--news-line);
    position: relative;
}
.page-news .news-hero::after {
    content: "OBSERVE / 内容观察";
    position: absolute;
    right: 0;
    top: 8px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    color: rgba(227, 179, 65, 0.65);
    text-transform: uppercase;
}
.page-news .news-hero h1 {
    font-family: var(--font-display);
    font-size: 2.6rem;
    line-height: 1.08;
    margin: 8px 0 12px;
    color: var(--news-cream);
    letter-spacing: -0.02em;
}
.page-news .news-hero .lead {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--news-grey);
    max-width: 640px;
}
.page-news .hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 18px;
    font-size: 12.5px;
    color: var(--news-gold);
    letter-spacing: 0.04em;
}
.page-news .hero-meta .mono::before {
    content: "● ";
    color: rgba(227, 179, 65, 0.5);
    font-size: 9px;
    margin-right: 2px;
}

/* Section head */
.page-news .section-head {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 10px 16px;
    margin: 0 0 18px;
    padding-top: 34px;
    border-top: 1px solid rgba(95, 168, 255, 0.22);
}
.page-news .section-head h2 {
    font-family: var(--font-display);
    font-size: 1.7rem;
    margin: 0;
    color: var(--news-cream);
    letter-spacing: -0.01em;
}

/* Latest */
.page-news .news-latest {
    padding-top: 10px;
}
.page-news .latest-grid {
    display: grid;
    gap: 18px;
}
.page-news .news-feature {
    background: var(--news-card-bg);
    border: 1px solid var(--news-line);
    border-radius: 3px;
    overflow: hidden;
    display: block;
    position: relative;
    transition: border-color var(--duration) var(--ease), transform var(--duration) var(--ease);
}
.page-news .news-feature:hover {
    border-color: rgba(227, 179, 65, 0.6);
    transform: translateY(-2px);
}
.page-news .feature-img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 1200 / 700;
    object-fit: cover;
    border-bottom: 1px solid rgba(227, 179, 65, 0.35);
}
.page-news .feature-body {
    padding: 18px 18px 20px;
}
.page-news .feature-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}
.page-news .feature-body h3 {
    font-size: 1.3rem;
    line-height: 1.3;
    margin: 0 0 8px;
    color: var(--news-cream);
    font-family: var(--font-display);
    letter-spacing: -0.01em;
}
.page-news .feature-body p {
    margin: 0 0 12px;
    font-size: 0.94rem;
    line-height: 1.65;
    color: var(--news-grey);
}
.page-news .feature-meta,
.page-news .news-item__meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 12px;
    color: var(--news-gold);
}
.page-news .coord {
    color: rgba(185, 198, 218, 0.7);
}
.page-news .news-list {
    display: grid;
    gap: 12px;
}
.page-news .news-item {
    background: rgba(10, 30, 64, 0.72);
    border: 1px solid rgba(95, 168, 255, 0.12);
    border-left: 3px solid rgba(95, 168, 255, 0.25);
    border-radius: 2px;
    padding: 14px 14px 12px;
    position: relative;
    transition: border-color var(--duration) var(--ease), transform var(--duration) var(--ease), background var(--duration) var(--ease);
    animation: pnews-rise 0.5s var(--ease) backwards;
}
.page-news .news-item:nth-child(1) {
    animation-delay: 0.04s;
}
.page-news .news-item:nth-child(2) {
    animation-delay: 0.1s;
}
.page-news .news-item:nth-child(3) {
    animation-delay: 0.16s;
}
.page-news .news-item:nth-child(4) {
    animation-delay: 0.22s;
}
@keyframes pnews-rise {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.page-news .news-item:hover {
    border-color: rgba(227, 179, 65, 0.65);
    background: rgba(18, 59, 119, 0.38);
    transform: translateY(-2px);
}
.page-news .news-item h3 {
    font-size: 0.98rem;
    line-height: 1.4;
    margin: 8px 0 6px;
    color: var(--news-cream);
    font-family: var(--font-body);
    font-weight: 700;
}
.page-news .news-item__excerpt {
    margin: 0 0 10px;
    font-size: 0.86rem;
    line-height: 1.55;
    color: var(--news-grey);
}
.page-news .news-item__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}
.page-news .news-item__index {
    font-size: 12px;
    color: rgba(185, 198, 218, 0.55);
}

/* Tags */
.page-news .tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 11px;
    line-height: 1;
    padding: 5px 9px;
    border-radius: 2px;
    letter-spacing: 0.08em;
    white-space: nowrap;
}
.page-news .tag--report {
    color: #fbd7d7;
    border: 1px solid rgba(230, 59, 59, 0.55);
    background: rgba(230, 59, 59, 0.12);
}
.page-news .tag--guide {
    color: #d4e6ff;
    border: 1px solid rgba(27, 109, 242, 0.55);
    background: rgba(27, 109, 242, 0.12);
}
.page-news .tag--price {
    color: var(--news-gold-soft);
    border: 1px solid rgba(227, 179, 65, 0.55);
    background: rgba(227, 179, 65, 0.1);
}
.page-news .tag--hot {
    color: var(--news-cream);
    border: 1px solid rgba(227, 179, 65, 0.7);
    background: rgba(227, 179, 65, 0.18);
}

/* Columns */
.page-news .columns-layout {
    display: grid;
    gap: 20px;
}
.page-news .columns-main {
    display: grid;
    gap: 16px;
}
.page-news .channel-block {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(95, 168, 255, 0.14);
    border-radius: 3px;
    padding: 18px 18px 14px;
    position: relative;
    transition: border-color var(--duration) var(--ease);
}
.page-news .channel-block:hover {
    border-color: rgba(227, 179, 65, 0.5);
}
.page-news .channel-block__head {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-bottom: 8px;
}
.page-news .channel-code {
    font-size: 12px;
    color: var(--news-gold);
    letter-spacing: 0.1em;
}
.page-news .channel-block__head h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--news-cream);
}
.page-news .channel-count {
    font-size: 11.5px;
    margin-left: auto;
    color: rgba(185, 198, 218, 0.65);
}
.page-news .channel-block > p {
    margin: 0 0 10px;
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--news-grey);
}
.page-news .channel-articles {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(95, 168, 255, 0.12);
}
.page-news .channel-articles li {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(95, 168, 255, 0.09);
}
.page-news .channel-articles a {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--news-cream);
    flex: 1;
}
.page-news .channel-articles a:hover {
    color: var(--news-gold-soft);
}
.page-news .channel-articles .mono {
    font-size: 11px;
    color: rgba(185, 198, 218, 0.55);
    white-space: nowrap;
}
.page-news .columns-aside {
    align-self: start;
}
.page-news .columns-aside .figure {
    margin: 0;
}
.page-news .columns-aside__img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 600 / 600;
    object-fit: cover;
    border-radius: 3px;
    border: 1px solid rgba(227, 179, 65, 0.35);
}
.page-news .figure__caption {
    margin-top: 8px;
    font-size: 13px;
    color: var(--news-grey);
}

/* Season flow */
.page-news .flow-lead {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--news-grey);
    max-width: 720px;
    margin: 0 0 18px;
}
.page-news .flow-grid {
    display: grid;
    gap: 20px;
}
.page-news .flow-chart {
    background: rgba(10, 30, 64, 0.72);
    border: 1px solid rgba(95, 168, 255, 0.16);
    border-radius: 3px;
    padding: 14px 10px 10px;
}
.page-news .flow-svg {
    width: 100%;
    height: auto;
    display: block;
    min-height: 260px;
}
.page-news .flow-gridline line {
    stroke: rgba(95, 168, 255, 0.13);
    stroke-width: 1;
    stroke-dasharray: 3 5;
}
.page-news .flow-axis {
    stroke: rgba(246, 243, 235, 0.4);
    stroke-width: 1.4;
}
.page-news .flow-line {
    stroke: var(--news-gold);
    stroke-width: 3;
    stroke-linejoin: round;
    stroke-linecap: round;
    filter: drop-shadow(0 0 6px rgba(227, 179, 65, 0.35));
}
.page-news .flow-fill {
    fill: url(#pnews-flow-grad);
}
.page-news .flow-dot {
    fill: var(--news-gold);
    stroke: var(--news-navy-700);
    stroke-width: 2;
}
.page-news .flow-dot--end {
    fill: var(--news-red);
    filter: drop-shadow(0 0 6px rgba(230, 59, 59, 0.45));
}
.page-news .flow-label {
    font-family: var(--font-mono);
    font-size: 13px;
    fill: var(--news-grey);
}
.page-news .flow-aside {
    display: grid;
    gap: 14px;
    align-content: start;
}
.page-news .flow-aside__img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 1000 / 500;
    object-fit: cover;
    border-radius: 3px;
    border: 1px solid rgba(95, 168, 255, 0.25);
}
.page-news .flow-stats {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.page-news .flow-stat {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(95, 168, 255, 0.14);
    border-radius: 2px;
    padding: 12px 14px;
}
.page-news .flow-stat dt {
    font-size: 11.5px;
    color: var(--news-grey);
    margin-bottom: 4px;
    letter-spacing: 0.06em;
}
.page-news .flow-stat__value {
    margin: 0;
    font-family: var(--font-mono);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--news-gold-soft);
}

/* Digest */
.page-news .digest-layout {
    display: grid;
    gap: 20px;
}
.page-news .digest-main {
    background: rgba(18, 59, 119, 0.3);
    border: 1px solid rgba(227, 179, 65, 0.28);
    border-left: 4px solid var(--news-gold);
    border-radius: 3px;
    padding: 22px 20px;
}
.page-news .digest-quote {
    margin: 0 0 14px;
}
.page-news .digest-quote p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--news-cream);
    font-weight: 500;
}
.page-news .digest-quote p::before {
    content: "“";
    font-size: 2.4rem;
    line-height: 0;
    vertical-align: -12px;
    margin-right: 4px;
    color: var(--news-gold);
    font-family: var(--font-display);
}
.page-news .digest-quote p::after {
    content: "”";
    font-size: 2.4rem;
    line-height: 0;
    vertical-align: -12px;
    margin-left: 2px;
    color: var(--news-gold);
    font-family: var(--font-display);
}
.page-news .digest-footer {
    text-align: right;
    margin-top: 10px;
    font-size: 12px;
    color: rgba(227, 179, 65, 0.8);
}
.page-news .digest-note {
    margin: 0 0 16px;
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--news-grey);
}
.page-news .digest-note a {
    color: var(--news-gold-soft);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.page-news .digest-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.page-news .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    transition: background var(--duration) var(--ease), color var(--duration) var(--ease), border-color var(--duration) var(--ease);
}
.page-news .btn--ghost {
    border: 1px solid rgba(95, 168, 255, 0.45);
    color: var(--news-sky);
    background: transparent;
}
.page-news .btn--ghost:hover {
    border-color: var(--news-gold);
    color: var(--news-gold-soft);
    background: rgba(227, 179, 65, 0.06);
}
.page-news .btn--gold {
    border: 1px solid var(--news-gold);
    background: var(--news-gold);
    color: var(--navy-950);
}
.page-news .btn--gold:hover {
    background: var(--news-gold-soft);
    border-color: var(--news-gold-soft);
    color: var(--navy-950);
}
.page-news .btn--sm {
    padding: 8px 14px;
    font-size: 13px;
}
.page-news .digest-aside .figure {
    margin: 0;
}
.page-news .digest-aside__img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 600 / 800;
    object-fit: cover;
    border-radius: 3px;
    border: 1px solid rgba(227, 179, 65, 0.3);
}

/* Bottom nav */
.page-news .news-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 44px;
    padding-top: 20px;
    border-top: 1px solid rgba(95, 168, 255, 0.18);
}

/* Desktop */
@media (min-width: 900px) {
    .page-news {
        padding: 40px 40px 96px;
    }
    .page-news > * {
        max-width: 1280px;
    }
    .page-news .news-hero {
        padding: 24px 0 44px;
    }
    .page-news .news-hero h1 {
        font-size: 3.4rem;
    }
    .page-news .news-hero::after {
        font-size: 12px;
    }
    .page-news .latest-grid {
        grid-template-columns: 1.35fr 1fr;
        align-items: start;
    }
    .page-news .news-list {
        gap: 14px;
    }
    .page-news .columns-layout {
        grid-template-columns: 1fr 320px;
        align-items: start;
    }
    .page-news .columns-main {
        gap: 18px;
    }
    .page-news .columns-aside {
        position: sticky;
        top: 24px;
    }
    .page-news .flow-grid {
        grid-template-columns: 1.25fr 0.75fr;
        align-items: start;
    }
    .page-news .flow-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .page-news .digest-layout {
        grid-template-columns: 1.35fr 280px;
        align-items: start;
    }
    .page-news .digest-main {
        padding: 28px 30px;
    }
    .page-news .digest-aside {
        position: sticky;
        top: 24px;
    }
    .page-news .news-nav {
        justify-content: flex-end;
    }
}
@media (min-width: 600px) and (max-width: 899px) {
    .page-news .flow-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}
</html>
