/* ═══════════════════════════════════════════
   pzs.liuxia.xin · 共享样式 v2.0（美学升级）
   品牌：陪诊师部落视觉规范（墨绿 #2E5D3E + 琥珀 #E8844A）
   母题：三峰（山 = 靠山 · 部落 · 人从众），贯穿 hero 与页脚
   气质：专业 × 温暖 × 有靠山 —— 编辑感克制风，不做爆款营销感
   ═══════════════════════════════════════════ */
:root {
  --ink-green: #2E5D3E;      /* 部落墨绿 · 主色 */
  --ink-deep: #1F422C;       /* 墨绿深（渐变底） */
  --ink-tint: #E9EFE9;       /* 墨绿浅底 */
  --amber-tribe: #E8844A;    /* 部落琥珀 · 强调 */
  --amber-tint: #FBEFE6;     /* 琥珀浅底 */
  --white: #FFFFFF;
  --gray-light: #E5E5E5;
  --gray-mid: #6B6B6B;
  --gray-dark: #333333;
  --bg: #FBFAF7;             /* 极浅暖白 · 页面底 */
  --line: #EBE7DE;           /* 暖灰分割线 */
  --serif: "Noto Serif SC", "Source Han Serif SC", "Songti SC", "STSong", "SimSun", serif;
  --sans: "Noto Sans SC", "Source Han Sans SC", "PingFang SC", "Microsoft YaHei", -apple-system, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--gray-dark);
  -webkit-font-smoothing: antialiased;
  line-height: 1.7;
}
.container { max-width: 720px; margin: 0 auto; padding: 0 20px; }
a { -webkit-tap-highlight-color: transparent; }

/* ── Header ── */
.site-header {
  background: var(--ink-deep);
  color: #fff;
  padding: 13px 0;
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid rgba(232,132,74,.28);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; }
.site-logo { font-family: var(--serif); font-weight: 700; font-size: 17px; letter-spacing: 2px; text-decoration: none; color: #fff; }
.site-logo span { color: var(--amber-tribe); }
.site-nav a { color: rgba(255,255,255,.82); text-decoration: none; font-size: 13px; margin-left: 18px; transition: color .2s; }
.site-nav a:hover { color: var(--amber-tribe); }

/* ── Hero：山形母题 ── */
.hero {
  position: relative;
  /* 墨绿山体 + 右上琥珀晨光（"被阳光照亮的山顶"——LOGO 寓意） */
  background:
    radial-gradient(640px 300px at 85% -8%, rgba(232,132,74,.20), transparent 62%),
    linear-gradient(168deg, #264E3A 0%, var(--ink-green) 72%, #3F7052 100%);
  color: #fff;
  padding: 56px 0 68px;
  text-align: center;
  overflow: hidden;
}
.hero-inner { position: relative; z-index: 2; }
.hero-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  object-fit: cover; display: inline-block;
  border: 2px solid #fff;
  box-shadow: 0 0 0 3px rgba(255,255,255,.15);
  margin-bottom: 16px;
}
.hero h1 {
  font-family: var(--serif);
  font-size: 38px; font-weight: 700;
  letter-spacing: 6px; text-indent: 6px;
  margin-bottom: 14px;
}
.hero-sub { font-size: 14.5px; color: rgba(255,255,255,.82); letter-spacing: 2.5px; }
.hero-sub em { color: var(--amber-tribe); font-style: normal; }
.hero-desc {
  font-size: 14px; color: rgba(255,255,255,.6);
  line-height: 2; margin-top: 22px;
  max-width: 480px; margin-left: auto; margin-right: auto;
}
.hero-mountains {
  position: absolute; left: 0; right: 0; bottom: -1px;
  width: 100%; height: 90px; display: block;
}
@media (max-width: 480px) {
  .hero { padding: 52px 0 56px; }
  .hero h1 { font-size: 30px; letter-spacing: 4px; text-indent: 4px; }
  .hero-avatar { width: 80px; height: 80px; }
}

/* ── Sections ── */
.section { padding: 40px 0 8px; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 20px; }
.section-title { font-size: 18px; font-weight: 700; color: var(--ink-green); }
.section-title::after { content: ''; display: block; width: 28px; height: 3px; background: var(--amber-tribe); margin-top: 7px; border-radius: 2px; }
.section-note { font-size: 12px; color: var(--gray-mid); }

/* ── Editorial Index（杂志目录式板块入口） ── */
.index-list { background: var(--white); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.index-row {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px; text-decoration: none;
  border-bottom: 1px solid #F1EDE4;
  transition: background .18s ease;
}
.index-row:last-child { border-bottom: none; }
.index-row:hover { background: var(--ink-tint); }
.index-num {
  font-family: var(--serif);
  font-size: 25px; font-weight: 700;
  color: var(--ink-green); opacity: .85;
  width: 52px; flex-shrink: 0; letter-spacing: 1px;
  transition: color .18s ease;
}
.index-row:hover .index-num { color: var(--amber-tribe); opacity: 1; }
.index-body { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.index-name { font-size: 16.5px; font-weight: 700; color: var(--ink-green); letter-spacing: .5px; }
.index-desc { font-size: 12.5px; color: var(--gray-mid); margin-top: 3px; line-height: 1.6; }
.index-meta {
  flex-shrink: 0;
  font-size: 11.5px; letter-spacing: .5px;
  color: #A8A296;
  padding: 3px 10px; border: 1px solid var(--line); border-radius: 20px;
}
@media (max-width: 480px) {
  .index-row { padding: 15px 16px; gap: 12px; }
  .index-num { font-size: 21px; width: 40px; }
  .index-meta { display: none; }
}

/* ── Grid / Cards（备用） ── */
.grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.card {
  position: relative;
  display: block; background: var(--white);
  border: 1px solid var(--line); border-radius: 14px;
  padding: 20px 18px 18px;
  text-decoration: none; color: var(--gray-dark);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card::before {  /* 峰顶线：hover 时"山露头" */
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--amber-tribe);
  transform: scaleX(0); transform-origin: left;
  transition: transform .22s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(46,93,62,.10); border-color: #DCD6C8; }
.card:hover::before { transform: scaleX(1); }
.card:active { transform: translateY(-1px); }
.card .icon { font-size: 20px; display: block; margin-bottom: 10px; }
.card .name { font-size: 15px; font-weight: 700; color: var(--ink-green); margin-bottom: 5px; }
.card .desc { font-size: 12px; color: var(--gray-mid); line-height: 1.65; }
@media (max-width: 480px) {
  .grid { gap: 10px; }
  .card { padding: 16px 14px 14px; }
}

/* ── Feed（动态骨架） ── */
.feed { background: var(--white); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.feed-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid #F1EDE4;
  transition: background .15s;
}
.feed-item:last-child { border-bottom: none; }
.feed-item:hover { background: var(--ink-tint); }
.feed-tag {
  flex-shrink: 0;
  font-size: 11px; font-weight: 600; letter-spacing: .5px;
  color: var(--ink-green); background: var(--ink-tint);
  padding: 3px 10px; border-radius: 20px;
}
.feed-text { font-size: 13px; color: #8A8578; }

/* ── About ── */
.about-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  padding: 18px 20px;
}
.about-avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid var(--amber-tint); }
.about-text { font-size: 13.5px; color: var(--gray-mid); line-height: 1.8; }
.about-text p { margin-bottom: 8px; }
.btn-ghost {
  display: inline-block;
  font-size: 13px; font-weight: 600;
  color: var(--amber-tribe);
  border: 1px solid var(--amber-tribe); border-radius: 20px;
  padding: 6px 18px; text-decoration: none;
  transition: all .2s;
}
.btn-ghost:hover { background: var(--amber-tribe); color: #fff; }

/* ── Placeholder（板块占位页） ── */
.placeholder {
  background: var(--white); border: 1px dashed var(--gray-light); border-radius: 14px;
  padding: 56px 24px; text-align: center; color: var(--gray-mid);
}
.placeholder .big { font-size: 40px; margin-bottom: 14px; }
.placeholder a { color: var(--ink-green); }

/* ── Footer：山形收尾 ── */
.site-footer {
  margin-top: 56px;
  background: #EDEFE8;   /* 暖灰微带墨绿 tint */
  border-top: 1px solid var(--line);
  padding: 36px 0 44px;
  text-align: center;
  position: relative;
}
.footer-mountains { display: block; width: 100%; height: 26px; margin-top: -36px; opacity: .5; }
.footer-logo { width: 80px; height: auto; margin-bottom: 10px; opacity: .7; mix-blend-mode: multiply; }
.site-footer p { font-size: 12px; color: var(--gray-mid); line-height: 1.9; }

/* ── FAB 全站导航中心（三峰母题） ── */
/* FAB：极简线条语言——空心细环 + 三条横线，零色块 */
.fab {
  position: fixed; left: 50%; transform: translateX(-50%);
  bottom: 22px;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(46,93,62,.72);
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 90;
  transition: border-color .25s ease, transform .2s ease;
  -webkit-tap-highlight-color: transparent;
}
.fab-lines { display: flex; flex-direction: column; gap: 4px; }
.fab-lines span {
  display: block; width: 16px; height: 1.5px;
  background: var(--ink-green);
  border-radius: 1px;
  transition: background .2s ease;
}
.fab:hover { border-color: rgba(232,132,74,.6); }
.fab:hover .fab-lines span { background: var(--amber-tribe); }
.fab:active { transform: translateX(-50%) scale(.94); }
.fab-overlay {
  position: fixed; inset: 0; background: rgba(20,32,24,.45);
  z-index: 95; opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.fab-overlay.open { opacity: 1; pointer-events: auto; }
.fab-sheet {
  position: fixed; left: 0; right: 0; bottom: 0;
  background: var(--white);
  border-radius: 20px 20px 0 0;
  z-index: 96;
  transform: translateY(100%);
  transition: transform .32s cubic-bezier(.32,.72,.35,1);
  padding: 10px 22px max(22px, env(safe-area-inset-bottom));
  box-shadow: 0 -8px 32px rgba(0,0,0,.14);
}
.fab-sheet.open { transform: translateY(0); }
.fab-sheet-handle { width: 36px; height: 4px; background: var(--gray-light); border-radius: 2px; margin: 8px auto 14px; }
.fab-sheet-brand { text-align: center; font-family: var(--serif); font-size: 15px; font-weight: 700; color: var(--ink-green); letter-spacing: 2px; margin-bottom: 12px; }
.fab-nav { display: flex; flex-direction: column; }
.fab-link {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 4px; text-decoration: none;
  border-bottom: 1px solid #F1EDE4;
  font-size: 14.5px; color: var(--gray-dark);
  transition: color .15s;
}
.fab-link:last-of-type { border-bottom: none; }
.fab-link:hover { color: var(--ink-green); }
.fab-num { font-family: var(--serif); font-size: 13px; color: var(--amber-tribe); width: 24px; flex-shrink: 0; }
.fab-sheet-foot { text-align: center; font-size: 11.5px; color: #A8A296; margin-top: 12px; }

/* ── Contact sheet（联系宁哥） ── */
.contact-link {
  color: var(--ink-green); text-decoration: none;
  border-bottom: 1px dotted rgba(232,132,74,.7);
  transition: color .15s;
}
.contact-link:hover { color: var(--amber-tribe); }
.contact-overlay {
  position: fixed; inset: 0; background: rgba(20,32,24,.45);
  z-index: 97; opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.contact-overlay.open { opacity: 1; pointer-events: auto; }
.contact-sheet {
  position: fixed;
  left: 50%; bottom: 24px;
  transform: translateX(-50%) translateY(130%);
  width: min(380px, calc(100vw - 40px));
  background: var(--white);
  border-radius: 20px;
  z-index: 98;
  transition: transform .32s cubic-bezier(.32,.72,.35,1);
  padding: 10px 22px 22px;
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
  text-align: center;
}
.contact-sheet.open { transform: translateX(-50%) translateY(0); }
.contact-handle { width: 36px; height: 4px; background: var(--gray-light); border-radius: 2px; margin: 8px auto 14px; }
.contact-title { font-family: var(--serif); font-size: 15px; font-weight: 700; color: var(--ink-green); letter-spacing: 2px; }
.contact-num { font-family: var(--serif); font-size: 30px; font-weight: 700; color: var(--ink-green); letter-spacing: 2px; margin-top: 12px; }
.contact-hint { font-size: 12px; color: var(--gray-mid); margin-top: 6px; }
.contact-btn {
  display: block; width: 100%;
  padding: 13px 0; border-radius: 12px;
  font-size: 15px; font-weight: 600; letter-spacing: 1px;
  margin-top: 12px; cursor: pointer;
  transition: transform .15s ease, background .15s ease;
  -webkit-tap-highlight-color: transparent;
}
.contact-btn:active { transform: scale(.98); }
.contact-solid { background: var(--ink-green); color: #fff; text-decoration: none; border: none; }
.contact-solid:active { background: var(--ink-deep); }
.contact-outline { background: var(--white); color: var(--ink-green); border: 1.5px solid var(--ink-green); }
.contact-outline:active { background: var(--ink-tint); }
.contact-foot { font-size: 11.5px; color: #A8A296; margin-top: 12px; }

/* ── Toast ── */
.site-toast {
  position: fixed; left: 50%; transform: translateX(-50%);
  bottom: 96px; z-index: 99;
  background: rgba(31,66,44,.92); color: #fff;
  padding: 10px 22px; border-radius: 20px;
  font-size: 13px; letter-spacing: .5px;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
  white-space: nowrap;
}
.site-toast.show { opacity: 1; }

/* ── Brief（趋势简报） ── */
.brief-hero { padding: 48px 0 8px; text-align: center; }
.brief-hero .kicker { font-size: 12px; letter-spacing: 3px; color: var(--amber-tribe); font-weight: 600; }
.brief-hero h1 { font-family: var(--serif); font-size: 30px; font-weight: 700; color: var(--ink-green); letter-spacing: 3px; margin-top: 10px; }
.brief-hero .meta { font-size: 13px; color: var(--gray-mid); margin-top: 12px; letter-spacing: 1px; }
.brief-hero .desc { font-size: 14px; color: var(--gray-mid); margin-top: 8px; line-height: 1.8; }
.brief-hero-line { display: block; width: 100%; height: 22px; margin-top: 28px; }
.issue-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  padding: 24px 22px; margin-top: 24px;
  position: relative; overflow: hidden;
}
.issue-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--amber-tribe); }
.issue-new {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 1px;
  color: #fff; background: var(--amber-tribe);
  padding: 3px 10px; border-radius: 20px; margin-bottom: 12px;
}
.issue-title { font-size: 18px; font-weight: 700; color: var(--ink-green); line-height: 1.6; margin-bottom: 10px; }
.issue-date { font-size: 12.5px; color: var(--gray-mid); letter-spacing: .5px; margin-bottom: 14px; }
.issue-summary { font-size: 13.5px; color: var(--gray-dark); line-height: 2; }
.issue-cta {
  display: inline-block; margin-top: 18px;
  background: var(--ink-green); color: #fff;
  font-size: 14px; font-weight: 600; letter-spacing: 1px;
  padding: 11px 26px; border-radius: 24px; text-decoration: none;
  transition: background .2s ease, transform .15s ease;
}
.issue-cta:hover { background: var(--ink-deep); }
.issue-cta:active { transform: scale(.97); }
.issue-list { background: var(--white); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; margin-top: 14px; }
.issue-row {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px; text-decoration: none;
  border-bottom: 1px solid #F1EDE4;
  transition: background .18s ease;
}
.issue-row:last-child { border-bottom: none; }
.issue-row:hover { background: var(--ink-tint); }
.issue-no { font-family: var(--serif); font-size: 16px; font-weight: 700; color: var(--ink-green); flex-shrink: 0; width: 52px; }
.issue-row:hover .issue-no { color: var(--amber-tribe); }
.issue-info { flex: 1; min-width: 0; }
.issue-info .d { font-size: 11.5px; color: #A8A296; letter-spacing: .5px; }
.issue-info .s { font-size: 13px; color: var(--gray-dark); margin-top: 3px; line-height: 1.7; }
.issue-go { flex-shrink: 0; font-size: 12.5px; font-weight: 600; color: var(--amber-tribe); border: 1px solid var(--amber-tribe); padding: 5px 14px; border-radius: 20px; transition: all .2s; }
.issue-row:hover .issue-go { background: var(--amber-tribe); color: #fff; }
.framework-link {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--white); border: 1px dashed var(--ink-green);
  border-radius: 14px; padding: 16px 20px; margin-top: 14px; text-decoration: none;
  transition: background .18s ease;
}
.framework-link:hover { background: var(--ink-tint); }
.framework-link .t { font-size: 14px; font-weight: 700; color: var(--ink-green); }
.framework-link .d { font-size: 12px; color: var(--gray-mid); margin-top: 2px; }
.framework-link .go { font-size: 12.5px; color: var(--amber-tribe); font-weight: 600; flex-shrink: 0; margin-left: 12px; }
@media (max-width: 480px) {
  .brief-hero h1 { font-size: 25px; }
  .issue-row { padding: 14px 14px; gap: 10px; }
  .issue-no { width: 44px; font-size: 14px; }
}

/* ── Article v2.0（简报详情页：信号卡体系） ── */
.keywords { display: flex; flex-direction: column; gap: 10px; margin: 4px 0 8px; }
.keyword-card {
  display: flex; align-items: baseline; gap: 14px;
  background: var(--white); border: 1px solid var(--line); border-left: 3px solid var(--amber-tribe);
  border-radius: 10px; padding: 12px 16px;
}
.keyword-card .kw { font-family: var(--serif); font-size: 17px; font-weight: 700; color: var(--ink-green); flex-shrink: 0; white-space: nowrap; }
.keyword-card .ex { font-size: 13px; color: var(--gray-mid); line-height: 1.7; }
.signal-card {
  margin-top: 18px; background: var(--white);
  border: 1px solid var(--line); border-radius: 12px; padding: 18px 18px 16px;
}
.signal-head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.signal-no { font-family: var(--serif); font-size: 15px; font-weight: 700; color: var(--amber-tribe); flex-shrink: 0; }
.signal-tag { font-size: 11px; font-weight: 600; color: var(--ink-green); background: var(--ink-tint); padding: 2px 9px; border-radius: 10px; letter-spacing: .5px; }
.signal-title { font-size: 15.5px; font-weight: 700; color: var(--ink-green); line-height: 1.6; margin-bottom: 8px; }
.signal-card p { font-size: 14px; line-height: 2; color: var(--gray-dark); margin-bottom: 8px; }
.judge-strip {
  background: var(--ink-tint); border-left: 3px solid var(--amber-tribe);
  border-radius: 0 10px 10px 0; padding: 12px 14px; margin-top: 12px;
}
.judge-strip .jl { font-size: 11px; font-weight: 700; color: var(--amber-tribe); letter-spacing: 1.5px; margin-bottom: 5px; }
.judge-strip p { color: var(--ink-deep); font-weight: 600; font-size: 14px; line-height: 1.9; margin: 0; }
.judge-list { margin-top: 4px; }
.judge-item {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--line); border-radius: 10px;
  padding: 12px 14px; margin-top: 10px;
}
.judge-item .jn { font-family: var(--serif); font-size: 15px; font-weight: 700; color: var(--amber-tribe); flex-shrink: 0; }
.judge-item p { font-size: 14px; color: var(--gray-dark); line-height: 1.8; margin: 0; }
.source-fold { margin-top: 18px; }
.source-fold summary {
  cursor: pointer; list-style: none; user-select: none;
  font-size: 13px; font-weight: 600; color: var(--ink-green);
  padding: 12px 16px; background: var(--white);
  border: 1px solid var(--line); border-radius: 10px;
  display: flex; align-items: center; justify-content: space-between;
}
.source-fold summary::-webkit-details-marker { display: none; }
.source-fold summary .cnt { color: var(--amber-tribe); font-family: var(--serif); font-size: 13px; display: flex; align-items: center; gap: 6px; }
.source-fold summary .cnt .tri { transition: transform .2s ease; font-size: 10px; }
.source-fold[open] summary { border-radius: 10px 10px 0 0; }
.source-fold[open] summary .tri { transform: rotate(90deg); }
.source-body { background: var(--bg-soft); border: 1px solid var(--line); border-top: none; border-radius: 0 0 10px 10px; padding: 12px 16px; }
.source-body p { font-size: 12.5px; color: var(--gray-mid); margin-bottom: 5px; line-height: 1.9; }
.source-body p:last-child { margin-bottom: 0; }
.issue-flow { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-top: 20px; }
.issue-flow a {
  background: var(--white); border: 1px solid var(--line); border-radius: 10px;
  padding: 12px 8px; text-decoration: none; text-align: center;
  transition: border-color .15s ease;
}
.issue-flow a:hover { border-color: var(--amber-tribe); }
.issue-flow .cur { background: var(--ink-green); border-color: var(--ink-green); }
.issue-flow .cur .n { color: #fff; }
.issue-flow .cur .d { color: rgba(255,255,255,.7); }
.issue-flow .n { display: block; font-size: 13px; font-weight: 700; color: var(--ink-green); }
.issue-flow .d { display: block; font-size: 10.5px; color: var(--gray-mid); margin-top: 3px; }
.issue-flow .dim { opacity: .45; }

/* ── Article（简报详情页） ── */
.article-head { padding: 44px 0 8px; text-align: center; }
.article-tag {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 1px;
  color: #fff; background: var(--amber-tribe);
  padding: 3px 12px; border-radius: 20px;
}
.article-head h1 { font-family: var(--serif); font-size: 26px; font-weight: 700; color: var(--ink-green); line-height: 1.6; margin-top: 14px; }
.article-head .date { font-size: 13px; color: var(--gray-mid); margin-top: 10px; letter-spacing: .5px; }
.article-body {
  background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  padding: 28px 24px; margin-top: 24px;
}
.article-body h2 { font-size: 18px; font-weight: 700; color: var(--ink-green); margin: 28px 0 12px; }
.article-body h2:first-child { margin-top: 0; }
.article-body h3 { font-size: 15.5px; font-weight: 700; color: var(--gray-dark); margin: 20px 0 10px; line-height: 1.6; }
.article-body p { font-size: 14.5px; line-height: 2; color: var(--gray-dark); margin-bottom: 10px; }
.article-body strong { color: var(--ink-green); font-weight: 700; }
.article-body a { color: var(--amber-tribe); text-decoration: underline; }
.article-body ul { margin: 8px 0 16px; padding-left: 4px; list-style: none; }
.article-body ul li { font-size: 14.5px; line-height: 2; color: var(--gray-dark); padding-left: 18px; position: relative; }
.article-body ul li::before { content: ''; position: absolute; left: 2px; top: 12px; width: 6px; height: 6px; border-radius: 50%; background: var(--amber-tribe); }
.article-body blockquote {
  background: var(--ink-tint); border-left: 3px solid var(--amber-tribe);
  border-radius: 0 10px 10px 0; padding: 14px 16px; margin: 12px 0 20px;
}
.article-body blockquote p { color: var(--ink-deep); font-weight: 600; margin: 0; font-size: 14px; line-height: 1.9; }
.article-source { background: var(--bg-soft); border-radius: 10px; padding: 14px 16px; margin-top: 8px; }
.article-source p { font-size: 12.5px; color: var(--gray-mid); margin-bottom: 5px; line-height: 1.9; }
.article-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 20px; }
.article-nav a {
  flex: 1; background: var(--white); border: 1px solid var(--line); border-radius: 12px;
  padding: 14px 16px; text-decoration: none;
  transition: border-color .15s ease;
}
.article-nav a:hover { border-color: var(--amber-tribe); }
.article-nav .l { font-size: 11.5px; color: #A8A296; }
.article-nav .t { font-size: 13.5px; color: var(--ink-green); font-weight: 600; margin-top: 3px; line-height: 1.5; }
.article-nav .next { text-align: right; }
.article-back {
  display: block; text-align: center; margin: 20px auto 0;
  font-size: 13px; font-weight: 600; color: var(--amber-tribe); text-decoration: none;
}
.article-back:hover { text-decoration: underline; }
@media (max-width: 480px) {
  .article-head h1 { font-size: 22px; }
  .article-body { padding: 22px 18px; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
