/* ===========================
   奇宝秘 · 莫兰迪色系样式
   Morandi Color Palette Style
   =========================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #EFECE6;
  --bg-secondary: #F5F2EC;
  --bg-card: #FAF8F3;
  --bg-dark: #3E3A33;

  --color-sage: #A8B5A0;
  --color-sage-dark: #8A9783;
  --color-dusty: #B5A8A1;
  --color-dusty-dark: #8E837C;
  --color-slate: #9DA8B0;
  --color-slate-dark: #7A8794;
  --color-camel: #C9B8A8;
  --color-rose: #C9ABA5;
  --color-olive: #9C9E7E;
  --color-clay: #B89A87;

  --text-primary: #3E3A33;
  --text-secondary: #6B6359;
  --text-light: #968D81;
  --text-white: #EFECE6;

  --border: #D4CFC4;
  --border-light: #E5DFD3;

  --shadow-sm: 0 2px 8px rgba(62, 58, 51, 0.04);
  --shadow-md: 0 8px 24px rgba(62, 58, 51, 0.08);
  --shadow-lg: 0 16px 48px rgba(62, 58, 51, 0.10);

  --font-serif: 'Georgia', 'Noto Serif SC', 'Songti SC', 'SimSun', serif;
  --font-sans: 'Helvetica Neue', 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.75;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  display: block;
}

/* ============== 顶部导航 ============== */
.site-header {
  background: rgba(239, 236, 230, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 22px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-slate) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-primary);
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.15em;
}

.brand-tag {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.3em;
  margin-top: 2px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 6px;
  align-items: center;
}

.nav a {
  padding: 10px 18px;
  font-size: 14px;
  color: var(--text-secondary);
  border-radius: 22px;
  letter-spacing: 0.08em;
  position: relative;
}

.nav a:hover {
  color: var(--text-primary);
  background: rgba(168, 181, 160, 0.12);
}

.nav a.active {
  color: var(--color-sage-dark);
  background: rgba(168, 181, 160, 0.18);
}

.nav-cta {
  background: var(--text-primary);
  color: var(--text-white) !important;
  padding: 10px 22px;
  border-radius: 22px;
  margin-left: 12px;
}

.nav-cta:hover {
  background: var(--color-sage-dark);
}

/* ============== Hero 首屏 ============== */
.hero {
  padding: 90px 40px 110px;
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -180px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 181, 160, 0.20) 0%, transparent 70%);
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -160px;
  left: -100px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(157, 168, 176, 0.18) 0%, transparent 70%);
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  background: rgba(168, 181, 160, 0.14);
  color: var(--color-sage-dark);
  border-radius: 30px;
  font-size: 12px;
  letter-spacing: 0.25em;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.hero-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--color-sage);
  border-radius: 50%;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: 64px;
  line-height: 1.18;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.hero h1 em {
  font-style: italic;
  color: var(--color-sage-dark);
  font-weight: 400;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.85;
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 14px;
  letter-spacing: 0.15em;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--text-primary);
  color: var(--text-white);
}

.btn-primary:hover {
  background: var(--color-sage-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-primary);
}

.btn-ghost:hover {
  border-color: var(--text-primary);
  background: rgba(62, 58, 51, 0.04);
}

.btn-arrow {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

.hero-visual {
  position: relative;
  height: 480px;
}

.hv-card {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow-md);
}

.hv-card-1 {
  top: 0;
  left: 0;
  width: 260px;
  transform: rotate(-3deg);
  background: linear-gradient(135deg, #E8DFD0 0%, #D9CFC0 100%);
}

.hv-card-2 {
  top: 80px;
  right: 0;
  width: 240px;
  transform: rotate(2deg);
  background: linear-gradient(135deg, #C9D0C5 0%, #B5BFB1 100%);
}

.hv-card-3 {
  bottom: 0;
  left: 40px;
  width: 280px;
  transform: rotate(1.5deg);
  background: linear-gradient(135deg, #D6C9C0 0%, #C2B5AB 100%);
}

.hv-card-label {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.25em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.hv-card-num {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.hv-card-text {
  font-size: 13px;
  color: var(--text-secondary);
}

.hv-deco {
  position: absolute;
  width: 100px;
  height: 100px;
  border: 1px solid var(--color-sage);
  border-radius: 50%;
  top: 30%;
  right: 35%;
  opacity: 0.3;
}

/* ============== 通用 section ============== */
.section {
  padding: 100px 40px;
  max-width: 1320px;
  margin: 0 auto;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.section-title {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.section-title span {
  display: block;
  font-size: 12px;
  color: var(--color-sage-dark);
  letter-spacing: 0.4em;
  margin-bottom: 14px;
  text-transform: uppercase;
  font-family: var(--font-sans);
  font-weight: 400;
}

.section-desc {
  max-width: 360px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.85;
}

.section-more {
  font-size: 13px;
  color: var(--text-secondary);
  letter-spacing: 0.2em;
  border-bottom: 1px solid var(--text-secondary);
  padding-bottom: 4px;
}

.section-more:hover {
  color: var(--color-sage-dark);
  border-color: var(--color-sage-dark);
}

/* ============== 栏目卡片网格 ============== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.cat-card {
  position: relative;
  display: block;
  padding: 32px 26px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  min-height: 200px;
  overflow: hidden;
}

.cat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--color-sage);
  transition: height 0.4s ease;
}

.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--border);
}

.cat-card:hover::before {
  height: 100%;
}

.cat-num {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--text-light);
  letter-spacing: 0.2em;
  margin-bottom: 24px;
}

.cat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-white);
}

.cat-icon-1 { background: linear-gradient(135deg, #A8B5A0, #8A9783); }
.cat-icon-2 { background: linear-gradient(135deg, #B5A8A1, #8E837C); }
.cat-icon-3 { background: linear-gradient(135deg, #9DA8B0, #7A8794); }
.cat-icon-4 { background: linear-gradient(135deg, #C9B8A8, #A8957E); }
.cat-icon-5 { background: linear-gradient(135deg, #C9ABA5, #A88C84); }
.cat-icon-6 { background: linear-gradient(135deg, #9C9E7E, #7E8064); }
.cat-icon-7 { background: linear-gradient(135deg, #B89A87, #947662); }
.cat-icon-8 { background: linear-gradient(135deg, #A8B5A0, #8A9783); }
.cat-icon-9 { background: linear-gradient(135deg, #9DA8B0, #7A8794); }
.cat-icon-10 { background: linear-gradient(135deg, #B5A8A1, #8E837C); }

.cat-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.cat-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 22px;
}

.cat-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px dashed var(--border);
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.1em;
}

.cat-arrow {
  font-size: 18px;
  color: var(--text-light);
  transition: all 0.3s ease;
}

.cat-card:hover .cat-arrow {
  color: var(--color-sage-dark);
  transform: translateX(4px);
}

/* ============== 文章列表 ============== */
.article-list {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 60px;
}

.article-feature {
  position: relative;
}

.feature-img {
  height: 360px;
  border-radius: 16px;
  background: linear-gradient(135deg, #D6CFC0 0%, #B5A89C 100%);
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-img::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(239, 236, 230, 0.5);
  border-radius: 50%;
}

.feature-img::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background: rgba(239, 236, 230, 0.25);
  border-radius: 50%;
}

.feature-tag {
  position: absolute;
  top: 24px;
  left: 24px;
  padding: 6px 14px;
  background: rgba(239, 236, 230, 0.92);
  color: var(--text-primary);
  font-size: 11px;
  letter-spacing: 0.25em;
  border-radius: 14px;
}

.feature-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 14px;
  color: var(--text-primary);
}

.feature-title:hover {
  color: var(--color-sage-dark);
}

.feature-desc {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.85;
  margin-bottom: 16px;
}

.feature-meta {
  display: flex;
  gap: 20px;
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.15em;
}

.article-list-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.art-item {
  display: flex;
  gap: 18px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}

.art-item:last-child {
  border-bottom: none;
}

.art-thumb {
  flex: 0 0 110px;
  height: 90px;
  border-radius: 10px;
  background: linear-gradient(135deg, #C9D0C5, #A8B5A0);
  position: relative;
  overflow: hidden;
}

.art-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(239, 236, 230, 0.4) 0%, transparent 50%);
}

.art-content {
  flex: 1;
}

.art-cat {
  font-size: 11px;
  color: var(--color-sage-dark);
  letter-spacing: 0.2em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.art-title {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 8px;
  color: var(--text-primary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.art-title:hover {
  color: var(--color-sage-dark);
}

.art-meta {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.15em;
}

/* ============== 数字统计 ============== */
.stats {
  background: var(--bg-secondary);
  padding: 80px 40px;
  margin: 80px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.stats-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat-item {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid var(--border-light);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 12px;
}

.stat-num em {
  font-style: normal;
  color: var(--color-sage-dark);
}

.stat-label {
  font-size: 13px;
  color: var(--text-secondary);
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

/* ============== 引言区块 ============== */
.quote-section {
  max-width: 1320px;
  margin: 0 auto;
  padding: 100px 40px;
  text-align: center;
  position: relative;
}

.quote-mark {
  font-family: var(--font-serif);
  font-size: 120px;
  color: var(--color-sage);
  opacity: 0.3;
  line-height: 0.5;
  margin-bottom: 24px;
}

.quote-text {
  font-family: var(--font-serif);
  font-size: 32px;
  line-height: 1.6;
  color: var(--text-primary);
  max-width: 760px;
  margin: 0 auto 24px;
  font-style: italic;
  font-weight: 400;
}

.quote-author {
  font-size: 13px;
  color: var(--text-secondary);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.quote-author::before,
.quote-author::after {
  content: "—";
  margin: 0 12px;
  color: var(--color-sage);
}

/* ============== 时间线 ============== */
.timeline-section {
  background: var(--bg-secondary);
  padding: 100px 40px;
}

.timeline-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.timeline {
  margin-top: 60px;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 80px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
}

.tl-item {
  display: flex;
  gap: 60px;
  padding: 24px 0;
  align-items: flex-start;
}

.tl-year {
  flex: 0 0 80px;
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--color-sage-dark);
  position: relative;
}

.tl-year::after {
  content: "";
  position: absolute;
  right: -22px;
  top: 12px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 2px solid var(--color-sage);
}

.tl-content {
  flex: 1;
  padding: 8px 24px;
  background: var(--bg-card);
  border-radius: 10px;
  border-left: 3px solid var(--color-sage);
}

.tl-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.tl-desc {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ============== 底部 ============== */
.site-footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 80px 40px 30px;
}

.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid #4A463F;
}

.footer-brand .brand-name {
  color: var(--bg-primary);
}

.footer-brand .brand-logo {
  background: var(--bg-primary);
  color: var(--text-primary);
}

.footer-desc {
  font-size: 13px;
  line-height: 1.85;
  margin-top: 20px;
  color: #968D81;
}

.footer-col h4 {
  color: var(--bg-primary);
  font-size: 13px;
  letter-spacing: 0.3em;
  margin-bottom: 22px;
  text-transform: uppercase;
  font-weight: 500;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  font-size: 13px;
  color: #968D81;
}

.footer-col a:hover {
  color: var(--bg-primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 12px;
  color: #6B6359;
  letter-spacing: 0.1em;
}

.footer-bottom a {
  color: #968D81;
}

.footer-bottom a:hover {
  color: var(--bg-primary);
}

/* ============== 列表页样式 ============== */
.page-banner {
  padding: 80px 40px 60px;
  background: linear-gradient(135deg, #EFECE6 0%, #E5DED3 100%);
  border-bottom: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 181, 160, 0.25) 0%, transparent 70%);
}

.page-banner-inner {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  letter-spacing: 0.1em;
}

.breadcrumb a:hover {
  color: var(--color-sage-dark);
}

.breadcrumb span {
  color: var(--text-light);
}

.page-banner h1 {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.page-banner p {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.85;
}

.list-wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 70px 40px 100px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 60px;
}

.side-nav {
  position: sticky;
  top: 100px;
  align-self: start;
}

.side-nav-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text-primary);
}

.side-nav ul {
  list-style: none;
}

.side-nav li {
  margin-bottom: 4px;
}

.side-nav a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  border-left: 2px solid transparent;
}

.side-nav a:hover,
.side-nav a.active {
  background: rgba(168, 181, 160, 0.10);
  color: var(--color-sage-dark);
  border-left-color: var(--color-sage);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.article-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 28px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border);
}

.card-tag {
  display: inline-block;
  font-size: 11px;
  color: var(--color-sage-dark);
  letter-spacing: 0.2em;
  margin-bottom: 14px;
  padding: 4px 10px;
  background: rgba(168, 181, 160, 0.12);
  border-radius: 10px;
  align-self: flex-start;
}

.card-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.card-card:hover .card-title {
  color: var(--color-sage-dark);
}

.card-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 18px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.15em;
}

.card-more {
  color: var(--color-sage-dark);
}

.pagination {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
}

.pagination a,
.pagination span {
  min-width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
  background: var(--bg-card);
}

.pagination a:hover {
  border-color: var(--color-sage);
  color: var(--color-sage-dark);
}

.pagination .current {
  background: var(--text-primary);
  color: var(--text-white);
  border-color: var(--text-primary);
}

.pagination .disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* ============== 文章详情页 ============== */
.article-wrap {
  max-width: 880px;
  margin: 0 auto;
  padding: 70px 40px 100px;
}

.article-header {
  text-align: center;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 50px;
}

.article-cat-tag {
  display: inline-block;
  font-size: 12px;
  color: var(--color-sage-dark);
  letter-spacing: 0.3em;
  padding: 6px 16px;
  background: rgba(168, 181, 160, 0.12);
  border-radius: 14px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.article-header h1 {
  font-family: var(--font-serif);
  font-size: 38px;
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.article-info {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.15em;
}

.article-info span::before {
  content: "·";
  margin-right: 24px;
  color: var(--border);
}

.article-info span:first-child::before {
  display: none;
}

.article-content {
  font-size: 16px;
  line-height: 1.95;
  color: var(--text-primary);
}

.article-content p {
  margin-bottom: 22px;
  text-indent: 2em;
}

.article-content h2 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  margin: 40px 0 20px;
  padding-left: 16px;
  border-left: 4px solid var(--color-sage);
  color: var(--text-primary);
}

.article-content h3 {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  margin: 30px 0 16px;
  color: var(--text-primary);
}

.article-content blockquote {
  margin: 30px 0;
  padding: 24px 30px;
  background: rgba(168, 181, 160, 0.08);
  border-left: 4px solid var(--color-sage);
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.85;
}

.article-content ul,
.article-content ol {
  margin: 20px 0 20px 2em;
}

.article-content li {
  margin-bottom: 10px;
}

.article-content strong {
  color: var(--color-sage-dark);
  font-weight: 600;
}

.article-footer {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-secondary);
}

.article-footer a:hover {
  color: var(--color-sage-dark);
}

.article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.article-nav a {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
}

.article-nav a:hover {
  border-color: var(--color-sage);
}

.article-nav-label {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.3em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.article-nav-title {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

.article-nav-next {
  text-align: right;
}

/* ============== 移动端 ============== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .article-list { grid-template-columns: 1fr; }
  .article-grid { grid-template-columns: 1fr; }
  .list-wrap { grid-template-columns: 1fr; }
  .side-nav { position: static; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .header-inner { padding: 18px 20px; flex-wrap: wrap; gap: 14px; }
  .nav { overflow-x: auto; width: 100%; }
  .hero { padding: 60px 20px 70px; }
  .hero h1 { font-size: 38px; }
  .section { padding: 60px 20px; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .section-title { font-size: 28px; }
  .stats-inner { grid-template-columns: 1fr; gap: 30px; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border-light); padding-bottom: 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .article-nav { grid-template-columns: 1fr; }
}