:root {
    --ink: #151b26;
    --muted: #707783;
    --paper: #ffffff;
    --canvas: #f4f5f7;
    --line: #e0e3e7;
    --acid: #d5ef44;
    --rose: #da465d;
    --radius: 12px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--canvas);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    overflow-wrap: anywhere;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: #657700;
}

button, input {
    font: inherit;
}

button, a {
    -webkit-tap-highlight-color: transparent;
}

button {
    cursor: pointer;
}

a:focus-visible, button:focus-visible, [tabindex]:focus-visible {
    outline: 3px solid #ad4a77;
    outline-offset: 5px;
}

img, svg {
    max-width: 100%;
}

img {
    display: block;
}

h1, h2, h3, p {
    margin-top: 0;
}

h1, h2, h3 {
    line-height: 1.45;
}

.wrap {
    max-width: 1248px;
    width: calc(100% - 64px);
    margin-inline: auto;
}

.icon {
    width: 21px;
    height: 21px;
    flex: 0 0 21px;
    vertical-align: -3px;
}

.utility {
    background: var(--ink);
    color: #c6cbd2;
    font-size: 12px;
}

.utility-inner {
    display: flex;
    justify-content: space-between;
    padding-block: 7px;
}

.utility p {
    margin: 0;
}

.live-dot {
    color: var(--acid);
    margin-right: 9px;
}

header {
    background: white;
}

.brand-row {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 112px;
}

.logo-symbol {
    flex: 0 0 58px;
}

.brand-name {
    font-size: 25px;
    font-weight: 850;
    letter-spacing: -1px;
    margin: 0 0 2px;
}

.brand-subtitle {
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 3px;
    margin: 0;
}

.brand-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 25px;
}

.brand-note {
    font-size: 14px;
    color: var(--muted);
}

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    padding: 11px 19px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 650;
    line-height: 1.5;
    min-height: 44px;
}

.button span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.button.dark {
    background: var(--ink);
    color: white;
}

.button.dark:hover {
    background: #34402b;
    color: var(--acid);
}

.button.outline {
    background: transparent;
    border-color: #aeb5be;
}

.main-nav {
    border-block: 1px solid var(--line);
}

.nav-inner {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
}

.nav-link {
    text-align: center;
    padding: 16px 4px;
    font-size: 14px;
    white-space: nowrap;
    position: relative;
}

.nav-link span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.nav-link.active {
    font-weight: 750;
    background: #f6f9e9;
}

.nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 20%;
    right: 20%;
    height: 3px;
    background: #839500;
}

.main-content {
    padding-top: 30px;
}

.edition-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 21px;
}

.eyebrow {
    color: #737c47;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.edition-heading h2 {
    font-size: 30px;
    letter-spacing: -1px;
    margin: 4px 0 0;
}

.edition-heading > p {
    font-size: 12px;
    color: var(--muted);
    margin: 12px 0 0;
}

.status-pill {
    border: 1px solid #d5dcab;
    border-radius: 20px;
    padding: 4px 9px;
    margin-right: 9px;
    color: #596812;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.85fr) minmax(0, 1fr);
    gap: 22px;
}

.hero-slider {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: #242631;
    aspect-ratio: 1.65;
    isolation: isolate;
}

.slide {
    position: absolute;
    inset: 0;
    visibility: hidden;
    opacity: 0;
    transition: opacity 450ms ease, visibility 450ms;
}

.slide.current {
    visibility: visible;
    opacity: 1;
}

.slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #151b2600 0%, #151b2666 35%, #10141efa 100%);
    z-index: -1;
}

.news-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1.6;
    object-fit: cover;
    background: linear-gradient(135deg, #4b5360, #202730);
    color: #f2f2ed;
    font-size: 14px;
}

.slide > img {
    height: 100%;
    position: absolute;
    inset: 0;
    z-index: -2;
}

.slide-copy {
    position: absolute;
    inset: auto 34px 72px;
    color: white;
}

.hero-tag {
    background: var(--acid);
    color: #263005;
    font-size: 12px;
    font-weight: 750;
    padding: 4px 9px;
    border-radius: 3px;
}

.slide h2 {
    font-size: clamp(24px, 2.55vw, 34px);
    margin: 14px 0 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.slide a:hover {
    color: var(--acid);
}

.slide p {
    font-size: 14px;
    color: #d0d3d8;
    margin-bottom: 13px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero-link {
    font-size: 14px;
    font-weight: 650;
}

.slider-controls {
    position: absolute;
    z-index: 2;
    bottom: 22px;
    left: 34px;
    right: 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slider-dots, .slider-arrows {
    display: flex;
    align-items: center;
    gap: 8px;
}

.slider-dot {
    border: 0;
    border-radius: 0;
    padding: 0;
    height: 28px;
    width: 24px;
    font-size: 0;
    background: transparent;
    position: relative;
}

.slider-dot::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffffff66;
    position: absolute;
    top: 10px;
    left: 8px;
}

.slider-dot.selected::after {
    background: var(--acid);
}

.slider-arrows button {
    width: 34px;
    height: 34px;
    padding: 0;
    border: 1px solid #ffffff44;
    border-radius: 50%;
    background: #ffffff0d;
    color: white;
}

.slider-arrows button:hover {
    background: #ffffff30;
}

.hero-aside {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
    min-width: 0;
}

.spot-card {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    border-radius: var(--radius);
    background: white;
    overflow: hidden;
    border: 1px solid var(--line);
    min-width: 0;
}

.spot-image img {
    height: 100%;
    aspect-ratio: 1;
}

.spot-copy {
    padding: 21px 17px;
}

.spot-copy h2 {
    font-size: 18px;
    margin: 8px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.spot-copy p {
    font-size: 12px;
    color: var(--muted);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ticker {
    display: grid;
    grid-template-columns: 130px repeat(3, minmax(0, 1fr));
    gap: 22px;
    padding: 18px 20px;
    background: #e9eddb;
    border-radius: 8px;
    align-items: center;
    margin-top: 18px;
}

.ticker h2 {
    font-size: 16px;
    margin: 0;
}

.ticker .icon {
    margin-right: 7px;
}

.ticker a {
    font-size: 13px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ticker b {
    font-size: 12px;
    color: #68783b;
    margin-right: 9px;
}

.section {
    margin-top: 42px;
}

.section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 21px;
}

.section-heading h2, .tracking-panel h2, .archive-panel h2 {
    font-size: 24px;
    margin: 0;
    letter-spacing: -.5px;
}

.section-heading .icon, .tracking-panel h2 .icon, .archive-panel h2 .icon {
    margin-right: 10px;
}

.section-heading p {
    color: var(--muted);
    font-size: 14px;
    margin: 5px 0 0;
}

.more {
    font-size: 13px;
    color: #606875;
    white-space: nowrap;
}

.card-grid {
    display: grid;
    gap: 22px;
}

.four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.story-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
    min-width: 0;
    display: flex;
    flex-direction: column;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.story-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px #1720300b;
}

.card-image {
    display: block;
    overflow: hidden;
}

.card-copy {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 9px;
}

.card-meta .eyebrow {
    letter-spacing: 0;
}

.story-card h3 {
    font-size: 17px;
    margin: 0 0 9px;
    line-height: 1.65;
}

.dek {
    font-size: 14px;
    color: var(--muted);
    margin: 0 0 16px;
}

.byline {
    color: #737a84;
    font-size: 12px;
    margin-top: auto;
}

.compact {
    flex-direction: row;
}

.compact .card-image {
    flex: 0 0 34%;
}

.compact .news-image {
    height: 100%;
    aspect-ratio: 1;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1.85fr) minmax(0, 1fr);
    gap: 26px;
}

.panel {
    background: white;
    padding: 27px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.news-row {
    display: flex;
    gap: 18px;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid var(--line);
}

.news-row:last-child {
    padding-bottom: 0;
}

.list-number {
    font-size: 30px;
    font-weight: 350;
    color: #b7bdc6;
    font-variant-numeric: tabular-nums;
}

.news-row h3 {
    font-size: 18px;
    margin: 5px 0 6px;
}

.news-row p {
    font-size: 14px;
    color: var(--muted);
    margin: 0;
}

.row-arrow {
    margin-left: auto;
    font-size: 23px;
}

.rank-panel {
    padding: 27px;
    background: var(--ink);
    border-radius: var(--radius);
    color: white;
}

.rank-panel .more {
    color: var(--acid);
}

.rank-note {
    color: #b7bec8;
    font-size: 12px;
    border-bottom: 1px solid #ffffff22;
    padding-bottom: 18px;
    margin: -5px 0 0;
}

.rank-row {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #ffffff1c;
}

.rank-row:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.rank-number {
    font-size: 33px;
    font-weight: 750;
    font-style: italic;
    line-height: 1.2;
    color: var(--acid);
}

.rank-row h3 {
    font-size: 16px;
    margin: 6px 0 0;
}

.rank-row .eyebrow {
    color: #a7afbc;
}

.rank-row a:hover {
    color: var(--acid);
}

.verify-section {
    border-block: 1px solid #d5ddc1;
    padding-block: 27px;
}

.verify-card {
    background: #edf0e5;
    border-radius: 8px;
    padding: 22px;
}

.verify-card > .icon {
    color: #778a31;
    width: 28px;
    height: 28px;
    margin-bottom: 10px;
}

.verify-card h3 {
    font-size: 17px;
}

.verify-card p {
    color: #626b56;
    font-size: 14px;
    margin-bottom: 0;
}

.tracking-panel, .archive-panel {
    padding: 30px;
    border-radius: var(--radius);
    background: white;
    border: 1px solid var(--line);
}

.tracking-panel h2, .archive-panel h2 {
    margin: 7px 0 21px;
}

.tracking-panel h3, .archive-panel h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.tracking-panel p, .archive-panel p {
    font-size: 14px;
    color: var(--muted);
}

.timeline {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border-top: 2px solid #b5c567;
    padding-top: 13px;
    margin-block: 24px;
    font-size: 13px;
    color: #5e6e31;
}

.archive-panel {
    background: #ede9ef;
}

.text-link {
    font-size: 14px;
    font-weight: 650;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.about-section {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 64px;
    padding: 20px 0 0;
}

.about-section h2 {
    font-size: 28px;
    max-width: 360px;
    margin-top: 8px;
}

.about-section p {
    color: #656d78;
    font-size: 15px;
}

.subscribe-band {
    display: flex;
    align-items: center;
    gap: 60px;
    justify-content: space-between;
    margin-top: 45px;
    margin-bottom: 45px;
    padding: 35px 42px;
    background: var(--acid);
    border-radius: var(--radius);
}

.subscribe-band > div {
    max-width: 850px;
}

.subscribe-band > img {
    flex: 0 0 128px;
    width: 128px;
    height: 128px;
}

.subscribe-band .eyebrow {
    color: #566010;
}

.subscribe-band h2 {
    font-size: 27px;
    margin: 8px 0;
}

.subscribe-band p {
    font-size: 14px;
    color: #4c5712;
    margin-bottom: 21px;
}

.subscribe-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 23px;
}

footer {
    background: #151b26;
    color: #b4bbc7;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-block: 44px;
}

.footer-brand {
    font-size: 21px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.footer-intro {
    font-size: 13px;
    white-space: pre-line;
}

.footer-links h2 {
    font-size: 14px;
    color: white;
    margin-bottom: 15px;
}

.footer-links a {
    display: block;
    font-size: 13px;
    margin-bottom: 9px;
}

footer a:hover {
    color: var(--acid);
}

.copyright {
    padding-block: 19px;
    border-top: 1px solid #ffffff1c;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    font-size: 12px;
    color: #858f9e;
}

.breadcrumb {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 24px;
}

.channel-heading {
    border-bottom: 1px solid var(--line);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.channel-heading h1 {
    font-size: 42px;
    margin: 9px 0;
}

.channel-heading .icon {
    width: 34px;
    height: 34px;
    margin-right: 14px;
}

.channel-heading p {
    color: var(--muted);
    font-size: 17px;
}

.channel-stats {
    display: flex;
    gap: 22px;
    color: #6d7753;
    font-size: 13px;
}

.channel-feature {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}

.feature-image img {
    height: 100%;
}

.feature-copy {
    padding: 35px;
}

.feature-copy h2 {
    font-size: 28px;
    margin: 16px 0;
}

.feature-copy p {
    color: var(--muted);
}

.feature-copy time {
    display: block;
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 24px;
}

.more-region {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 28px;
    padding: 25px;
    border-block: 1px solid var(--line);
}

.more-region h2 {
    font-size: 18px;
    margin-bottom: 7px;
}

.more-region p {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 0;
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 32px;
    align-items: start;
}

.article-main {
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 40px;
    min-width: 0;
}

.article-header h1 {
    font-size: 35px;
    margin: 14px 0 18px;
}

.article-lead {
    font-size: 18px;
    color: #707783;
    line-height: 1.9;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    font-size: 12px;
    color: var(--muted);
    border-block: 1px solid var(--line);
    padding: 15px 0;
    margin-block: 25px;
}

.reading-note {
    background: #f2f4ea;
    border-left: 3px solid #a6b851;
    padding: 18px;
    font-size: 14px;
    line-height: 1.85;
    color: #656e50;
}

.article-section {
    margin-top: 34px;
}

.article-section h2 {
    font-size: 25px;
    margin-bottom: 18px;
}

.article-index {
    color: #87944d;
    font-size: 17px;
    margin-right: 12px;
}

.article-section p {
    line-height: 2.15;
    font-size: 17px;
    color: #424b57;
    margin-bottom: 24px;
}

figure {
    margin: 0;
}

figure img {
    border-radius: 7px;
}

figcaption {
    color: var(--muted);
    font-size: 12px;
    padding-top: 9px;
    text-align: center;
}

.article-end {
    margin-top: 35px;
    padding: 28px 16px;
    background: #f6f7f9;
    text-align: center;
    font-size: 14px;
}

.article-end p {
    color: var(--muted);
    margin: 13px 0;
}

.article-pagination {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    padding-block: 27px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--line);
}

.article-pagination a {
    display: block;
    margin-top: 9px;
    font-size: 15px;
}

.article-pagination p {
    color: var(--muted);
    font-size: 14px;
    margin: 9px 0 0;
}

.sidebar-box {
    background: white;
    border: 1px solid var(--line);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 22px;
}

.sidebar-box h2 {
    font-size: 20px;
    margin: 9px 0 19px;
}

.sidebar-box ol {
    padding-left: 20px;
    color: #646e79;
    font-size: 14px;
    line-height: 2;
    margin-bottom: 0;
}

.sidebar-box article {
    border-top: 1px solid var(--line);
    padding-top: 20px;
    margin-top: 20px;
}

.sidebar-box h3 {
    font-size: 16px;
    margin: 9px 0;
}

.sidebar-box p {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 0;
}

.info-page, .feed-panel {
    max-width: 880px;
    margin-inline: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
    padding: 42px;
}

.info-page h1 {
    font-size: 36px;
    margin-top: 10px;
}

.info-page section {
    margin-top: 35px;
}

.info-page h2, .feed-panel h2 {
    font-size: 23px;
}

.info-page p, .feed-panel p {
    line-height: 2;
    color: #5c6570;
}

.feed-panel {
    margin-top: 24px;
}

.feed-address {
    display: block;
    padding: 16px;
    background: #edf0e5;
    border-radius: 6px;
    font-size: 15px;
    margin-block: 20px;
    overflow-wrap: anywhere;
}

.copy-status {
    font-size: 14px;
    margin: 18px 0 0;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        transition: none !important;
    }
}
