:root {
    --site-max-width: 1280px;
    --site-gutter: 16px;
    --site-sidebar-width: 320px;
    --site-bg: #f5f1e8;
    --site-panel: #fffdf8;
    --site-panel-soft: #f8f3ea;
    --site-border: #e7dcc8;
    --site-line: #ece3d5;
    --site-text: #2f3440;
    --site-text-soft: #6d727d;
    --site-title: #10131a;
    --site-accent: #0f6a62;
    --site-accent-deep: #0b4f49;
    --site-accent-soft: rgba(15, 106, 98, 0.1);
    --site-highlight: #b58a4b;
    --site-highlight-soft: rgba(181, 138, 75, 0.14);
    --site-shadow: 0 18px 44px rgba(31, 24, 14, 0.08);
    --site-radius-lg: 22px;
    --site-radius-md: 16px;
    --site-radius-sm: 10px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    color: var(--site-text);
    background: var(--site-bg);
    line-height: 1.7;
    background-image:
        radial-gradient(circle at top left, rgba(181, 138, 75, 0.08), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(245, 241, 232, 0));
}

a {
    color: var(--site-title);
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover,
a:focus {
    color: var(--site-accent);
    text-decoration: none;
}

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

ul,
ol {
    margin: 0;
    padding: 0;
}

.container {
    max-width: var(--site-max-width) !important;
    margin: 0 auto;
    padding: 0 var(--site-gutter) 40px;
    background: transparent;
}

.container::before,
.container::after,
.content-wrap::before,
.content-wrap::after,
.widget ul::before,
.widget ul::after {
    display: none;
}

.site-shell {
    max-width: var(--site-max-width);
}

.site-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) var(--site-sidebar-width);
    gap: 28px;
    align-items: start;
}

.content-wrap,
.sidebar {
    float: none !important;
    width: auto !important;
    margin: 0 !important;
}

.sidebar {
    position: sticky;
    top: 22px;
    align-self: start;
}

.content {
    min-height: 0;
}

.content > * + *,
.sidebar-stack > * + * {
    margin-top: 24px;
}

.sidebar-stack {
    display: grid;
    align-content: start;
}

.panel-card,
.widget,
.footer {
    background: var(--site-panel);
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius-lg);
    box-shadow: var(--site-shadow);
}

.panel-card,
.widget {
    padding: 26px;
}

.site-header {
    margin: 0 0 24px;
    background: rgba(255, 253, 248, 0.94);
    border: 1px solid rgba(231, 220, 200, 0.95);
    border-radius: 0 0 28px 28px;
    box-shadow: 0 18px 40px rgba(31, 24, 14, 0.08);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.portal-utility {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 7px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(135deg, #141920, #202837 70%, #152b33 120%);
}

.utility-home a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
}

.utility-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
}

.utility-links li {
    list-style: none;
}

.utility-links a {
    color: rgba(255, 255, 255, 0.66);
    font-size: 12px;
}

.portal-masthead {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
    padding: 18px 24px 14px;
}

.brand-link {
    display: inline-grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    min-width: 0;
}

.brand-mark {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: clamp(220px, 24vw, 320px);
    min-width: 220px;
    padding: 0;
}

.logo-img-pc,
.logo-img-m {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 84px;
    object-fit: contain;
}

.logo-img-m {
    display: none;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.brand-overline {
    color: var(--site-highlight);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.brand-name {
    color: var(--site-title);
    font-family: "Source Han Serif SC", "Songti SC", "STSong", serif;
    font-size: clamp(30px, 3.2vw, 38px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.brand-desc {
    color: var(--site-text-soft);
    font-size: 13px;
    font-style: normal;
    line-height: 1.5;
    max-width: 680px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.header-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    justify-self: end;
}

.header .search-form,
.widget .search-form {
    position: static;
    display: flex !important;
    align-items: center;
    gap: 8px;
    margin: 0;
    overflow: visible;
}

.widget .search-form {
    width: 100%;
    padding: 6px;
    border: 1px solid var(--site-border);
    border-radius: 999px;
    background: var(--site-panel-soft);
}

.search-form .form-control {
    flex: 1 1 auto;
    height: 44px;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    color: var(--site-title);
    font-size: 14px;
}

.search-form .form-control:focus {
    box-shadow: none;
}

.search-form .form-control::placeholder {
    color: #9ca3af;
}

.search-form .btn {
    flex: 0 0 auto;
    height: 40px;
    padding: 0 20px;
    border: none;
    border-radius: 999px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--site-title), #243041);
}

.header-tools {
    display: none;
    align-items: center;
    justify-content: flex-end;
}

.navmore {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(16, 19, 26, 0.1);
    border-radius: 999px;
    background: linear-gradient(180deg, #fff, #f7efe3);
    box-shadow: 0 10px 22px rgba(16, 19, 26, 0.08);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.navmore {
    position: relative;
}

.navmore::before,
.navmore::after {
    content: "";
    position: absolute;
    left: 11px;
    right: 11px;
    height: 2px;
    background: var(--site-title);
    border-radius: 999px;
}

.navmore::before {
    top: 14px;
    box-shadow: 0 6px 0 var(--site-title);
}

.navmore::after {
    display: none;
}

.navmore.is-active {
    border-color: rgba(15, 106, 98, 0.22);
    background: rgba(15, 106, 98, 0.08);
}

.portal-channel-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 20px;
    align-items: center;
    padding: 12px 24px 16px;
    border-top: 1px solid var(--site-line);
}

.site-nav {
    min-width: 0;
}

.nav {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
    background: transparent;
    height: auto;
    overflow: visible;
}

.nav::after {
    display: none;
}

.nav li {
    position: relative;
    list-style: none;
}

.nav li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
    margin-right: 18px;
    border-bottom: 2px solid transparent;
    color: var(--site-title);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.2;
}

.nav li a:hover,
.nav li a:focus,
.nav li.current-menu-item > a,
.nav li.current-menu-parent > a,
.nav li.current_page_item > a,
.nav li.current-post-ancestor > a {
    color: var(--site-accent);
    background: transparent;
    border-bottom-color: var(--site-accent);
}

.nav li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 60;
    min-width: 180px;
    padding: 8px;
    list-style: none;
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius-md);
    background: #fff;
    box-shadow: var(--site-shadow);
}

.nav li:hover > ul {
    display: block;
}

.nav li ul li {
    width: 100%;
}

.nav li ul li a {
    width: 100%;
    justify-content: flex-start;
}

.portal-hotline {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    padding: 9px 14px;
    border: 1px solid rgba(16, 19, 26, 0.08);
    border-radius: 18px;
    background: linear-gradient(180deg, #fbf8f1, #f5eee0);
}

.hotline-label {
    flex: 0 0 auto;
    color: var(--site-highlight);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.hotline-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    min-width: 0;
}

.hotline-links a {
    color: var(--site-text);
    font-size: 12px;
}

.widget {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.widget:hover {
    transform: translateY(-2px);
}

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

.title {
    margin: 0 0 18px;
}

.section-kicker,
.section-eyebrow,
.widget-kicker {
    display: block;
    margin: 0 0 8px;
    color: var(--site-accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-heading h1,
.section-heading h2,
.section-heading h3,
.title strong,
.channel-header h1,
.search-hero h1,
.single-page-hero h1,
.tag-result-hero h1,
.article-title {
    margin: 0;
    color: var(--site-title);
    font-family: "Source Han Serif SC", "Songti SC", "STSong", serif;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.section-heading h2,
.channel-header h1,
.search-hero h1,
.single-page-hero h1,
.tag-result-hero h1 {
    font-size: 32px;
    line-height: 1.2;
}

.story-channel {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--site-accent);
    background: var(--site-accent-soft);
    font-size: 12px;
    font-weight: 700;
}

.channel-desc,
.single-page-desc,
.article-summary,
.note,
.text-stream-main p,
.article-disclaimer,
.related-copy p,
.lead-story-copy p,
.channel-lead-copy p {
    color: var(--site-text-soft);
    font-size: 15px;
    line-height: 1.85;
}

.headline-list {
    list-style: none;
}

.headline-list li {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: start;
    padding: 12px 0;
    border-bottom: 1px solid var(--site-line);
}

.headline-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.headline-list a {
    display: block;
    font-weight: 700;
    line-height: 1.65;
}

.headline-list span {
    color: var(--site-text-soft);
    font-size: 12px;
    white-space: nowrap;
}

.home-lead-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) 360px;
    gap: 24px;
    padding: 28px;
    border: none;
    background:
        linear-gradient(135deg, #161a22 0%, #1d2431 56%, #0f6a62 140%);
    box-shadow: 0 24px 54px rgba(20, 22, 31, 0.22);
}

.lead-story-card,
.channel-lead {
    display: grid;
    gap: 18px;
}

.lead-story {
    min-width: 0;
}

.lead-story-thumb img,
.channel-lead-thumb img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: var(--site-radius-md);
}

.lead-story-copy h1,
.channel-lead-copy h2 {
    margin: 12px 0 0;
    color: var(--site-title);
    font-size: 34px;
    line-height: 1.2;
    font-weight: 800;
}

.channel-lead-copy h2 {
    font-size: 28px;
}

.home-lead-grid .story-channel {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

.home-lead-grid .lead-story-copy h1 {
    font-size: 50px;
    line-height: 1.08;
}

.home-lead-grid .lead-story-copy h1 a,
.home-lead-grid .lead-story-copy p,
.home-lead-grid .story-meta,
.home-lead-grid .lead-side-list h2,
.home-lead-grid .headline-list a,
.home-lead-grid .headline-list span,
.home-lead-grid .section-kicker {
    color: rgba(255, 255, 255, 0.92);
}

.home-lead-grid .lead-story-copy p,
.home-lead-grid .story-meta {
    color: rgba(255, 255, 255, 0.74);
}

.lead-side-list {
    padding: 24px;
    border-radius: var(--site-radius-lg);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.lead-side-list .section-heading {
    margin-bottom: 16px;
}

.home-lead-grid .headline-list li {
    border-bottom-color: rgba(255, 255, 255, 0.12);
}

.home-topic-strip {
    background: linear-gradient(180deg, #fffdf8, #f9f4eb);
}

.home-hero-briefs {
    padding-top: 18px;
    padding-bottom: 18px;
    background: linear-gradient(180deg, #fffdf9, #f8f1e5);
}

.home-hero-briefs .hero-mini-card {
    background: linear-gradient(180deg, #fff, #f8f0e5);
}

.topic-strip-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.topic-strip-column {
    padding: 20px;
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius-md);
    background: rgba(255, 255, 255, 0.78);
}

.topic-strip-label {
    display: block;
    margin-bottom: 14px;
    color: var(--site-title);
    font-size: 13px;
    font-weight: 700;
}

.topic-chip-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.topic-chip {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border: 1px solid var(--site-border);
    border-radius: 999px;
    background: #fff;
    color: var(--site-title);
    font-size: 13px;
    font-weight: 600;
}

.topic-chip:hover,
.topic-chip-channel {
    border-color: rgba(15, 106, 98, 0.16);
    background: rgba(15, 106, 98, 0.06);
}

.home-feature-stage {
    background: linear-gradient(180deg, #fffdf9, #fcf7ef);
}

.story-meta,
.article-meta,
.text-stream-meta,
.views {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 16px;
    margin-top: 12px;
    color: var(--site-text-soft);
    font-size: 13px;
}

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

.feature-tile {
    padding: 20px;
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius-md);
    background: rgba(255, 255, 255, 0.88);
}

.feature-tile-thumb img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: var(--site-radius-md);
}

.feature-tile-copy h3 {
    margin: 12px 0 0;
    font-size: 22px;
    line-height: 1.45;
}

.home-channel-matrix {
    padding-bottom: 8px;
}

.channel-block-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

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

.channel-block {
    padding: 22px 20px;
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius-md);
    background: linear-gradient(180deg, #fffdf9, #f8f2e9);
}

.channel-card {
    padding: 16px;
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius-md);
    background: var(--site-panel-soft);
}

.channel-card h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
}

.channel-block-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.channel-block-head h3 {
    margin: 0;
    font-size: 20px;
}

.channel-more {
    color: var(--site-accent);
    font-size: 13px;
}

.channel-story-list {
    list-style: none;
}

.channel-story-list li + li {
    margin-top: 10px;
}

.channel-story-list a {
    display: block;
    font-weight: 600;
    line-height: 1.65;
}

.portal-feed {
    padding-bottom: 14px;
    background: linear-gradient(180deg, #fffdf8, #fbf7ef);
}

.excerpt-list {
    display: block;
}

.excerpt {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 18px;
    padding: 24px 0;
    border-bottom: 1px solid var(--site-line);
}

.excerpt:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.excerpt-thumb img,
.focus img,
.thumbnail img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: var(--site-radius-md);
}

.excerpt-main {
    min-width: 0;
}

.excerpt header {
    margin-bottom: 10px;
}

.excerpt .focus {
    margin: 14px 0;
}

.excerpt .thumbnail,
.excerpt .thumbnail span {
    display: block;
}

.label {
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--site-highlight-soft);
    color: #8b642f;
    font-size: 12px;
    font-weight: 700;
}

.excerpt h2 {
    margin: 0;
    font-size: 30px;
    line-height: 1.33;
}

.views {
    margin-top: 14px;
}

.views a {
    color: var(--site-text-soft);
}

.pagination {
    padding-top: 10px;
}

.pagination ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 16px;
    border: 1px solid var(--site-border);
    border-radius: 999px;
    background: #fff;
    color: var(--site-title);
}

.pagination .active span,
.pagination a:hover {
    color: #fff;
    border-color: var(--site-accent);
    background: var(--site-accent);
}

.channel-header {
    display: grid;
    gap: 18px;
    background: linear-gradient(180deg, #fffdf8, #f8f1e6);
}

.channel-header .hero-mini-card {
    background: linear-gradient(180deg, #fff, #f8f0e4);
}

.channel-header-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.channel-header-links a {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border: 1px solid var(--site-border);
    border-radius: 999px;
    background: #fff;
    font-size: 13px;
}

.channel-header-links a.active {
    color: #fff;
    border-color: var(--site-accent);
    background: var(--site-accent);
}

.channel-top-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) 360px;
    gap: 24px;
}

.text-stream-panel,
.single-page-panel,
.archive-list-panel,
.tag-hub,
.tag-result-hero,
.search-hero {
    padding: 24px;
    background: linear-gradient(180deg, #fffdf8, #f9f3e9);
}

.text-stream-list {
    display: grid;
}

.text-stream-item,
.archive-item {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid var(--site-line);
}

.text-stream-item:last-child,
.archive-item:last-child {
    border-bottom: none;
}

.text-stream-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    color: var(--site-accent);
    background: var(--site-accent-soft);
    font-size: 16px;
    font-weight: 800;
}

.text-stream-main h3,
.archive-item-main h3 {
    margin: 0;
    font-size: 24px;
    line-height: 1.45;
}

.portal-text-page .text-stream-panel {
    background: linear-gradient(180deg, #fffdf9, #fcf7ef);
}

.portal-text-page .text-stream-item {
    padding: 22px 0;
}

.portal-article-page .article-panel {
    padding: 28px;
    background: linear-gradient(180deg, #fffdf9, #fbf6ee);
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--site-text-soft);
    font-size: 13px;
}

.breadcrumbs a {
    color: var(--site-text-soft);
}

.breadcrumbs-label {
    color: var(--site-accent);
    font-weight: 700;
}

.article-header {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--site-line);
}

.article-masthead {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) 320px;
    gap: 28px;
    align-items: start;
}

.article-hero-copy {
    min-width: 0;
}

.article-title {
    margin: 14px 0 0;
    font-size: 40px;
    line-height: 1.2;
}

.article-hero-visual {
    display: grid;
    gap: 18px;
}

.article-cover {
    margin-top: 0;
}

.article-cover img {
    width: 100%;
    border-radius: var(--site-radius-md);
    box-shadow: 0 18px 34px rgba(31, 24, 14, 0.12);
}

.article-meta-card {
    padding: 18px 20px;
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius-md);
    background: linear-gradient(180deg, #fffdf9, #f7f0e4);
}

.article-keyfacts {
    list-style: none;
    display: grid;
    gap: 14px;
}

.article-keyfacts li {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--site-line);
}

.article-keyfacts li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.article-keyfacts strong {
    color: var(--site-title);
    font-size: 13px;
    font-weight: 700;
}

.article-keyfacts span {
    color: var(--site-text-soft);
    font-size: 13px;
    text-align: right;
}

.article-content {
    color: var(--site-text);
    font-size: 17px;
    line-height: 2;
}

.article-content > *:first-child {
    margin-top: 0;
}

.article-content > p:first-of-type {
    color: var(--site-title);
    font-size: 20px;
    line-height: 2;
}

.article-content > p:first-of-type::first-letter {
    float: left;
    margin: 6px 10px 0 0;
    color: var(--site-accent);
    font-family: "Source Han Serif SC", "Songti SC", "STSong", serif;
    font-size: 56px;
    line-height: 0.9;
    font-weight: 800;
}

.article-content h2,
.article-content h3,
.article-content h4 {
    margin-top: 30px;
    margin-bottom: 16px;
    color: var(--site-title);
    font-weight: 800;
}

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

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

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

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

.article-content ul,
.article-content ol {
    padding-left: 22px;
}

.article-content li + li {
    margin-top: 8px;
}

.article-content a {
    color: var(--site-accent-deep);
    text-decoration: underline;
    text-decoration-color: rgba(15, 106, 98, 0.3);
    text-underline-offset: 3px;
}

.article-content strong {
    color: var(--site-title);
}

.article-content img {
    height: auto;
    margin: 18px auto;
    border-radius: var(--site-radius-md);
}

.article-content table {
    width: 100%;
    margin: 24px 0;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: var(--site-radius-md);
    border: 1px solid var(--site-border);
}

.article-content th,
.article-content td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--site-line);
    text-align: left;
}

.article-content th {
    background: #f4ecde;
    color: var(--site-title);
    font-weight: 700;
}

.article-content blockquote {
    padding: 16px 18px;
    border-left: 4px solid var(--site-accent);
    background: var(--site-panel-soft);
    border-radius: 0 var(--site-radius-md) var(--site-radius-md) 0;
}

.article-disclaimer,
.article-tags,
.article-nav {
    margin-top: 24px;
    padding: 18px 20px;
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius-md);
    background: var(--site-panel-soft);
}

.article-tags-list,
.tag-hub-grid,
.widget_tags_inner,
.footer-quicklinks {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
}

.article-tags-list a,
.tag-chip,
.widget_tags_inner a,
.footer-quicklinks a {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border: 1px solid var(--site-border);
    border-radius: 999px;
    background: #fff;
    font-size: 13px;
}

.meta-label {
    display: block;
    margin-bottom: 10px;
    color: var(--site-title);
    font-size: 14px;
    font-weight: 700;
}

.article-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.article-nav-prev span,
.article-nav-next span {
    display: block;
    margin-bottom: 8px;
    color: var(--site-text-soft);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.article-nav a {
    display: block;
    font-weight: 700;
    line-height: 1.7;
}

.article-related-panel {
    padding: 24px;
}

.related-list {
    display: grid;
    gap: 18px;
}

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

.related-item,
.widget-media-item,
.like-card,
.related-card {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 16px;
}

.related-thumb img,
.widget-media-thumb img,
.like-thumb img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--site-radius-md);
}

.related-copy h3,
.widget-media-copy h4,
.like-copy h3 {
    margin: 0;
    font-size: 19px;
    line-height: 1.55;
}

.related-copy p,
.like-copy p {
    margin: 10px 0 0;
    color: var(--site-text-soft);
    font-size: 14px;
    line-height: 1.8;
}

.like-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-top: 10px;
    color: var(--site-text-soft);
    font-size: 12px;
}

.widget {
    padding: 22px;
    border-radius: 18px;
    box-shadow: 0 14px 34px rgba(31, 24, 14, 0.07);
}

.widget-heading {
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--site-line);
}

.widget .title {
    margin: 0;
}

.widget .title strong {
    font-size: 20px;
    line-height: 1.3;
}

.widget-media-list {
    display: grid;
    gap: 16px;
}

.widget_featured .widget-media-item:first-child {
    grid-template-columns: 1fr;
}

.widget_featured .widget-media-item:first-child .widget-media-thumb img {
    aspect-ratio: 16 / 10;
}

.widget-media-copy span,
.rank-main span {
    display: block;
    margin-top: 8px;
    color: var(--site-text-soft);
    font-size: 12px;
}

.widget-rank-list {
    list-style: none;
    display: grid;
    gap: 14px;
}

.widget-rank-list li {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
}

.rank-no {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--site-title), #304056);
    font-size: 13px;
    font-weight: 700;
}

.rank-main a {
    display: block;
    font-weight: 700;
    line-height: 1.6;
}

.single-page-body {
    margin-top: 20px;
    color: var(--site-text);
    font-size: 16px;
    line-height: 1.95;
}

.single-page-body > *:first-child {
    margin-top: 0;
}

.single-page-support {
    display: grid;
    gap: 24px;
    margin-top: 24px;
}

.single-page-hero .channel-header-links,
.tag-result-hero .article-tags-list {
    margin-top: 18px;
}

.hero-insight-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
}

.hero-mini-card {
    display: grid;
    gap: 6px;
    padding: 16px 18px;
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius-md);
    background: rgba(255, 255, 255, 0.72);
}

.hero-mini-card span {
    color: var(--site-text-soft);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-mini-card strong {
    color: var(--site-title);
    font-size: 18px;
    line-height: 1.45;
    font-weight: 800;
}

.single-page-sidecard .section-heading {
    margin-bottom: 18px;
}

.compact-channel-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.archive-timeline {
    display: grid;
}

.archive-item {
    grid-template-columns: 120px minmax(0, 1fr);
}

.archive-item time {
    color: var(--site-accent);
    font-size: 14px;
    font-weight: 700;
}

.archive-summary-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 18px;
    margin: 24px 0 8px;
}

.archive-summary-card {
    padding: 20px;
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius-md);
    background: linear-gradient(180deg, #fffdf9, #f7f0e4);
}

.archive-summary-label {
    display: block;
    margin-bottom: 16px;
    color: var(--site-highlight);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.like-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 18px;
}

.tag-result-hero,
.search-hero {
    margin-bottom: 0;
}

.footer {
    clear: both;
    margin-top: 28px;
    padding: 24px;
    border-color: transparent;
    background:
        linear-gradient(135deg, #171c24, #243041 70%, #0d5a53 140%);
    color: rgba(255, 255, 255, 0.8);
}

.footer-top {
    padding-bottom: 22px;
    border-bottom: 1px solid var(--site-line);
}

.footer-intro {
    max-width: 760px;
}

.footer-kicker {
    display: inline-block;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.footer-intro h2 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 30px;
    line-height: 1.2;
}

.footer-intro p {
    margin: 0;
    max-width: 720px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 15px;
    line-height: 1.9;
}

.footer-site-map {
    margin-top: 20px;
}

.footer-site-map h3 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 20px;
}

.site-map-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.site-map-column {
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--site-radius-md);
    background: rgba(255, 255, 255, 0.04);
}

.site-map-column h4 {
    margin: 0 0 10px;
    font-size: 16px;
}

.site-map-column h4 a,
.site-map-column li a,
.footer-quicklinks a {
    color: rgba(255, 255, 255, 0.82);
}

.site-map-column ul {
    list-style: none;
}

.site-map-column li + li {
    margin-top: 8px;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 13px;
}

.lazy-load-img {
    background: #eef1f5;
}

.screen-reader-text,
.sr-only,
.seoTitle {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

body.navshows {
    overflow: auto !important;
    height: auto !important;
    position: static !important;
}

@media (max-width: 1199px) {
    .site-main,
    .portal-channel-row,
    .home-lead-grid,
    .channel-top-grid,
    .site-map-grid,
    .topic-strip-grid {
        grid-template-columns: 1fr;
    }

    .hero-insight-strip,
    .archive-summary-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .article-masthead {
        grid-template-columns: 1fr;
    }

    .portal-masthead {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .channel-block-grid,
    .home-feature-strip,
    .like-grid,
    .channel-grid,
    .related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .container {
        padding: 0 14px 30px;
    }

    .site-main,
    .portal-masthead,
    .footer-top,
    .site-map-grid,
    .channel-block-grid,
    .home-feature-strip,
    .like-grid,
    .hero-insight-strip,
    .archive-summary-grid,
    .compact-channel-grid,
    .channel-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }

    .portal-utility {
        display: none;
    }

    .sidebar {
        position: static;
    }

    .sidebar-stack {
        position: static;
    }

    .sidebar {
        margin-top: 24px !important;
    }

    .article-nav {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .site-header {
        border-radius: 0 0 12px 12px;
    }

    .portal-masthead {
        grid-template-columns: minmax(0, 1fr) auto;
        padding: 16px;
    }

    .brand-link {
        gap: 14px;
    }

    .brand-mark {
        width: min(44vw, 220px);
        min-width: 150px;
    }

    .brand-name {
        font-size: 26px;
    }

    .logo-img-pc,
    .logo-img-m {
        max-height: 56px;
    }

    .brand-desc {
        font-size: 12px;
        -webkit-line-clamp: 2;
    }

    .header-actions {
        width: auto;
    }

    .header-tools {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .portal-channel-row {
        padding: 0 16px 16px;
        position: relative;
    }

    .portal-hotline {
        margin-top: 14px;
    }

    .home-lead-grid {
        padding: 18px;
    }

    .home-lead-grid .lead-story-copy h1 {
        font-size: 30px;
    }

    .site-nav {
        display: none;
    }

    body.navshows .site-nav {
        display: block;
        margin-top: 12px;
        padding: 16px;
        border: 1px solid var(--site-border);
        border-radius: 18px;
        background: linear-gradient(180deg, #fffdf8, #f6efe3);
        box-shadow: 0 16px 32px rgba(31, 24, 14, 0.12);
    }

    body.navshows .nav {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    body.navshows .nav li a {
        width: 100%;
        justify-content: flex-start;
        margin-right: 0;
        padding: 12px 0;
        border-bottom: 1px solid var(--site-line);
    }

    body.navshows .nav li:last-child > a {
        border-bottom: none;
    }

    body.navshows .nav li ul {
        position: static;
        display: block;
        min-width: 0;
        margin: 0 0 8px;
        padding: 0 0 0 10px;
        border: none;
        box-shadow: none;
        background: transparent;
    }

    body.navshows .nav li ul li a {
        padding: 10px 0;
        color: var(--site-text-soft);
        font-size: 13px;
    }

    .panel-card,
    .widget,
    .footer {
        padding: 18px;
    }

    .lead-story-copy h1,
    .channel-lead-copy h2,
    .article-title,
    .section-heading h2,
    .channel-header h1,
    .search-hero h1,
    .single-page-hero h1,
    .tag-result-hero h1 {
        font-size: 24px;
    }

    .feature-tile-copy h3,
    .excerpt h2 {
        font-size: 22px;
    }

    .excerpt,
    .related-item,
    .widget-media-item,
    .like-card,
    .archive-item,
    .text-stream-item {
        grid-template-columns: 1fr;
    }

    .excerpt h2,
    .text-stream-main h3,
    .archive-item-main h3 {
        font-size: 20px;
    }

    .article-keyfacts li {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .article-keyfacts span {
        text-align: left;
    }
}
