:root {
    --bg: #faf7f2;
    --paper: #ffffff;
    --paper-strong: #fffdf9;
    --ink: #1f1f1f;
    --muted: #6f665e;
    --primary: #8B1E24;
    --primary-dark: #8B1E24;
    --accent: #C6A56A;
    --line: #E7DDD1;
    --container: 1280px;
    --shadow-soft: 0 18px 42px rgba(62, 34, 24, 0.08);
    --shadow-strong: 0 28px 80px rgba(62, 34, 24, 0.18);
}

* {
    box-sizing: border-box;
}

html {
    background: var(--bg);
    overflow-x: hidden;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--bg);
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    font-size: 15px;
    line-height: 1.75;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

img {
    display: block;
    max-width: 100%;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 28px;
    min-height: 76px;
    padding: 0 max(24px, calc((100vw - var(--container)) / 2));
    background: rgba(250, 247, 242, 0.92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 188px;
}

.logo-mark {
    display: grid;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--primary);
    background: rgba(255, 251, 245, 0.96);
    border: 1px solid var(--accent);
    border-radius: 50%;
    box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.88);
    font-family: "KaiTi", "STKaiti", "SimSun", serif;
    font-size: 20px;
    font-weight: 800;
}

.logo strong {
    display: block;
    font-size: 22px;
    line-height: 1.08;
}

.logo small {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.22em;
}

.desktop-nav {
    display: flex;
    justify-content: flex-end;
    gap: 26px;
    font-size: 15px;
    font-weight: 650;
    white-space: nowrap;
}

.desktop-nav a {
    position: relative;
    padding: 28px 0 24px;
    color: rgba(31, 23, 20, 0.88);
}

.desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: 14px;
    left: 0;
    height: 2px;
    background: var(--primary);
    content: "";
    opacity: 0;
    transform: scaleX(0.45);
    transition: 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav .is-active {
    color: var(--primary);
}

.desktop-nav a:hover::after,
.desktop-nav .is-active::after {
    opacity: 1;
    transform: scaleX(1);
}

.menu-toggle,
.drawer-mask,
.mobile-drawer {
    display: none;
}

.section,
.hero-shell,
.footer-inner {
    width: min(var(--container), 100%);
    margin: 0 auto;
}

.section {
    padding: 48px 24px;
}

.section-muted {
    background: rgba(255, 255, 255, 0.38);
}

.eyebrow,
.section-kicker {
    margin: 0 0 12px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-title {
    margin-bottom: 28px;
}

.section-title,
.section-title-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
}

.section-title-row > div {
    display: grid;
    gap: 8px;
}

.section-title span {
    display: inline-block;
    width: 48px;
    height: 1px;
    background: linear-gradient(90deg, var(--primary), rgba(198, 165, 106, 0.4));
}

.section-title h2 {
    margin: 0;
    font-family: "Times New Roman", "Songti SC", serif;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 600;
}

.section-title p {
    max-width: 760px;
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

.section-title-row > a,
.text-link,
.mini-section-head a {
    color: var(--primary);
    font-size: 14px;
    font-weight: 800;
}

.hero {
    position: relative;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
}

.editorial-hero {
    min-height: 500px;
    background: var(--line);
}

.editorial-hero .hero-media {
    background:
        linear-gradient(90deg, rgba(22, 15, 13, 0.48) 0%, rgba(22, 15, 13, 0.18) 30%, rgba(251, 247, 240, 0) 58%),
        url("/assets/images/home/hero-cultural-v4.png") center / cover no-repeat;
}

.hero-inner {
    position: relative;
    display: grid;
    align-items: end;
    min-height: 500px;
    padding: 72px 24px;
}

.hero-copy {
    max-width: 520px;
    margin-left: 0;
    padding: 42px 0 20px;
    color: #fff9f3;
}

.hero h1 {
    margin: 0;
    font-family: "Songti SC", "SimSun", serif;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 0;
}

.hero-lead {
    margin: 18px 0 10px;
    color: rgba(255, 245, 238, 0.94);
    font-size: 24px;
    font-weight: 600;
}

.hero-subtitle {
    margin: 0;
    color: rgba(255, 236, 214, 0.9);
    font-size: 18px;
    letter-spacing: 0.18em;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    transition: transform 0.18s ease, opacity 0.18s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    color: #fff;
    background: var(--primary);
    box-shadow: 0 14px 28px rgba(139, 30, 36, 0.22);
}

.btn-ghost {
    color: #fff7ef;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 242, 225, 0.42);
    backdrop-filter: blur(10px);
}

.hero-index-band {
    margin-top: -48px;
    padding-top: 0;
}

.hero-index-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 30px;
    align-items: center;
    padding: 26px 30px;
    color: var(--ink);
    background: rgba(255, 250, 243, 0.94);
    box-shadow: var(--shadow-strong);
}

.hero-index-copy strong {
    display: block;
    margin-bottom: 6px;
    font-size: 24px;
}

.hero-index-copy p {
    margin: 0;
    color: var(--muted);
}

.hero-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
}

.hero-keywords a {
    padding: 8px 14px;
    color: var(--primary);
    background: rgba(139, 30, 36, 0.04);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
}

.site-search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 110px;
    min-height: 54px;
    overflow: hidden;
    background: var(--paper-strong);
    border: 1px solid var(--line);
    border-radius: 999px;
}

.site-search-form input {
    min-width: 0;
    padding: 0 22px;
    color: var(--ink);
    background: transparent;
    border: 0;
    outline: 0;
    font-size: 16px;
}

.site-search-form button {
    color: #fff;
    background: var(--primary);
    border: 0;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
}

.ratio-media {
    display: block;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: var(--paper);
}

.ratio-media img,
.topic-cover-card img,
.content-card-media img,
.editorial-topic-grid img,
.editorial-related-grid img,
.news-story-media img {
    width: 100%;
    height: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.system-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.system-card {
    display: grid;
    gap: 12px;
}

.system-card .ratio-media {
    height: clamp(260px, 28vw, 320px);
    max-height: 320px;
    box-shadow: var(--shadow-soft);
}

.system-card h3,
.editorial-feature-copy h3,
.news-story h3,
.content-card h2,
.topic-hero-copy h1,
.article-detail h1,
.page-hero h1,
.culture-lead-card h3 {
    margin: 0;
    font-family: "Songti SC", "SimSun", serif;
    font-weight: 600;
}

.system-card h3,
.brand-reference-grid strong {
    font-size: 18px;
    line-height: 1.35;
}

.system-card p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

.dynasty-ribbon {
    display: grid;
    gap: 28px;
}

.dynasty-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.28fr);
    gap: 28px;
    align-items: center;
}

.dynasty-panel:nth-child(even) {
    grid-template-columns: minmax(280px, 0.28fr) minmax(0, 0.72fr);
}

.dynasty-panel:nth-child(even) .dynasty-panel-media {
    order: 2;
}

.dynasty-panel-media {
    overflow: hidden;
    min-height: 360px;
    box-shadow: var(--shadow-soft);
}

.dynasty-panel-media img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

.dynasty-panel-copy h3 {
    font-size: 18px;
    line-height: 1.1;
}

.dynasty-panel-copy p:last-of-type {
    margin: 14px 0 18px;
    color: var(--muted);
    font-size: 16px;
}

.magazine-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 34px;
}

.question-stream {
    display: grid;
    gap: 0;
}

.question-row {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr) auto auto;
    gap: 16px;
    align-items: center;
    padding: 13px 0;
}

.question-mark {
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
}

.question-row strong {
    font-size: 18px;
    line-height: 1.45;
}

.question-row small,
.question-row time,
.content-card time,
.news-story time,
.article-meta,
.topic-list-grid time,
.editorial-feature-copy time {
    color: var(--muted);
    font-size: 13px;
    white-space: nowrap;
}

.editorial-metrics {
    display: grid;
    gap: 16px;
}

.metric-item {
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}

.metric-item strong {
    display: block;
    color: var(--primary);
    font-size: 24px;
    line-height: 1;
}

.metric-item small {
    margin-left: 2px;
    color: var(--muted);
    font-size: 14px;
}

.metric-item span {
    display: block;
    margin-top: 10px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.editorial-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.editorial-feature-card {
    display: grid;
    gap: 16px;
}

.editorial-feature-media {
    overflow: hidden;
    max-height: 330px;
    box-shadow: var(--shadow-soft);
}

.editorial-feature-media img {
    width: 100%;
    height: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.editorial-feature-copy h3 {
    margin-top: 6px;
    font-size: 18px;
    line-height: 1.24;
}

.editorial-feature-copy p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 15px;
}

.encyclopedia-brief-list {
    display: grid;
    gap: 0;
}

.brief-list-item {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 8px 20px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.brief-list-item:first-child {
    border-top: 1px solid var(--line);
}

.brief-list-item time {
    grid-row: span 2;
    color: var(--muted);
    font-size: 13px;
}

.brief-list-item h3,
.news-line-item strong {
    margin: 0;
    font-size: 18px;
    line-height: 1.4;
}

.brief-list-item p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

.topic-cover-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.topic-cover-card {
    display: grid;
    gap: 10px;
}

.topic-cover-card img {
    width: 100%;
    aspect-ratio: 3 / 4;
    height: clamp(220px, 24vw, 280px);
    max-height: 280px;
    object-fit: cover;
    box-shadow: var(--shadow-soft);
}

.topic-cover-card span {
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.topic-cover-card strong {
    font-family: "Songti SC", "SimSun", serif;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 600;
}

.topic-cover-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.two-column-editorial {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px;
}

.culture-feature-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) repeat(2, minmax(160px, 0.5fr));
    gap: 22px;
    align-items: stretch;
}

.culture-text-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px 28px;
}

.culture-lead-card {
    display: grid;
    grid-template-columns: minmax(0, 0.48fr) minmax(220px, 0.52fr);
    gap: 22px;
    align-items: center;
}

.culture-lead-card img {
    width: 100%;
    height: 100%;
    max-height: 260px;
    object-fit: cover;
    box-shadow: var(--shadow-soft);
}

.culture-lead-card h3 {
    font-size: 18px;
    line-height: 1.12;
}

.culture-lead-card p:last-of-type {
    margin: 14px 0 16px;
    color: var(--muted);
}

.culture-text-link {
    display: grid;
    align-content: center;
    gap: 8px;
    min-height: 110px;
    padding: 0 0 14px;
    border-bottom: 1px solid var(--line);
}

.culture-text-link span {
    color: var(--accent);
    font-size: 13px;
}

.culture-text-link strong {
    font-size: 18px;
    font-weight: 600;
}

.news-column {
    display: grid;
    gap: 28px;
}

.news-directory {
    display: grid;
    gap: 0;
}

.news-story {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    padding-bottom: 26px;
    border-bottom: 1px solid var(--line);
}

.news-story-featured {
    width: 100%;
    max-width: none;
    margin-bottom: 10px;
}

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

.news-story-media {
    overflow: hidden;
    max-height: 160px;
    box-shadow: var(--shadow-soft);
}

.news-story-media img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.news-story h3 {
    margin-top: 8px;
    font-size: 18px;
    line-height: 1.24;
}

.news-story p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 15px;
}

.news-story-copy p,
.brand-reference-grid span,
.culture-text-link small {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
}

.news-story-copy p {
    -webkit-line-clamp: 2;
}

.brand-reference-grid span,
.culture-text-link small {
    -webkit-line-clamp: 2;
}

.news-line-item {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

.news-line-item time {
    color: var(--muted);
    font-size: 13px;
}

.brand-reference-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px 26px;
}

.brand-reference-grid a {
    display: grid;
    gap: 8px;
    padding: 0 0 18px;
    border-bottom: 1px solid var(--line);
}

.brand-reference-grid span {
    color: var(--muted);
    font-size: 13px;
}

.brand-reference-grid strong {
    font-size: 18px;
}

.brand-reference-grid small {
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
}

.page-hero,
.topic-hero,
.article-detail {
    padding-top: 56px;
}

.editorial-page-hero h1,
.topic-hero-copy h1,
.article-detail h1 {
    font-size: 32px;
    line-height: 1.22;
}

.page-hero p:last-child,
.article-summary,
.topic-hero-copy p:last-child {
    max-width: 820px;
    color: var(--muted);
    font-size: 15px;
}

.editorial-topic-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.6fr) minmax(280px, 0.4fr);
    gap: 28px;
    align-items: center;
}

.topic-hero-media img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    box-shadow: var(--shadow-soft);
}

.editorial-list {
    display: grid;
    gap: 28px;
}

.content-card {
    display: grid;
    gap: 24px;
}

.editorial-list-card {
    grid-template-columns: 320px minmax(0, 1fr);
    align-items: center;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line);
}

.content-card-media {
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.content-card-media img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.content-card-copy h2 {
    margin-top: 8px;
    font-size: 18px;
    line-height: 1.2;
}

.content-card-copy p {
    margin: 12px 0 0;
    color: var(--muted);
}

.topic-group {
    border-top: 1px solid var(--line);
}

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

.editorial-topic-grid a,
.editorial-related-grid a {
    display: grid;
    gap: 10px;
}

.editorial-topic-grid img,
.editorial-related-grid img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    box-shadow: var(--shadow-soft);
}

.topic-list-grid strong,
.related-grid strong {
    font-family: "Songti SC", "SimSun", serif;
    font-size: 18px;
    line-height: 1.28;
    font-weight: 600;
}

.topic-list-grid small,
.related-grid small {
    color: var(--muted);
    font-size: 14px;
}

.article-detail {
    max-width: 860px;
}

.article-meta {
    margin-top: 12px;
}

.article-cover {
    width: min(360px, 100%);
    aspect-ratio: 3 / 4;
    max-height: 480px;
    margin: 24px 0;
    object-fit: cover;
    box-shadow: var(--shadow-soft);
}

.article-summary {
    margin: 0 0 24px;
    padding: 18px 22px;
    background: rgba(255, 248, 239, 0.92);
    border-left: 3px solid var(--primary);
}

.brand-profile-box {
    display: grid;
    gap: 8px;
    margin: 22px 0;
    padding: 18px 22px;
    color: var(--muted);
    background: rgba(255, 252, 247, 0.92);
    border: 1px solid var(--line);
}

.brand-profile-box p {
    margin: 0;
}

.brand-profile-box strong {
    color: var(--ink);
}

.brand-profile-box a {
    color: var(--primary);
    font-weight: 800;
}

.article-content {
    color: var(--ink);
    font-size: 16px;
    line-height: 2;
}

.article-content p,
.article-content ul,
.article-content ol,
.article-content blockquote {
    margin: 0 0 18px;
}

.article-content h2,
.article-content h3 {
    margin: 28px 0 12px;
    line-height: 1.3;
}

.article-content h2 {
    font-size: 24px;
}

.article-content h3 {
    font-size: 20px;
}

.article-content ul,
.article-content ol {
    padding-left: 1.4em;
}

.article-content blockquote {
    padding: 14px 18px;
    color: var(--muted);
    background: rgba(255, 248, 239, 0.92);
    border-left: 3px solid var(--primary);
}

.article-content hr {
    height: 1px;
    margin: 28px 0;
    background: var(--line);
    border: 0;
}

.article-content img,
.article-content .article-image img {
    width: auto;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.article-content .article-image {
    max-width: 100%;
    margin: 24px 0;
}

.article-content figcaption {
    margin-top: 8px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
    text-align: center;
}

.related-card-section {
    max-width: 980px;
}

.related-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.related-card {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.related-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
}

.related-card span {
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
}

.related-card strong {
    font-family: "Songti SC", "SimSun", serif;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 600;
}

.related-section {
    max-width: 860px;
}

.related-list {
    display: grid;
    gap: 0;
}

.related-list-item {
    display: grid;
    grid-template-columns: 32px 120px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

.related-list-item:first-child {
    border-top: 1px solid var(--line);
}

.related-index {
    color: var(--accent);
    font-family: "Times New Roman", serif;
    font-size: 20px;
}

.related-list-item img {
    width: 120px;
    height: 160px;
    object-fit: cover;
    box-shadow: var(--shadow-soft);
}

.related-list-item strong {
    display: block;
    font-size: 18px;
    line-height: 1.4;
}

.related-list-item small {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 13px;
}

.empty-state {
    padding: 26px 0;
    border-top: 1px solid var(--line);
}

.empty-state h2 {
    margin: 0 0 8px;
    font-size: 24px;
}

.empty-state p {
    margin: 0;
    color: var(--muted);
}

.minimal-footer {
    margin-top: 22px;
    background: #ffffff;
    border-top: 1px solid var(--line);
}

.about-page {
    background: linear-gradient(180deg, #fffaf3 0%, var(--bg) 34%, #fff 100%);
}

.about-shell {
    width: min(1160px, calc(100% - 48px));
    margin: 0 auto;
}

.about-hero {
    padding: 58px 0 38px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 248, 238, 0.94)),
        url("/assets/images/home/hero-cultural-v4.png") center 34% / cover no-repeat;
    border-bottom: 1px solid rgba(231, 221, 209, 0.72);
}

.about-hero-inner {
    max-width: 1160px;
}

.about-hero h1 {
    margin: 0;
    color: var(--ink);
    font-family: "Songti SC", "SimSun", serif;
    font-size: 36px;
    line-height: 1.22;
    font-weight: 600;
}

.about-subtitle {
    max-width: 780px;
    margin: 14px 0 0;
    color: #4f463e;
    font-size: 18px;
    line-height: 1.8;
}

.about-intro-card {
    display: grid;
    gap: 18px;
    margin-top: 34px;
    padding: 30px 34px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(231, 221, 209, 0.86);
    border-radius: 12px;
    box-shadow: var(--card-shadow);
}

.about-intro-card p {
    margin: 0;
    color: #3f3832;
    font-size: 16px;
    line-height: 2;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    padding: 26px 0 54px;
}

.about-card {
    position: relative;
    min-height: 214px;
    padding: 28px 30px;
    background: #fff;
    border: 1px solid rgba(231, 221, 209, 0.86);
    border-radius: 12px;
    box-shadow: var(--card-shadow);
}

.about-card-wide {
    min-height: 260px;
}

.about-icon {
    display: grid;
    width: 38px;
    height: 38px;
    margin-bottom: 18px;
    place-items: center;
    color: var(--primary);
    background: rgba(139, 30, 36, 0.06);
    border: 1px solid rgba(139, 30, 36, 0.12);
    border-radius: 50%;
    font-family: "KaiTi", "STKaiti", "SimSun", serif;
    font-size: 18px;
    font-weight: 800;
}

.about-card h2 {
    margin: 0 0 12px;
    font-size: 21px;
    line-height: 1.35;
}

.about-card p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.9;
}

.about-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.about-list li {
    position: relative;
    padding-left: 18px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}

.about-list li::before {
    position: absolute;
    top: 0.78em;
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    content: "";
}

.about-page + .minimal-footer,
.about-page ~ .minimal-footer {
    margin-top: 0;
}

.footer-inner-minimal {
    display: grid;
    grid-template-columns: 1fr 1.4fr 0.95fr 1.1fr;
    gap: 18px;
    align-items: start;
    padding: 22px 24px 24px;
}

.footer-brand p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.footer-logo strong {
    font-size: 22px;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
}

.minimal-footer a,
.footer-copy {
    color: var(--muted);
    font-size: 13px;
}

.footer-copy {
    display: grid;
    gap: 6px;
}

.footer-copy strong {
    color: var(--ink);
}

@media (min-width: 769px) and (max-width: 1024px) {
    :root {
        --container: 980px;
    }

    .magazine-grid,
    .two-column-editorial,
    .editorial-topic-hero,
    .culture-lead-card,
    .hero-index-shell {
        grid-template-columns: 1fr;
    }

    .editorial-feature-grid,
    .topic-cover-grid,
    .system-card-grid,
    .culture-feature-grid,
    .brand-reference-grid,
    .editorial-topic-grid,
    .editorial-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-inner-minimal {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .site-header {
        grid-template-columns: minmax(0, 1fr) 44px;
        min-height: 64px;
        padding: 10px 16px;
    }

    .logo {
        min-width: 0;
    }

    .logo-mark {
        width: 36px;
        height: 36px;
    }

    .logo strong {
        font-size: 18px;
    }

    .logo small {
        font-size: 9px;
        letter-spacing: 0.16em;
    }

    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: grid;
        width: 42px;
        height: 42px;
        place-items: center;
        gap: 4px;
        background: rgba(255, 252, 247, 0.96);
        border: 1px solid var(--line);
        border-radius: 50%;
        box-shadow: 0 12px 24px rgba(62, 34, 24, 0.08);
    }

    .menu-toggle span {
        display: block;
        width: 18px;
        height: 2px;
        background: var(--primary);
        border-radius: 999px;
    }

    .drawer-mask {
        position: fixed;
        inset: 0;
        z-index: 68;
        display: block;
        background: rgba(31, 23, 20, 0.44);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.22s ease;
    }

    .mobile-drawer {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 69;
        display: grid;
        grid-template-rows: auto 1fr auto;
        width: min(82vw, 330px);
        height: 100vh;
        padding: 22px 20px;
        background: var(--bg);
        box-shadow: -24px 0 46px rgba(31, 23, 20, 0.18);
        transform: translateX(104%);
        transition: transform 0.24s ease;
    }

    body.menu-open .drawer-mask {
        opacity: 1;
        pointer-events: auto;
    }

    body.menu-open .mobile-drawer {
        transform: translateX(0);
    }

    .drawer-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 16px;
        border-bottom: 1px solid var(--line);
    }

    .drawer-head strong {
        font-size: 20px;
    }

    .drawer-head button {
        width: 34px;
        height: 34px;
        color: var(--primary);
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid var(--line);
        border-radius: 50%;
        font-size: 24px;
        line-height: 1;
    }

    .mobile-drawer nav {
        display: grid;
        gap: 0;
        padding: 16px 0;
    }

    .mobile-drawer nav a {
        padding: 14px 2px;
        border-bottom: 1px solid var(--line);
        font-size: 17px;
        font-weight: 800;
    }

    .mobile-drawer nav a.is-active {
        color: var(--primary);
    }

    .mobile-drawer p {
        margin: 0;
        padding-top: 16px;
        color: var(--muted);
        border-top: 1px solid var(--line);
        font-size: 14px;
    }

    .section,
    .footer-inner {
        padding-right: 16px;
        padding-left: 16px;
    }

    .section {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .editorial-hero {
        min-height: 460px;
    }

    .editorial-hero .hero-media {
        background:
            linear-gradient(180deg, rgba(22, 15, 13, 0.42), rgba(22, 15, 13, 0.2)),
            url("/assets/images/home/hero-cultural-v4.png") center / cover no-repeat;
    }

    .hero-inner {
        min-height: 460px;
        padding: 42px 16px;
    }

    .hero-copy {
        max-width: 100%;
        margin-left: 0;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-lead {
        font-size: 22px;
    }

    .hero-subtitle {
        font-size: 15px;
        letter-spacing: 0.12em;
    }

    .hero-actions {
        gap: 10px;
    }

    .btn {
        min-height: 42px;
        padding: 0 16px;
        font-size: 14px;
    }

    .hero-index-band {
        margin-top: -18px;
    }

    .hero-index-shell,
    .dynasty-panel,
    .dynasty-panel:nth-child(even),
    .magazine-grid,
    .two-column-editorial,
    .editorial-list-card,
    .editorial-topic-hero,
    .editorial-topic-grid,
    .editorial-related-grid,
    .brand-reference-grid,
    .footer-inner-minimal,
    .culture-feature-grid,
    .culture-lead-card {
        grid-template-columns: 1fr;
    }

    .system-card-grid,
    .editorial-feature-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .topic-cover-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 14px;
    }

    .system-card,
    .editorial-feature-card {
        grid-template-columns: 132px minmax(0, 1fr);
        align-items: center;
        gap: 14px;
    }

    .system-card .ratio-media {
        width: 150px;
        height: 200px;
        max-height: none;
        grid-row: 1 / 3;
    }

    .topic-cover-card img {
        height: clamp(160px, 42vw, 200px);
        max-height: 200px;
    }

    .culture-text-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .section-title,
    .section-title-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .dynasty-panel-media,
    .dynasty-panel-media img {
        min-height: 250px;
    }

    .dynasty-panel-copy h3,
    .culture-lead-card h3 {
        font-size: 18px;
    }

    .question-row {
        grid-template-columns: 24px minmax(0, 1fr);
        gap: 12px;
    }

    .question-row small,
    .question-row time {
        grid-column: 2;
    }

    .question-row strong,
    .content-card-copy h2,
    .news-story h3,
    .topic-cover-card strong,
    .topic-list-grid strong,
    .related-grid strong,
    .editorial-feature-copy h3 {
        font-size: 18px;
    }

    .news-story {
        grid-template-columns: 96px minmax(0, 1fr);
        gap: 14px;
        align-items: start;
    }

    .news-story-media {
        width: 96px;
        height: 128px;
        max-height: 128px;
    }

    .topic-hero-media img,
    .article-cover {
        min-height: 0;
        max-height: none;
    }

    .article-cover {
        width: min(220px, 76vw);
        max-height: 300px;
    }

    .brief-list-item,
    .news-line-item {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .related-list-item {
        grid-template-columns: 24px 88px minmax(0, 1fr);
        gap: 12px;
        align-items: center;
    }

    .related-list-item img {
        width: 88px;
        height: 118px;
    }

    .page-hero,
    .topic-hero,
    .article-detail {
        padding-top: 38px;
    }

    .page-hero p:last-child,
    .topic-hero-copy p:last-child,
    .article-summary,
    .article-content {
        font-size: 16px;
    }

    .about-shell {
        width: calc(100% - 32px);
    }

    .about-hero {
        padding: 42px 0 28px;
    }

    .about-hero h1 {
        font-size: 30px;
    }

    .about-subtitle {
        font-size: 16px;
    }

    .about-intro-card {
        margin-top: 20px;
        padding: 22px 18px;
        border-radius: 10px;
    }

    .about-intro-card p,
    .about-card p {
        font-size: 15px;
        line-height: 1.9;
    }

    .about-grid,
    .about-list {
        grid-template-columns: 1fr;
    }

    .about-grid {
        gap: 16px;
        padding: 18px 0 38px;
    }

    .about-card,
    .about-card-wide {
        min-height: 0;
        padding: 22px 18px;
        border-radius: 10px;
    }

    .about-icon {
        margin-bottom: 14px;
    }

    .about-card h2 {
        font-size: 19px;
    }
}

/* V7 final overrides */
:root {
    --paper-soft: #FCFAF6;
    --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    --card-shadow-hover: 0 12px 28px rgba(62, 34, 24, 0.11);
}

.home-page {
    background:
        radial-gradient(circle at 12% 12%, rgba(198, 165, 106, 0.09), transparent 28%),
        linear-gradient(180deg, #FAF7F2 0%, #FCFAF6 48%, #FAF7F2 100%);
}

.home-page .section {
    padding-top: 56px;
    padding-bottom: 56px;
}

.home-page .section-muted {
    width: min(calc(var(--container) - 48px), calc(100% - 48px));
    margin: 20px auto;
    padding: 42px 32px;
    background: var(--paper-soft);
    border: 1px solid rgba(231, 221, 209, 0.82);
    border-radius: 16px;
    box-shadow: var(--card-shadow);
}

.section-title span {
    width: 4px;
    height: 24px;
    background: var(--primary);
    border-radius: 999px;
}

.section-title-row > div {
    grid-template-columns: 4px auto;
    align-items: center;
    gap: 12px;
}

.section-title-row > div span {
    grid-row: 1;
}

.section-title-row h2 {
    grid-column: 2;
}

.system-card {
    overflow: hidden;
    gap: 14px;
    padding: 14px 14px 20px;
    background: #fff;
    border: 1px solid rgba(231, 221, 209, 0.82);
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.system-card:hover,
.topic-cover-card:hover,
.brief-list-item:hover,
.news-story-featured:hover {
    transform: translateY(-3px);
    box-shadow: var(--card-shadow-hover);
}

.system-card .ratio-media,
.topic-cover-card img,
.news-story-media,
.brief-list-thumb {
    border-radius: 12px;
}

.system-card h3,
.system-card p {
    padding-right: 6px;
    padding-left: 6px;
}

.topic-cover-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
    align-items: stretch;
}

.topic-cover-card {
    position: relative;
    overflow: hidden;
    padding: 14px;
    background: #fff;
    border: 1px solid rgba(231, 221, 209, 0.82);
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.topic-cover-card-primary {
    grid-row: 1 / span 2;
}

.topic-cover-card-primary img {
    height: clamp(460px, 42vw, 580px);
    max-height: 580px;
}

.topic-cover-card-secondary {
    grid-column: 2;
    grid-template-columns: 132px minmax(0, 1fr);
    grid-template-rows: auto auto 1fr;
    align-items: center;
    gap: 8px 14px;
}

.topic-cover-card-secondary img {
    grid-row: 1 / span 3;
    width: 132px;
    height: 176px;
    max-height: 176px;
}

.topic-cover-card p {
    margin: 0;
}

.question-row {
    border-bottom: 1px solid var(--line);
}

.question-row:first-child {
    border-top: 1px solid var(--line);
}

.encyclopedia-brief-list {
    gap: 14px;
}

.brief-list-item {
    grid-template-columns: 156px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    padding: 14px;
    background: #fff;
    border: 1px solid rgba(231, 221, 209, 0.82);
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.brief-list-item:first-child,
.brief-list-item {
    border-top: 1px solid rgba(231, 221, 209, 0.82);
    border-bottom: 1px solid rgba(231, 221, 209, 0.82);
}

.brief-list-thumb {
    display: block;
    overflow: hidden;
    width: 156px;
    height: 208px;
    background: var(--paper-soft);
}

.brief-list-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.culture-text-link {
    min-height: 132px;
    padding: 18px 0;
}

.culture-text-link small {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.news-story-featured {
    padding: 16px;
    background: #fff;
    border: 1px solid rgba(231, 221, 209, 0.82);
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.news-line-item {
    padding-right: 8px;
    padding-left: 8px;
}

.brand-reference-grid a {
    padding: 16px 0 18px;
}

.related-section {
    margin-top: 8px;
    padding-top: 32px;
}

.related-list {
    overflow: hidden;
    background: var(--paper-soft);
    border: 1px solid rgba(231, 221, 209, 0.82);
    border-radius: 16px;
}

.related-list-item {
    grid-template-columns: 120px minmax(0, 1fr);
    padding: 14px;
    background: rgba(255, 255, 255, 0.56);
    transition: background 0.18s ease;
}

.related-list-item:hover {
    background: #fff;
}

.related-list-item:first-child {
    border-top: 0;
}

.related-index {
    display: none;
}

.related-list-item img {
    border-radius: 12px;
}

.related-list-item small {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.related-list-item time::before {
    color: var(--line);
    content: "/";
    margin-right: 8px;
}

@media (max-width: 768px) {
    .home-page .section {
        padding-top: 34px;
        padding-bottom: 34px;
    }

    .home-page .section-muted {
        width: calc(100% - 24px);
        margin: 12px auto;
        padding: 28px 16px;
    }

    .section-title-row > div {
        grid-template-columns: 4px auto;
    }

    .system-card {
        grid-template-columns: 132px minmax(0, 1fr);
        padding: 12px;
    }

    .system-card h3,
    .system-card p {
        padding-right: 0;
        padding-left: 0;
    }

    .topic-cover-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .topic-cover-card-primary,
    .topic-cover-card-secondary {
        grid-column: auto;
        grid-row: auto;
    }

    .topic-cover-card-primary img {
        height: clamp(180px, 48vw, 220px);
        max-height: 220px;
    }

    .topic-cover-card-secondary {
        grid-template-columns: 112px minmax(0, 1fr);
    }

    .topic-cover-card-secondary img {
        width: 112px;
        height: 150px;
        max-height: 150px;
    }

    .brief-list-item {
        grid-template-columns: 104px minmax(0, 1fr);
        gap: 12px;
        padding: 12px;
    }

    .brief-list-thumb {
        width: 104px;
        height: 138px;
    }

    .related-list-item {
        grid-template-columns: 88px minmax(0, 1fr);
    }
}

/* V8 homepage final tuning */
.editor-picks-section {
    padding-top: 42px;
    padding-bottom: 34px;
}

.editor-picks-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.editor-pick-card {
    display: grid;
    gap: 8px;
    min-height: 132px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(231, 221, 209, 0.88);
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.editor-pick-card:hover {
    transform: translateY(-2px);
    background: #fff;
    box-shadow: var(--card-shadow-hover);
}

.editor-pick-card span,
.brand-reference-grid em {
    width: fit-content;
    color: var(--primary);
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.editor-pick-card strong {
    font-family: "Songti SC", "SimSun", serif;
    font-size: 18px;
    line-height: 1.42;
    font-weight: 600;
}

.editor-pick-card time {
    align-self: end;
    color: var(--muted);
    font-size: 13px;
}

.topic-cover-grid {
    gap: 18px;
}

.topic-cover-card {
    padding: 12px;
}

.topic-cover-card-primary img {
    height: clamp(360px, 34vw, 460px);
    max-height: 460px;
}

.topic-cover-card-secondary img {
    width: 116px;
    height: 155px;
    max-height: 155px;
}

.topic-cover-card strong {
    font-size: 17px;
}

.topic-cover-card p {
    font-size: 13px;
    line-height: 1.7;
}

.brief-list-item {
    grid-template-columns: 112px minmax(0, 1fr);
    min-height: 132px;
    padding: 10px 14px;
}

.brief-list-thumb {
    width: 112px;
    height: 149px;
}

.brief-list-item h3 {
    margin-top: 4px;
    font-size: 17px;
}

.brief-list-item p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-height: 1.65;
}

.brand-reference-grid {
    gap: 14px 18px;
}

.brand-reference-grid a {
    gap: 7px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(231, 221, 209, 0.72);
    border-radius: 16px;
    box-shadow: none;
    transition: background 0.18s ease, border-color 0.18s ease;
}

.brand-reference-grid a:hover {
    background: #fff;
    border-color: rgba(198, 165, 106, 0.56);
}

.brand-reference-grid span {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-height: 1.7;
}

.brand-reference-grid small {
    margin-top: 4px;
}

@media (max-width: 768px) {
    .editor-picks-section {
        padding-top: 28px;
        padding-bottom: 28px;
    }

    .editor-picks-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .editor-pick-card {
        min-height: 0;
        padding: 16px;
    }

    .topic-cover-grid {
        gap: 12px;
    }

    .topic-cover-card-primary img {
        height: clamp(160px, 42vw, 190px);
        max-height: 190px;
    }

    .topic-cover-card-secondary img {
        width: 96px;
        height: 128px;
        max-height: 128px;
    }

    .brief-list-item {
        grid-template-columns: 92px minmax(0, 1fr);
        min-height: 0;
        padding: 10px;
    }

    .brief-list-thumb {
        width: 92px;
        height: 122px;
    }

    .brief-list-item h3 {
        font-size: 16px;
    }

    .brief-list-item p {
        -webkit-line-clamp: 2;
        font-size: 13px;
    }

    .brand-reference-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile navigation refinement */
@media (max-width: 768px) {
    body {
        padding-top: 64px;
    }

    body.menu-open {
        overflow: hidden;
        touch-action: none;
    }

    .site-header {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        z-index: 9999;
        grid-template-columns: minmax(0, 1fr) 44px;
        height: 64px;
        min-height: 64px;
        padding: 0 16px;
        background: rgba(250, 247, 242, 0.92);
        border-bottom: 1px solid rgba(231, 221, 209, 0.78);
        backdrop-filter: blur(18px);
    }

    .logo {
        height: 64px;
        gap: 10px;
    }

    .logo-mark {
        width: 34px;
        height: 34px;
        font-size: 17px;
    }

    .logo strong {
        font-size: 18px;
        line-height: 1.05;
    }

    .logo small {
        margin-top: 1px;
        font-size: 8px;
        letter-spacing: 0.15em;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.62);
        border: 1px solid rgba(231, 221, 209, 0.86);
        box-shadow: none;
    }

    .menu-toggle span {
        width: 17px;
        height: 1.5px;
    }

    .drawer-mask {
        position: fixed;
        inset: 0;
        z-index: 9997;
        display: block;
        background: rgba(31, 31, 31, 0.36);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.24s ease;
    }

    .mobile-drawer {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 9998;
        display: grid;
        grid-template-rows: 64px 1fr;
        width: 78vw;
        max-width: 320px;
        height: 100vh;
        padding: 0 20px 22px;
        background: rgba(252, 250, 246, 0.98);
        border-left: 1px solid rgba(231, 221, 209, 0.92);
        box-shadow: -18px 0 48px rgba(31, 31, 31, 0.16);
        transform: translateX(104%);
        transition: transform 0.26s cubic-bezier(0.22, 1, 0.36, 1);
    }

    body.menu-open .drawer-mask {
        opacity: 1;
        pointer-events: auto;
    }

    body.menu-open .mobile-drawer {
        transform: translateX(0);
    }

    .drawer-head {
        height: 64px;
        padding: 0;
        border-bottom: 1px solid var(--line);
    }

    .drawer-head strong {
        font-family: "Songti SC", "SimSun", serif;
        font-size: 20px;
        font-weight: 600;
    }

    .drawer-head button {
        width: 36px;
        height: 36px;
        color: var(--ink);
        background: transparent;
        border: 0;
        font-size: 28px;
        font-weight: 300;
    }

    .mobile-drawer nav {
        display: grid;
        align-content: start;
        gap: 0;
        padding: 12px 0 0;
    }

    .mobile-drawer nav a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 17px 0;
        border-bottom: 1px solid rgba(231, 221, 209, 0.88);
        color: var(--ink);
        font-size: 17px;
        font-weight: 700;
        letter-spacing: 0;
    }

    .mobile-drawer nav a b {
        color: var(--accent);
        font-family: Arial, sans-serif;
        font-size: 22px;
        font-weight: 300;
        line-height: 1;
    }

    .mobile-drawer nav a.is-active {
        color: var(--primary);
    }

    .mobile-drawer p {
        display: none;
    }

    .editorial-hero {
        min-height: 430px;
    }

    .hero-inner {
        min-height: 430px;
        padding-top: 34px;
        padding-bottom: 36px;
    }

    .hero-copy {
        padding: 20px 0 8px;
    }
}

/* 4:3 cover ratio and topic aggregation */
.ratio-media,
.ratio-media img,
.topic-cover-card img,
.content-card-media img,
.editorial-topic-grid img,
.editorial-related-grid img,
.news-story-media img,
.topic-hero-media img,
.article-cover,
.related-list-item img,
.brief-list-thumb,
.brief-list-thumb img {
    aspect-ratio: 4 / 3;
}

.ratio-media img,
.topic-cover-card img,
.content-card-media img,
.editorial-topic-grid img,
.editorial-related-grid img,
.news-story-media img,
.topic-hero-media img,
.article-cover,
.related-list-item img,
.brief-list-thumb img {
    object-fit: cover;
}

.home-page .system-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-page .system-card {
    display: grid;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 12px;
    padding: 18px;
}

.home-page .system-card .ratio-media {
    width: 100%;
    height: auto;
    max-height: none;
    grid-row: auto;
    aspect-ratio: 4 / 3;
}

.home-page .system-card h3,
.home-page .system-card p {
    padding-right: 0;
    padding-left: 0;
}

.home-page .topic-cover-card-primary img {
    height: auto;
    max-height: none;
    aspect-ratio: 4 / 3;
}

.home-page .topic-cover-card-secondary {
    grid-template-columns: 150px minmax(0, 1fr);
}

.home-page .topic-cover-card-secondary img {
    width: 150px;
    height: auto;
    max-height: none;
    aspect-ratio: 4 / 3;
}

.content-card-media {
    aspect-ratio: 4 / 3;
}

.topic-page {
    background: var(--bg);
}

.topic-aggregate-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
    gap: 42px;
    align-items: center;
}

.topic-aggregate-hero .topic-hero-copy {
    min-width: 0;
}

.topic-aggregate-hero .topic-hero-copy h1 {
    margin: 0;
    font-size: 32px;
}

.topic-aggregate-hero .topic-hero-copy p:last-child {
    max-width: 680px;
    margin-top: 14px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.9;
}

.topic-aggregate-hero .topic-hero-media {
    width: 100%;
    max-width: 520px;
    justify-self: end;
}

.topic-aggregate-hero .topic-hero-media img {
    width: 100%;
    max-height: none;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
}

.topic-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 0;
    padding-bottom: 24px;
}

.topic-nav a {
    padding: 8px 16px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
}

.topic-nav a:hover {
    color: var(--primary);
    border-color: rgba(198, 165, 106, 0.64);
}

.topic-module {
    padding-top: 34px;
    padding-bottom: 34px;
}

.topic-module.topic-group {
    border-top: 0;
}

.topic-list {
    display: grid;
    gap: 14px;
}

.topic-list-item {
    display: grid;
    grid-template-columns: 168px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 14px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(231, 221, 209, 0.82);
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.topic-list-item:hover {
    transform: translateY(-2px);
    background: #fff;
    box-shadow: var(--card-shadow-hover);
}

.topic-list-item img {
    width: 168px;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    object-fit: cover;
}

.topic-list-item span {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.topic-list-item time {
    color: var(--muted);
    font-size: 13px;
}

.topic-list-item strong {
    font-family: "Songti SC", "SimSun", serif;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 600;
}

.topic-list-item small {
    display: -webkit-box;
    overflow: hidden;
    color: var(--muted);
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 14px;
    line-height: 1.7;
}

.topic-empty {
    padding: 18px;
    background: rgba(255, 255, 255, 0.56);
    border: 1px solid var(--line);
    border-radius: 16px;
}

.related-topic-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.related-topic-grid a {
    display: grid;
    gap: 8px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line);
    border-radius: 16px;
}

.related-topic-grid strong {
    font-family: "Songti SC", "SimSun", serif;
    font-size: 18px;
    font-weight: 600;
}

.related-topic-grid span {
    color: var(--muted);
    font-size: 13px;
}

.related-list-item img {
    height: auto;
}

@media (max-width: 768px) {
    .home-page .system-card-grid {
        grid-template-columns: 1fr;
    }

    .home-page .system-card {
        grid-template-columns: 1fr;
        padding: 16px;
    }

    .home-page .system-card .ratio-media {
        width: 100%;
        height: auto;
    }

    .home-page .topic-cover-grid,
    .home-page .topic-cover-card-secondary {
        grid-template-columns: 1fr;
    }

    .home-page .topic-cover-card-secondary img {
        grid-row: auto;
        width: 100%;
    }

    .topic-aggregate-hero {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .topic-aggregate-hero .topic-hero-media {
        max-width: none;
        justify-self: stretch;
    }

    .topic-nav {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-top: 0;
        -webkit-overflow-scrolling: touch;
    }

    .topic-nav a {
        flex: 0 0 auto;
    }

    .topic-list-item {
        grid-template-columns: 116px minmax(0, 1fr);
        gap: 12px;
        padding: 12px;
    }

    .topic-list-item img {
        width: 116px;
    }

    .topic-list-item strong {
        font-size: 16px;
    }

    .topic-list-item small {
        -webkit-line-clamp: 2;
        font-size: 13px;
    }

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

    .content-card-media {
        aspect-ratio: 4 / 3;
    }

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

    .article-content img,
    .article-content .article-image img {
        width: 100%;
    }
}

/* Home topic module compact correction */
.home-page .topic-cover-grid {
    grid-template-columns: minmax(0, 3fr) minmax(320px, 2fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
    max-height: 420px;
}

.home-page .topic-cover-card {
    min-width: 0;
    padding: 14px;
}

.home-page .topic-cover-card-primary {
    grid-row: 1 / span 2;
    grid-column: 1;
    align-content: start;
}

.home-page .topic-cover-card-primary img {
    width: 100%;
    height: min(24vw, 320px);
    max-height: 320px;
    aspect-ratio: 4 / 3;
}

.home-page .topic-cover-card-primary span,
.home-page .topic-cover-card-primary strong,
.home-page .topic-cover-card-primary p {
    padding-right: 2px;
    padding-left: 2px;
}

.home-page .topic-cover-card-secondary {
    grid-column: 2;
    display: grid;
    grid-template-columns: clamp(160px, 13vw, 200px) minmax(0, 1fr);
    grid-template-rows: auto auto 1fr;
    gap: 6px 14px;
    align-items: center;
    min-height: 0;
    height: 100%;
}

.home-page .topic-cover-card-secondary img {
    grid-row: 1 / span 3;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
}

.home-page .topic-cover-card span {
    align-self: end;
    font-size: 12px;
    line-height: 1.2;
}

.home-page .topic-cover-card strong {
    font-size: 18px;
    line-height: 1.28;
}

.home-page .topic-cover-card p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

@media (max-width: 768px) {
    .home-page .topic-cover-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        max-height: none;
        gap: 12px;
    }

    .home-page .topic-cover-card-primary,
    .home-page .topic-cover-card-secondary {
        grid-column: auto;
        grid-row: auto;
    }

    .home-page .topic-cover-card-primary img {
        height: clamp(180px, 52vw, 220px);
        max-height: 220px;
    }

    .home-page .topic-cover-card-secondary {
        grid-template-columns: clamp(120px, 36vw, 140px) minmax(0, 1fr);
        gap: 6px 12px;
    }

    .home-page .topic-cover-card-secondary img {
        grid-row: 1 / span 3;
        width: 100%;
    }

    .home-page .topic-cover-card {
        padding: 12px;
    }

    .home-page .topic-cover-card strong {
        font-size: 16px;
    }

    .home-page .topic-cover-card p {
        -webkit-line-clamp: 2;
        font-size: 13px;
    }
}

/* Home topic visual balance pass */
.home-page .topic-cover-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: 16px;
    max-height: 360px;
}

.home-page .topic-cover-card {
    border-color: rgba(231, 221, 209, 0.78);
    box-shadow: 0 4px 14px rgba(62, 34, 24, 0.045);
}

.home-page .topic-cover-card-primary {
    gap: 8px;
}

.home-page .topic-cover-card-primary img {
    height: clamp(220px, 20vw, 260px);
    max-height: 260px;
}

.home-page .topic-cover-card-secondary {
    grid-template-columns: 180px minmax(0, 1fr);
    align-content: center;
    height: 172px;
    padding: 12px;
}

.home-page .topic-cover-card-secondary img {
    width: 180px;
    height: 135px;
}

.home-page .topic-cover-card span {
    color: var(--accent);
    letter-spacing: 0.08em;
}

.home-page .topic-cover-card-primary strong {
    font-size: 18px;
}

.home-page .topic-cover-card-secondary strong {
    font-size: 17px;
}

.home-page .topic-cover-card-primary p {
    max-width: 620px;
}

.home-page .topic-cover-card-secondary p {
    -webkit-line-clamp: 2;
}

@media (max-width: 768px) {
    .home-page .topic-cover-grid {
        grid-template-columns: 1fr;
        max-height: none;
    }

    .home-page .topic-cover-card-primary img {
        height: clamp(180px, 50vw, 210px);
        max-height: 210px;
    }

    .home-page .topic-cover-card-secondary {
        grid-template-columns: clamp(120px, 36vw, 140px) minmax(0, 1fr);
        height: auto;
        min-height: 128px;
    }

    .home-page .topic-cover-card-secondary img {
        width: 100%;
        height: auto;
    }
}

/* Home topic clipping bugfix */
.home-page .topic-cover-grid {
    align-items: start;
    max-height: none;
}

.home-page .topic-cover-card-primary {
    overflow: visible;
}

.home-page .topic-cover-card-primary img {
    height: clamp(190px, 18vw, 230px);
    max-height: 230px;
}

.home-page .topic-cover-card-primary p {
    -webkit-line-clamp: 2;
}

.home-page .topic-cover-card-secondary {
    height: 158px;
}

.home-page .topic-cover-card-secondary img {
    width: 168px;
    height: 126px;
}

@media (max-width: 768px) {
    .home-page .topic-cover-card-primary {
        overflow: hidden;
    }

    .home-page .topic-cover-card-primary img {
        height: clamp(170px, 48vw, 200px);
        max-height: 200px;
    }

    .home-page .topic-cover-card-secondary {
        height: auto;
    }

    .home-page .topic-cover-card-secondary img {
        width: 100%;
        height: auto;
    }
}

/* Contact and sitemap final pages */
.contact-page,
.sitemap-page {
    background: #F8F5F0;
}

.contact-shell {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
}

.contact-hero {
    padding: 64px 0 48px;
    background: #F8F5F0;
    border-bottom: 1px solid rgba(176, 138, 90, 0.22);
}

.contact-hero h1 {
    margin: 0;
    color: #1f1f1f;
    font-family: "Songti SC", "SimSun", serif;
    font-size: 32px;
    line-height: 1.25;
    font-weight: 600;
}

.contact-subtitle {
    margin: 14px 0 0;
    color: #8C1F28;
    font-size: 18px;
    line-height: 1.7;
    font-weight: 700;
}

.contact-intro {
    max-width: 860px;
    margin: 18px 0 0;
    color: #4f463e;
    font-size: 16px;
    line-height: 2;
}

.contact-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    padding: 56px 0 48px;
}

.contact-card,
.contact-panel {
    background: #FFFFFF;
    border: 1px solid rgba(176, 138, 90, 0.2);
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(62, 34, 24, 0.045);
}

.contact-card {
    padding: 28px 30px;
}

.contact-card h2,
.contact-panel h2 {
    margin: 0 0 14px;
    color: #1f1f1f;
    font-family: "Songti SC", "SimSun", serif;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 600;
}

.contact-card h2::after,
.contact-panel h2::after {
    display: block;
    width: 36px;
    height: 2px;
    margin-top: 10px;
    background: #8C1F28;
    content: "";
}

.contact-card p,
.contact-panel p {
    margin: 0;
    color: #5f564e;
    font-size: 16px;
    line-height: 1.9;
}

.contact-card h3 {
    margin: 22px 0 10px;
    color: #8C1F28;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 800;
}

.contact-card ul,
.contact-note ul,
.sitemap-card ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.contact-card li,
.contact-note li,
.sitemap-card li {
    position: relative;
    padding-left: 18px;
    color: #5f564e;
    font-size: 15px;
    line-height: 1.8;
}

.contact-card li::before,
.contact-note li::before,
.sitemap-card li::before {
    position: absolute;
    top: 0.82em;
    left: 0;
    width: 6px;
    height: 6px;
    background: #B08A5A;
    border-radius: 50%;
    content: "";
}

.contact-info-section {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 24px;
    padding: 0 0 64px;
}

.contact-panel {
    padding: 30px;
}

.contact-methods {
    display: grid;
    gap: 0;
    margin: 8px 0 0;
}

.contact-methods div {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 18px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(176, 138, 90, 0.18);
}

.contact-methods div:last-child {
    border-bottom: 0;
}

.contact-methods dt {
    color: #8C1F28;
    font-size: 15px;
    font-weight: 800;
}

.contact-methods dd {
    min-width: 0;
    margin: 0;
    color: #2f2925;
    font-size: 16px;
    line-height: 1.8;
    overflow-wrap: anywhere;
}

.contact-methods a,
.sitemap-card a,
.about-contact-link {
    color: #8C1F28;
    font-weight: 800;
}

.contact-note {
    background: #fffdf9;
}

.contact-note p + ul,
.contact-note ul + p {
    margin-top: 14px;
}

.about-contact-link {
    display: inline-flex;
    align-items: center;
    line-height: 1.8;
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    padding: 56px 0 64px;
}

.sitemap-card ul {
    margin-top: 18px;
}

@media (max-width: 768px) {
    .contact-shell {
        width: calc(100% - 32px);
    }

    .contact-hero {
        padding: 42px 0 34px;
    }

    .contact-hero h1 {
        font-size: 30px;
    }

    .contact-subtitle {
        font-size: 16px;
    }

    .contact-card-grid,
    .contact-info-section,
    .sitemap-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-card-grid,
    .sitemap-grid {
        padding: 34px 0;
    }

    .contact-info-section {
        padding-bottom: 42px;
    }

    .contact-card,
    .contact-panel {
        padding: 22px 18px;
        border-radius: 16px;
    }

    .contact-card h2,
    .contact-panel h2 {
        font-size: 20px;
    }

    .contact-card p,
    .contact-panel p,
    .contact-methods dd {
        font-size: 15px;
    }

    .contact-methods div {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 14px 0;
    }
}

/* Final home topic clipping override */
.home-page .topic-cover-grid {
    align-items: start;
    max-height: none;
}

.home-page .topic-cover-card-primary {
    overflow: visible;
}

.home-page .topic-cover-card-primary img {
    height: clamp(190px, 18vw, 230px);
    max-height: 230px;
}

.home-page .topic-cover-card-primary p {
    -webkit-line-clamp: 2;
}

.home-page .topic-cover-card-secondary {
    height: 158px;
}

.home-page .topic-cover-card-secondary img {
    width: 168px;
    height: 126px;
}

@media (max-width: 768px) {
    .home-page .topic-cover-card-primary {
        overflow: hidden;
    }

    .home-page .topic-cover-card-primary img {
        height: clamp(170px, 48vw, 200px);
        max-height: 200px;
    }

    .home-page .topic-cover-card-secondary {
        height: auto;
    }

    .home-page .topic-cover-card-secondary img {
        width: 100%;
        height: auto;
    }
}
