:root {
    --ink: #142020;
    --muted: #62706e;
    --paper: #f3f5f1;
    --green: #c5f467;
    --line: #dce2da;
    --white: #fff;
    --radius: 12px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    overflow-wrap: anywhere;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
    cursor: pointer;
}

a, button {
    -webkit-tap-highlight-color: transparent;
}

a:focus-visible, button:focus-visible {
    outline: 3px solid #63842a;
    outline-offset: 5px;
}

img {
    display: block;
    width: 100%;
    max-width: 100%;
    object-fit: cover;
    background: #d9dfd5;
    color: #334a40;
}

h1, h2, h3, p {
    margin-top: 0;
}

.wrap {
    width: min(1240px, calc(100% - 64px));
    margin-inline: auto;
}

.topline {
    background: var(--green);
    font-size: 12px;
    letter-spacing: .07em;
}

.topline .wrap {
    display: flex;
    justify-content: space-between;
    padding-block: 7px;
}

.site-header {
    color: #fff;
    background: #101919;
}

.masthead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 110px;
    gap: 20px;
}

.brand, .footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-icon {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    background: transparent;
}

.brand h1, .brand-name {
    font-size: 27px;
    line-height: 1.3;
    font-weight: 800;
    margin: 0;
    letter-spacing: -.035em;
}

.brand p {
    color: #a9b6ae;
    font-size: 12px;
    letter-spacing: .17em;
    margin: 7px 0 0;
}

.header-note {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    color: #bec8c0;
}

.live-dot {
    width: 7px;
    height: 7px;
    display: inline-block;
    border-radius: 50%;
    background: #aee94d;
    flex-shrink: 0;
}

.edition {
    margin-left: 20px;
    padding-left: 22px;
    border-left: 1px solid #45524b;
    letter-spacing: .12em;
}

.nav {
    display: grid;
    grid-template-columns: repeat(9, minmax(0, 1fr));
    border-top: 1px solid #35413c;
}

.nav a {
    text-align: center;
    padding: 16px 3px;
    color: #c0cbc4;
    border-bottom: 3px solid transparent;
    font-size: 14px;
    transition: color .2s, background .2s;
}

.nav a span {
    margin-right: 7px;
}

.nav a.active, .nav a:hover {
    color: var(--green);
    border-bottom-color: var(--green);
    background: #1b2721;
}

.menu-toggle {
    display: none;
}

.issue-line {
    display: flex;
    align-items: center;
    gap: 22px;
    padding-block: 24px;
    font-size: 13px;
}

.issue-line > span:first-child {
    font-weight: 700;
    display: flex;
    gap: 7px;
    align-items: center;
}

.issue-line .live-dot {
    background: #4e7422;
}

.issue-line p {
    margin: 0;
    color: var(--muted);
    flex: 1;
}

.issue-line > span:last-child {
    color: var(--muted);
}

.cover {
    display: grid;
    grid-template-columns: minmax(0, 2.25fr) minmax(0, 1fr);
    gap: 22px;
    margin-bottom: 48px;
}

.hero {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    position: relative;
    aspect-ratio: 1.65;
    overflow: hidden;
    border-radius: var(--radius);
    background: #23352b;
    color: white;
}

.hero-slide {
    position: absolute;
    inset: 0;
}

[hidden] {
    display: none !important;
}

.hero-slide > img {
    width: 100%;
    height: 100%;
    background: #304439;
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgb(8 20 13 / 3%) 0%, rgb(8 20 13 / 45%) 40%, rgb(8 20 13 / 96%) 100%);
}

.hero-copy {
    position: absolute;
    inset: auto 38px 72px;
}

.hero-tag {
    display: inline-block;
    background: var(--green);
    color: #1c321a;
    font-size: 12px;
    padding: 4px 11px;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero h2 {
    font-size: clamp(24px, 2.4vw, 34px);
    line-height: 1.45;
    max-width: 690px;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero-copy p {
    font-size: 14px;
    color: #d6ded8;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-bottom: 16px;
}

.hero-link {
    font-size: 14px;
    border-bottom: 1px solid #a3af9d;
    padding-bottom: 5px;
}

.slider-controls {
    position: absolute;
    bottom: 20px;
    left: 38px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.slider-controls > button {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #71806e;
    color: white;
    background: #17271d;
}

.slider-controls [data-pause] {
    margin-left: auto;
}

.slider-dots {
    display: flex;
    gap: 5px;
}

.slider-dots button {
    width: 24px;
    height: 28px;
    padding: 0;
    background: transparent;
    border: 0;
    position: relative;
}

.slider-dots button::after {
    content: "";
    position: absolute;
    inset: 12px 4px;
    background: #818e80;
    border-radius: 3px;
}

.slider-dots button[aria-pressed="true"]::after {
    background: var(--green);
}

.cover-side {
    background: #e8eddf;
    border: 1px solid #d7dfcc;
    border-radius: var(--radius);
    padding: 29px;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.eyebrow {
    display: block;
    font-size: 12px;
    letter-spacing: .12em;
    font-weight: 700;
    margin-bottom: 13px;
}

.cover-side h2 {
    font-size: 32px;
    line-height: 1.35;
    letter-spacing: -.04em;
    margin-bottom: 16px;
}

.cover-side > p {
    font-size: 14px;
    color: #56634f;
    margin-bottom: 22px;
}

.cover-topic {
    display: flex;
    align-items: center;
    border-top: 1px solid #cfd8c4;
    padding: 13px 0;
    gap: 15px;
}

.cover-topic b {
    font: 22px Georgia, serif;
    color: #637449;
}

.cover-topic strong, .cover-topic span {
    display: block;
}

.cover-topic strong {
    font-size: 15px;
}

.cover-topic span, .cover-bottom {
    font-size: 12px;
    color: #627153;
}

.cover-bottom {
    margin-top: auto;
    padding-top: 12px;
    letter-spacing: .15em;
}

.news-section, .reading-board, .category-list {
    margin-bottom: 46px;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 15px;
    margin-bottom: 23px;
}

.section-heading > div {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.section-heading h2 {
    margin: 0;
    font-size: 23px;
    white-space: nowrap;
}

.section-icon {
    background: var(--ink);
    color: var(--green);
    border-radius: 6px;
    width: 31px;
    height: 31px;
    text-align: center;
    flex-shrink: 0;
}

.section-kicker {
    color: var(--muted);
    font-size: 13px;
    margin-left: 8px;
}

.more {
    font-size: 13px;
    white-space: nowrap;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 23px;
}

.card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.card-image {
    overflow: hidden;
    display: block;
    background: #e1e7db;
}

.card-image img {
    aspect-ratio: 1.75;
    height: auto;
    transition: transform .3s;
}

.card:hover .card-image img {
    transform: scale(1.025);
}

.card-copy {
    padding: 21px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.meta {
    color: var(--muted);
    font-size: 12px;
}

.card .meta {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 10px;
}

.card .meta > span {
    color: #486a20;
    font-weight: 700;
}

.card h3 {
    font-size: 19px;
    line-height: 1.65;
    margin-bottom: 10px;
}

.card h3 a:hover, .board-item a:hover, .related a:hover {
    color: #577d22;
}

.card p {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 18px;
    line-height: 1.8;
}

.read-hint {
    margin-top: auto;
    font-size: 12px;
    color: #737d74;
}

.tone-1 .card {
    background: #eaf0e3;
    border-color: #d6decc;
}

.compact .card-image img {
    aspect-ratio: 2.5;
}

.tone-2 .card {
    background: transparent;
    border: 0;
    border-radius: 0;
}

.tone-2 .card-image {
    border-radius: 8px;
}

.tone-2 .card-copy {
    padding: 18px 0 0;
}

.editor-strip {
    background: var(--ink);
    color: #fff;
    padding: 29px 33px;
    margin-bottom: 46px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 25px;
}

.strip-number {
    font: italic 76px Georgia, serif;
    line-height: 1;
    color: var(--green);
}

.editor-strip .eyebrow {
    color: var(--green);
    margin-bottom: 5px;
}

.editor-strip h2 {
    font-size: 22px;
    margin-bottom: 6px;
}

.editor-strip p {
    font-size: 14px;
    color: #aebaae;
    margin: 0;
}

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 11px 20px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 700;
    min-height: 44px;
    text-align: center;
}

.button.outline {
    border: 1px solid currentColor;
}

.button.dark {
    color: var(--green);
    background: var(--ink);
}

.button.light {
    background: var(--green);
    color: var(--ink);
}

.editor-strip .button {
    margin-left: auto;
    flex-shrink: 0;
}

.board-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 36px;
}

.board-item {
    padding: 18px 0;
    display: flex;
    align-items: center;
    gap: 18px;
    border-bottom: 1px solid var(--line);
}

.board-item > div {
    flex: 1;
}

.board-no {
    font: italic 30px Georgia, serif;
    color: #759341;
    min-width: 40px;
}

.board-item h3 {
    margin: 3px 0 0;
    font-size: 16px;
}

.board-note {
    font-size: 12px;
    color: var(--muted);
    margin: 15px 0 0;
}

.about-block {
    padding: 36px 0 45px;
    display: grid;
    grid-template-columns: .9fr 1.3fr;
    gap: 65px;
    border-top: 2px solid var(--ink);
}

.about-block h2 {
    font-size: 29px;
    line-height: 1.55;
}

.about-block p {
    color: #536255;
    font-size: 15px;
    line-height: 1.95;
}

.text-link {
    font-weight: 700;
    border-bottom: 1px solid;
    padding-bottom: 5px;
    font-size: 14px;
}

.subscribe {
    border-top: 1px solid #cad7b7;
    background: #e5edd8;
    padding: 33px;
    border-radius: var(--radius);
    margin-bottom: 45px;
    display: flex;
    gap: 28px;
    align-items: center;
}

.subscribe > img {
    width: 91px;
    height: 91px;
    flex-shrink: 0;
    background: transparent;
}

.subscribe > div:nth-child(2) {
    flex: 1;
}

.subscribe h2 {
    font-size: 23px;
    margin-bottom: 8px;
}

.subscribe .eyebrow {
    margin-bottom: 5px;
    color: #536837;
}

.subscribe p {
    font-size: 14px;
    color: #53634b;
    margin: 0;
}

.subscribe-action {
    flex-shrink: 0;
    text-align: center;
}

.subscribe-action .button {
    background: var(--ink);
    color: var(--green);
}

.subscribe-action small {
    display: block;
    font-size: 12px;
    color: #626f53;
    margin-top: 7px;
}

footer {
    background: #101919;
    color: #e4eae5;
}

.footer-grid {
    padding-block: 45px;
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr;
    gap: 35px;
}

.footer-brand .brand-icon {
    width: 35px;
    height: 35px;
    flex-basis: 35px;
}

.footer-grid p {
    margin: 17px 0 0;
    color: #a6b4aa;
    font-size: 13px;
}

.footer-grid h2 {
    font-size: 14px;
    color: #e5eddf;
    margin-bottom: 13px;
}

.footer-grid > div > a {
    display: block;
    font-size: 13px;
    color: #a6b4aa;
    padding-block: 4px;
}

.copyright {
    border-top: 1px solid #33423a;
    padding-block: 18px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 12px;
    color: #a6b4aa;
}

.breadcrumb {
    display: flex;
    gap: 12px;
    font-size: 13px;
    color: var(--muted);
    padding-block: 25px;
    flex-wrap: wrap;
}

.category-intro {
    padding: 30px 0 35px;
    max-width: 800px;
}

.category-intro h1 {
    font-size: 43px;
    line-height: 1.3;
    margin-bottom: 16px;
}

.category-intro h2 {
    font-size: 23px;
    margin-bottom: 12px;
}

.category-intro p {
    color: var(--muted);
}

.category-count {
    font-size: 13px;
    color: #607241;
}

.category-feature {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background: #e5ecdb;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 44px;
}

.category-feature > div:first-child {
    min-width: 0;
}

.category-feature img {
    height: 100%;
    min-height: 330px;
    aspect-ratio: 1.5;
}

.category-feature > div:last-child {
    padding: 33px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
}

.category-feature h2 {
    font-size: 27px;
    line-height: 1.6;
    margin-bottom: 13px;
}

.category-feature p {
    color: #5b6954;
}

.category-feature .button {
    margin-top: 20px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
}

.more-reading {
    padding: 25px 0 45px;
}

.more-reading h2 {
    font-size: 22px;
}

.more-reading p {
    color: var(--muted);
}

.link-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.chip {
    border: 1px solid #cbd5c1;
    background: #eaf0e2;
    border-radius: 5px;
    padding: 8px 13px;
    font-size: 14px;
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 820px) minmax(0, 1fr);
    gap: 35px;
    margin-bottom: 45px;
    align-items: start;
}

.article-body {
    padding: 40px;
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    min-width: 0;
}

.article-header h1 {
    font-size: 34px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 25px;
}

.article-lead {
    font-size: 19px;
    color: #4b5e4f;
    line-height: 1.9;
}

.reading-note {
    font-size: 13px;
    line-height: 1.9;
    padding: 15px 18px;
    border-left: 3px solid #93b454;
    background: #f0f4e9;
    color: #5f6a55;
}

.article-section {
    margin-top: 34px;
}

.article-section h2 {
    font-size: 24px;
    line-height: 1.5;
    display: flex;
    gap: 14px;
}

.article-section h2 span {
    color: #749341;
    font-family: Georgia, serif;
    font-style: italic;
}

.article-section > p {
    line-height: 2.1;
    color: #354638;
    font-size: 17px;
}

figure {
    margin: 24px 0 32px;
}

figure img {
    height: auto;
    aspect-ratio: 1.65;
    border-radius: 7px;
}

figcaption {
    color: var(--muted);
    font-size: 12px;
    margin-top: 9px;
}

.article-end {
    border-top: 1px solid var(--line);
    text-align: center;
    padding-block: 25px;
}

.article-end > span {
    font-size: 13px;
    color: #70825b;
    letter-spacing: .15em;
}

.article-end p {
    color: var(--muted);
    font-size: 14px;
    margin-top: 18px;
}

.article-pagination {
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    padding-top: 25px;
}

.article-pagination span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    margin-bottom: 8px;
}

.article-pagination a, .article-pagination p {
    font-size: 14px;
    margin: 0;
}

.sidebar-panel {
    padding: 26px;
    border: 1px solid var(--line);
    background: #e9efdf;
    border-radius: var(--radius);
    margin-bottom: 23px;
}

.sidebar-panel h2 {
    font-size: 20px;
}

.sidebar-panel ol {
    padding-left: 22px;
    font-size: 14px;
}

.sidebar-panel li {
    margin-bottom: 14px;
}

.sidebar-panel p {
    color: var(--muted);
    font-size: 13px;
    margin: 0;
}

.related {
    background: transparent;
}

.related article {
    border-top: 1px solid var(--line);
    padding-block: 20px;
}

.related article:last-child {
    padding-bottom: 0;
}

.related h3 {
    font-size: 16px;
    margin: 9px 0;
}

.policy {
    max-width: 850px;
    padding-block: 25px 55px;
}

.policy h1 {
    font-size: 38px;
}

.policy h2 {
    font-size: 23px;
    margin-top: 33px;
}

.policy p {
    line-height: 2;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
