* { box-sizing: border-box; }

:root {
  --bg: #0b0907;
  --bg-soft: #100d09;
  --surface: #15120d;
  --surface-2: #1d160f;
  --paper: #f6ead2;
  --text: #b8aa86;
  --text-strong: #f6ead2;
  --muted: #938467;
  --gold: #c9a961;
  --gold-soft: #f0d79b;
  --jade: #a7b08a;
  --rust: #d58a55;
  --line: rgba(201, 169, 97, .22);
  --line-strong: rgba(201, 169, 97, .42);
  --shadow: 0 18px 38px rgba(0, 0, 0, .24);
  --container: 900px;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(22, 17, 11, .96), rgba(11, 9, 7, 1) 460px),
    var(--bg);
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 6, 4, .92);
  backdrop-filter: blur(16px);
}

.site-nav,
.container {
  width: min(var(--container), calc(100vw - 40px));
  margin: 0 auto;
}

.site-nav {
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-right: auto;
  color: var(--text-strong);
  font: 700 20px/1 "Noto Serif SC", "Songti SC", serif;
  white-space: nowrap;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a,
.article-cta,
.card-link,
.back-link {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--gold-soft);
  background: rgba(21, 18, 13, .84);
  font-weight: 800;
  font-size: 14px;
}

.nav-links a {
  padding: 0 12px;
}

.nav-links a[aria-current="page"] {
  border-color: var(--line-strong);
  background: rgba(201, 169, 97, .12);
}

.hero {
  padding: 64px 0 44px;
  border-bottom: 1px solid rgba(201, 169, 97, .12);
}

.hero .container {
  position: relative;
  padding-left: 32px;
  border-left: 1px solid var(--line-strong);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  color: var(--text-strong);
  font-family: "Noto Serif SC", "Songti SC", serif;
  letter-spacing: 0;
}

h1 {
  max-width: 1040px;
  margin: 0;
  font-size: clamp(36px, 4.6vw, 50px);
  line-height: 1.22;
}

.hero p {
  max-width: 700px;
  margin: 22px 0 0;
  color: #ab9c78;
  font-size: 17px;
}

.series {
  padding: 46px 0 58px;
}

.series + .series {
  padding-top: 0;
}

.section-head {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
  padding: 0 24px;
  border: 1px solid rgba(201, 169, 97, .18);
  border-radius: 8px;
  background: rgba(17, 14, 10, .82);
}

.section-head h1,
.section-head h2 {
  margin: 0;
  font-size: 26px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

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

.article-card {
  --card-accent: var(--gold);
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 142px;
  padding: 20px 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(22, 18, 13, .98), rgba(12, 9, 6, .98));
  box-shadow: var(--shadow);
}

.article-card:nth-child(3n + 2) {
  --card-accent: var(--jade);
}

.article-card:nth-child(3n) {
  --card-accent: var(--rust);
}

.article-card::before {
  content: attr(data-index);
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 169, 97, .30);
  border-radius: 8px;
  color: var(--gold-soft);
  background: rgba(201, 169, 97, .08);
  font: 800 16px/1 "Noto Serif SC", "Songti SC", serif;
}

.article-card::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 0;
  width: 4px;
  height: calc(100% - 36px);
  background: var(--card-accent);
  opacity: .72;
}

.card-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "meta link"
    "title link"
    "desc link";
  gap: 8px 18px;
  align-items: center;
}

.card-meta {
  grid-area: meta;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.tag {
  color: var(--card-accent);
  font-size: 14px;
  font-weight: 900;
}

.article-card h3 {
  grid-area: title;
  margin: 0;
  font-size: 21px;
  line-height: 1.36;
}

.article-card p {
  grid-area: desc;
  margin: 0;
  color: #a49470;
  font-size: 14px;
}

.card-link {
  grid-area: link;
  align-self: center;
  min-width: 112px;
  padding: 0 16px;
}

.article-shell {
  padding: 42px 0 58px;
}

.article-detail {
  padding: 0 0 58px;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  padding: 42px 0 54px;
  border-bottom: 1px solid rgba(201, 169, 97, .10);
  background:
    radial-gradient(circle at 78% 38%, rgba(201, 169, 97, .12), transparent 26%),
    linear-gradient(180deg, rgba(21, 17, 12, .98), rgba(14, 11, 8, .98));
}

.detail-hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 18px;
  width: 440px;
  height: 214px;
  border: 1px solid rgba(201, 169, 97, .10);
  border-radius: 50%;
  transform: rotate(-8deg);
  opacity: .48;
  pointer-events: none;
}

.detail-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 44px;
  align-items: center;
}

.detail-subtitle {
  margin: 14px 0 0;
  color: #d8c6a7;
  font: 400 19px/1.5 "Noto Serif SC", "Songti SC", serif;
}

.article-orbit {
  position: relative;
  width: 300px;
  height: 166px;
  display: block;
  padding: 0;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 97, .26);
  border-radius: 10px;
  background:
    radial-gradient(circle at 34% 48%, rgba(201, 169, 97, .28), transparent 35%),
    linear-gradient(135deg, rgba(35, 25, 15, .98), rgba(13, 10, 7, .98));
  box-shadow: inset 0 1px 0 rgba(255, 236, 186, .08), 0 26px 56px rgba(0, 0, 0, .28);
}

.article-orbit::before {
  content: "";
  position: absolute;
  left: 31px;
  top: 31px;
  z-index: 1;
  width: 100px;
  height: 100px;
  border: 1px solid rgba(240, 215, 155, .35);
  border-radius: 50%;
  background:
    linear-gradient(rgba(240, 215, 155, .20), transparent 50%, rgba(240, 215, 155, .18)),
    conic-gradient(from 45deg, rgba(201, 169, 97, .08), rgba(201, 169, 97, .34), rgba(201, 169, 97, .08), rgba(201, 169, 97, .30), rgba(201, 169, 97, .08));
  box-shadow: inset 0 0 0 18px rgba(17, 12, 7, .62), inset 0 0 0 19px rgba(240, 215, 155, .20);
}

.article-orbit::after {
  content: "";
  position: absolute;
  top: 30px;
  right: 26px;
  bottom: 30px;
  z-index: 1;
  width: 1px;
  background: linear-gradient(transparent, rgba(240, 215, 155, .42), transparent);
  box-shadow: -32px 0 0 rgba(240, 215, 155, .10), -84px 0 0 rgba(240, 215, 155, .08);
}

.article-orbit span {
  position: absolute;
  left: 145px;
  top: 50%;
  z-index: 2;
  transform: translateY(-35%);
  color: #ffe1a0;
  font: 800 28px/1 "Noto Serif SC", "Songti SC", serif;
  white-space: nowrap;
  text-shadow: 0 10px 18px rgba(0, 0, 0, .25);
}

.article-orbit span::before {
  content: "十二宫";
  position: absolute;
  left: 1px;
  top: -28px;
  color: rgba(246, 234, 210, .56);
  font: 800 14px/1 "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

.article-orbit i {
  position: absolute;
  z-index: 1;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(240, 215, 155, .62);
  color: transparent;
  font-size: 0;
}

.article-orbit i:nth-of-type(1) { left: 58px; top: 30px; }
.article-orbit i:nth-of-type(2) { left: 100px; top: 40px; }
.article-orbit i:nth-of-type(3) { left: 115px; top: 83px; }
.article-orbit i:nth-of-type(4) { left: 84px; top: 115px; }
.article-orbit i:nth-of-type(5) { left: 41px; top: 103px; }
.article-orbit i:nth-of-type(6) { left: 37px; top: 60px; }
.article-orbit i:nth-of-type(n + 7) {
  display: none;
}

.article-detail-layout {
  position: relative;
  padding-top: 48px;
  grid-template-columns: minmax(0, 620px) 230px;
  gap: 50px;
}

.article-detail-layout::before {
  content: "读法路径　先定本宫 · 合三方四正 · 回到现实验证";
  position: absolute;
  left: 0;
  right: 0;
  top: -32px;
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  border: 1px solid rgba(201, 169, 97, .20);
  border-radius: 12px;
  color: #d9c79d;
  background:
    linear-gradient(90deg, rgba(201, 169, 97, .12), rgba(201, 169, 97, .035) 46%, rgba(12, 9, 6, .80));
  box-shadow: 0 18px 36px rgba(0, 0, 0, .18), inset 0 1px rgba(255, 240, 190, .05);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0;
}

.article-paper {
  padding: 44px 44px 46px;
  border: 1px solid #e3cba5;
  border-radius: 8px;
  color: #5f4d38;
  background: #fff8ea;
}

.article-paper .article-lead {
  margin-bottom: 8px;
  color: #2e241a;
  font: 800 24px/1.45 "Noto Serif SC", "Songti SC", serif;
}

.article-paper p {
  max-width: 540px;
  color: #5f4d38;
  font-size: 15px;
  line-height: 1.85;
}

.article-paper hr {
  height: 1px;
  margin: 34px 0 38px;
  border: 0;
  background: #d8be91;
}

.article-paper h2 {
  margin: 0 0 14px;
  color: #2e241a;
  font-size: 23px;
}

.article-paper h2:not(:first-of-type) {
  margin-top: 34px;
}

.article-paper blockquote {
  margin: 28px 0 34px;
  padding: 18px 24px;
  border: 1px solid #dfc197;
  border-left: 4px solid #9b6325;
  border-radius: 8px;
  color: #5c3d1a;
  background: #f4e5ca;
  font: 500 18px/1.5 "Noto Serif SC", "Songti SC", serif;
}

.detail-rail {
  top: 96px;
  padding: 22px 20px;
}

.detail-rail .rail-cta {
  margin: 22px 0 24px;
  padding: 14px 16px;
  border: 0;
  border-radius: 8px;
  color: #17110a;
  background: var(--gold);
}

.detail-rail small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.article-bottom-link {
  position: relative;
  min-height: 104px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  margin-top: 48px;
  overflow: hidden;
  padding: 26px 30px 26px 34px;
  border: 1px solid rgba(201, 169, 97, .34);
  border-radius: 12px;
  color: #ead7ad;
  background:
    radial-gradient(circle at 92% 50%, rgba(201, 169, 97, .18), transparent 34%),
    linear-gradient(135deg, rgba(36, 28, 17, .96), rgba(12, 9, 6, .98));
  box-shadow: 0 18px 42px rgba(0, 0, 0, .22), inset 0 1px rgba(255, 244, 205, .06);
}

.article-bottom-link::before {
  content: "下一步";
  position: absolute;
  top: 18px;
  left: 34px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .18em;
}

.article-bottom-link::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #f1d58f, #9b6325);
}

.article-bottom-link span {
  padding-top: 22px;
  color: #f4e8c9;
  font: 800 20px/1.5 "Noto Serif SC", "Songti SC", serif;
}

.article-bottom-link a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-radius: 999px;
  color: #17110a;
  background: linear-gradient(180deg, #f0d48d, #c9a961);
  box-shadow: 0 12px 26px rgba(201, 169, 97, .18);
  font-weight: 900;
  white-space: nowrap;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--gold-soft);
  font-weight: 800;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 720px) 280px;
  gap: 44px;
  align-items: start;
}

@media (min-width: 761px) {
  .article-layout.article-detail-layout {
    grid-template-columns: minmax(0, 620px) 230px;
    gap: 50px;
  }
}

.article-main h1 {
  font-size: clamp(32px, 5vw, 48px);
}

.article-meta {
  margin: 16px 0 22px;
  color: var(--muted);
  font-size: 14px;
}

.article-meta span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin-right: 10px;
  padding: 0 16px;
  border: 1px solid rgba(201, 169, 97, .34);
  border-radius: 999px;
  color: var(--gold-soft);
  background: rgba(21, 18, 13, .72);
  font-weight: 800;
}

.article-main figure {
  width: min(320px, 100%);
  margin: 0 0 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.article-main figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.article-main figcaption {
  padding: 10px 14px;
  color: var(--muted);
  background: rgba(7, 5, 3, .92);
  font-size: 14px;
}

.article-main p {
  margin: 0 0 16px;
  font-size: 17px;
}

.note {
  margin-top: 24px;
  padding: 14px 16px;
  border: 1px solid rgba(201, 169, 97, .18);
  border-radius: 8px;
  color: #a99a78;
  background: rgba(201, 169, 97, .06);
  font-size: 14px;
}

.cta-band {
  margin-top: 30px;
  padding: 20px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(89, 61, 27, .28), rgba(13, 10, 7, .98));
}

.cta-band h2 {
  margin: 0 0 8px;
  font-size: 22px;
}

.cta-band p {
  margin-bottom: 16px;
  color: #aa9a78;
  font-size: 15px;
}

.article-cta,
.back-link {
  padding: 0 14px;
}

.side-panel {
  position: sticky;
  top: 98px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(15, 12, 8, .88);
}

.side-panel h2 {
  margin: 0 0 12px;
  font-size: 20px;
}

.side-panel a {
  display: block;
  padding: 10px 0;
  border-top: 1px solid rgba(201, 169, 97, .14);
  color: var(--gold-soft);
  font-weight: 800;
}

.site-footer {
  padding: 28px 0 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

@media (hover: hover) {
  .article-card,
  .nav-links a,
  .card-link,
  .article-cta,
  .article-bottom-link a {
    transition: border-color .18s ease, transform .18s ease, background .18s ease;
  }

  .article-card:hover {
    transform: translateY(-2px);
    border-color: var(--line-strong);
  }

  .card-link:hover,
  .article-cta:hover,
  .nav-links a:hover {
    border-color: var(--line-strong);
    background: rgba(201, 169, 97, .14);
  }

  .article-bottom-link a:hover {
    transform: translateY(-1px);
    background: linear-gradient(180deg, #f7df9e, #d5b56b);
  }
}

@media (max-width: 760px) {
  :root {
    --bg: #f7efe1;
    --bg-soft: #f3e6cf;
    --surface: #fffaf2;
    --surface-2: #efe0c3;
    --paper: #29231d;
    --text: #4e4438;
    --text-strong: #28231f;
    --muted: #786b5c;
    --gold: #9b6325;
    --gold-soft: #8a5a23;
    --jade: #527461;
    --rust: #9b4f35;
    --line: rgba(160, 111, 49, .20);
    --line-strong: rgba(143, 96, 34, .42);
    --shadow: 0 12px 28px rgba(127, 85, 39, .12);
  }

  body {
    background:
      linear-gradient(180deg, rgba(255, 250, 242, .98), rgba(247, 239, 225, 1) 380px),
      var(--bg);
  }

  .site-nav,
  .container {
    width: min(100% - 28px, var(--container));
  }

  .site-header {
    background: rgba(255, 250, 242, .94);
  }

  .site-nav {
    min-height: 72px;
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0 12px;
  }

  .brand {
    color: var(--text-strong);
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    gap: 7px;
    padding-bottom: 2px;
  }

  .nav-links a,
  .article-cta,
  .card-link,
  .back-link {
    flex: 0 0 auto;
    min-height: 38px;
    color: var(--gold-soft);
    background: rgba(255, 250, 242, .88);
  }

  .nav-links a {
    padding: 0 12px;
  }

  .hero {
    padding: 38px 0 32px;
  }

  .hero .container {
    padding-left: 0;
    border-left: 0;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 13px;
  }

  h1 {
    max-width: 360px;
    font-size: 31px;
    line-height: 1.22;
  }

  .hero p {
    max-width: 340px;
    margin-top: 16px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
  }

  .series {
    padding: 30px 0 44px;
  }

  .section-head {
    display: block;
    min-height: 0;
    margin-bottom: 14px;
    padding: 16px;
    background: var(--surface-2);
  }

  .section-head h1,
  .section-head h2 {
    font-size: 20px;
  }

  .section-head p {
    margin-top: 6px;
    color: #7f6b4c;
    font-size: 13px;
  }

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

  .article-card {
    display: block;
    min-height: 0;
    padding: 18px;
    background: var(--surface);
  }

  .article-card::before {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 42px;
    height: 42px;
    color: var(--gold);
    background: #f3e2c2;
    border-color: #dfc48d;
    font-size: 14px;
  }

  .article-card::after {
    top: auto;
    right: 18px;
    bottom: 0;
    width: 80px;
    height: 3px;
  }

  .card-body {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "meta"
      "title"
      "desc"
      "link";
    gap: 8px;
    padding-left: 56px;
  }

  .card-meta {
    gap: 8px;
    font-size: 12px;
  }

  .article-card h3 {
    font-size: 19px;
    line-height: 1.32;
  }

  .article-card p {
    margin-top: 6px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
  }

  .card-link {
    justify-self: start;
    min-width: 92px;
    margin-top: 4px;
    padding: 0 12px;
  }

  .article-shell {
    padding: 28px 0 44px;
  }

  .article-detail {
    padding: 0 0 42px;
  }

  .detail-hero {
    padding: 28px 0 38px;
    background: transparent;
  }

  .detail-hero::before,
  .article-detail-layout::before {
    display: none;
  }

  .detail-hero-grid {
    display: block;
  }

  .breadcrumb {
    margin-bottom: 16px;
  }

  .article-main h1 {
    font-size: 37px;
    line-height: 1.14;
  }

  .detail-subtitle {
    margin-top: 14px;
    color: var(--muted);
    font-size: 17px;
  }

  .article-meta {
    margin: 24px 0 0;
  }

  .article-meta span {
    min-height: 30px;
    margin-right: 8px;
    padding: 0 15px;
    color: #7a4e1d;
    background: #efe0c6;
    border-color: #dec398;
    font-size: 12px;
  }

  .article-orbit {
    width: min(272px, 100%);
    height: 116px;
    margin-top: 24px;
    background:
      radial-gradient(circle at 30% 50%, rgba(155, 99, 37, .18), transparent 34%),
      linear-gradient(135deg, #f4e6cf, #ead5af);
    border-color: #dec091;
    box-shadow: 0 14px 28px rgba(127, 85, 39, .12);
  }

  .article-orbit::before {
    left: 18px;
    top: 22px;
    width: 70px;
    height: 70px;
    border-color: rgba(155, 99, 37, .32);
    background:
      linear-gradient(rgba(155, 99, 37, .16), transparent 50%, rgba(155, 99, 37, .14)),
      conic-gradient(from 45deg, rgba(155, 99, 37, .06), rgba(155, 99, 37, .28), rgba(155, 99, 37, .06), rgba(155, 99, 37, .24), rgba(155, 99, 37, .06));
    box-shadow: inset 0 0 0 13px rgba(255, 250, 242, .64), inset 0 0 0 14px rgba(155, 99, 37, .20);
  }

  .article-orbit::after {
    top: 18px;
    right: 18px;
    bottom: 18px;
    width: 1px;
    background: linear-gradient(transparent, rgba(155, 99, 37, .36), transparent);
    box-shadow: -22px 0 0 rgba(155, 99, 37, .10), -64px 0 0 rgba(155, 99, 37, .08);
  }

  .article-orbit span {
    left: 104px;
    transform: translateY(-34%);
    color: #7a4b17;
    font-size: 24px;
    text-shadow: none;
  }

  .article-orbit span::before {
    top: -22px;
    color: rgba(82, 66, 45, .52);
    font-size: 11px;
  }

  .article-orbit i {
    width: 3px;
    height: 3px;
    background: rgba(122, 75, 23, .55);
  }

  .article-orbit i:nth-of-type(1) { left: 39px; top: 22px; }
  .article-orbit i:nth-of-type(2) { left: 67px; top: 30px; }
  .article-orbit i:nth-of-type(3) { left: 76px; top: 62px; }
  .article-orbit i:nth-of-type(4) { left: 56px; top: 86px; }
  .article-orbit i:nth-of-type(5) { left: 27px; top: 76px; }
  .article-orbit i:nth-of-type(6) { left: 24px; top: 45px; }

  .article-detail-layout {
    padding-top: 40px;
    gap: 34px;
  }

  .article-paper {
    padding: 28px 20px 30px;
    border-color: #ead8be;
    background: #fffbf4;
  }

  .article-paper .article-lead {
    font-size: 22px;
    line-height: 1.45;
  }

  .article-paper p {
    max-width: none;
    color: #5f4d38;
    font-size: 16px;
    line-height: 1.82;
  }

  .article-paper h2 {
    font-size: 23px;
  }

  .article-paper h2:not(:first-of-type) {
    margin-top: 30px;
  }

  .article-paper hr {
    margin: 30px 0 34px;
    background: #dfc197;
  }

  .article-paper blockquote {
    margin: 26px 0 30px;
    padding: 16px 18px;
    font-size: 16px;
  }

  .detail-rail {
    display: none;
  }

  .article-bottom-link {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 34px;
    padding: 48px 20px 22px;
    color: #fff3db;
    background:
      radial-gradient(circle at 100% 20%, rgba(155, 99, 37, .18), transparent 38%),
      #2a2118;
  }

  .article-bottom-link::before {
    top: 18px;
    left: 20px;
  }

  .article-bottom-link span {
    padding-top: 0;
    font-size: 18px;
  }

  .article-bottom-link a {
    width: 100%;
    min-height: 46px;
  }

  .article-main figure {
    width: min(280px, 100%);
    background: var(--surface);
  }

  .article-main figcaption {
    background: var(--surface);
  }

  .article-main p {
    font-size: 16px;
    line-height: 1.9;
  }

  .note,
  .cta-band,
  .side-panel {
    background: var(--surface);
  }

  .cta-band {
    background: linear-gradient(180deg, #fffaf2, #f2e4cb);
  }

  .side-panel {
    position: static;
  }
}

.article-orbit--series {
  height: auto;
  min-height: 204px;
  padding: 22px 18px;
  border-radius: 20px;
  border-color: rgba(201, 169, 97, .30);
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 236, 188, .18), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(190, 121, 42, .18), transparent 24%),
    linear-gradient(135deg, rgba(38, 27, 16, .99), rgba(16, 11, 7, .99));
  box-shadow: inset 0 1px 0 rgba(255, 244, 214, .10), 0 26px 56px rgba(0, 0, 0, .30);
}

.article-orbit--series::before,
.article-orbit--series::after,
.article-orbit--series > span,
.article-orbit--series > i {
  display: none;
}

.article-orbit__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 52%, rgba(240, 215, 155, .22), transparent 22%),
    radial-gradient(circle at 55% 50%, rgba(201, 169, 97, .10), transparent 28%),
    radial-gradient(circle at 86% 82%, rgba(168, 108, 40, .12), transparent 24%);
  pointer-events: none;
}

.article-orbit__glyph {
  position: absolute;
  left: 22px;
  top: 50%;
  width: 112px;
  height: 112px;
  transform: translateY(-50%);
}

.article-orbit__ring,
.article-orbit__core,
.article-orbit__star {
  position: absolute;
  border-radius: 50%;
}

.article-orbit__ring--outer { inset: 0; border: 1px solid rgba(240, 215, 155, .44); }
.article-orbit__ring--mid { inset: 16px; border: 1px solid rgba(240, 215, 155, .26); }
.article-orbit__ring--inner { inset: 31px; border: 1px solid rgba(240, 215, 155, .20); }

.article-orbit__core {
  inset: 26px;
  background:
    radial-gradient(circle at 40% 36%, rgba(255, 246, 218, .42), transparent 28%),
    conic-gradient(from 35deg, rgba(255, 240, 197, .20), rgba(201, 169, 97, .78), rgba(255, 240, 197, .16), rgba(158, 99, 37, .72), rgba(255, 240, 197, .20));
  box-shadow: inset 0 0 0 1px rgba(255, 241, 206, .18), 0 0 26px rgba(201, 169, 97, .14);
}

.article-orbit__core-label {
  position: absolute;
  inset: 26px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff0c6;
  font: 900 34px/1 "Noto Serif SC", "Songti SC", serif;
  letter-spacing: .02em;
  text-shadow: 0 8px 20px rgba(0, 0, 0, .22);
}

.article-orbit__star {
  width: 6px;
  height: 6px;
  background: rgba(250, 228, 174, .72);
  box-shadow: 0 0 12px rgba(240, 215, 155, .26);
}

.article-orbit__star--1 { left: 8px; top: 25px; }
.article-orbit__star--2 { left: 47px; top: 10px; }
.article-orbit__star--3 { right: 11px; top: 31px; }
.article-orbit__star--4 { right: 6px; bottom: 31px; }
.article-orbit__star--5 { left: 55px; bottom: 9px; }
.article-orbit__star--6 { left: 10px; bottom: 28px; }
.article-orbit__star--7 { left: 23px; top: 54px; width: 4px; height: 4px; opacity: .84; }

.article-orbit__copy {
  position: relative;
  z-index: 1;
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 128px;
  margin-right: 88px;
}

.article-orbit__eyebrow {
  margin: 0 0 9px;
  color: rgba(246, 234, 210, .62);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.article-orbit__title {
  margin: 0;
  color: #ffe1a0;
  font: 900 30px/1.02 "Noto Serif SC", "Songti SC", serif;
  letter-spacing: 0;
  text-shadow: 0 10px 18px rgba(0, 0, 0, .22);
}

.article-orbit__summary {
  margin: 13px 0 0;
  color: rgba(246, 234, 210, .74);
  font-size: 13px;
  line-height: 1.65;
}

.article-orbit__rail {
  position: absolute;
  top: 20px;
  right: 16px;
  bottom: 20px;
  z-index: 1;
  width: 72px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.article-orbit__serial {
  color: rgba(240, 215, 155, .72);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-align: right;
}

.article-orbit__rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240, 215, 155, .42), transparent);
}

.article-orbit__mini-list {
  display: grid;
  gap: 7px;
}

.article-orbit__mini {
  min-height: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1px;
  padding: 7px 9px;
  border: 1px solid rgba(240, 215, 155, .16);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 250, 239, .10), rgba(255, 250, 239, .04));
}

.article-orbit__mini span {
  color: rgba(246, 234, 210, .44);
  font-size: 9px;
  font-weight: 800;
}

.article-orbit__mini strong {
  color: #f4deb2;
  font-size: 14px;
  line-height: 1.1;
  font-weight: 900;
}

@media (max-width: 760px) {
  .article-orbit--series {
    width: 100%;
    min-height: 286px;
    margin-top: 26px;
    padding: 18px 16px 16px;
    border-radius: 24px;
    border-color: rgba(233, 201, 139, .28);
    background:
      linear-gradient(112deg, rgba(15, 10, 7, .96) 0%, rgba(15, 10, 7, .88) 40%, rgba(15, 10, 7, .42) 100%),
      var(--article-orbit-image, radial-gradient(circle at 78% 22%, rgba(201, 169, 97, .16), transparent 26%)),
      linear-gradient(135deg, rgba(39, 28, 18, .98), rgba(14, 10, 7, .98));
    background-position: center;
    background-size: cover;
    box-shadow: inset 0 1px 0 rgba(255, 244, 214, .10), 0 22px 46px rgba(0, 0, 0, .28);
  }

  .article-orbit__glow {
    background:
      radial-gradient(circle at 18% 78%, rgba(240, 215, 155, .18), transparent 24%),
      radial-gradient(circle at 78% 24%, rgba(255, 236, 188, .18), transparent 20%),
      linear-gradient(180deg, rgba(255, 255, 255, .02), transparent 42%);
  }

  .article-orbit__glyph {
    left: auto;
    right: 12px;
    top: 24px;
    width: 150px;
    height: 150px;
    transform: none;
    opacity: .98;
  }

  .article-orbit__ring--outer { border-color: rgba(240, 215, 155, .52); }
  .article-orbit__ring--mid,
  .article-orbit__ring--inner { border-color: rgba(240, 215, 155, .24); }
  .article-orbit__star {
    background: rgba(255, 236, 188, .84);
    box-shadow: 0 0 12px rgba(240, 215, 155, .26);
    opacity: .92;
  }

  .article-orbit__copy {
    min-height: 0;
    max-width: 172px;
    margin-left: 0;
    margin-right: 154px;
    padding-top: 4px;
    justify-content: flex-start;
  }

  .article-orbit__eyebrow {
    margin-bottom: 10px;
    color: rgba(248, 229, 192, .76);
    font-size: 11px;
  }

  .article-orbit__title {
    color: #fff2cc;
    font-size: 34px;
    text-shadow: 0 12px 24px rgba(0, 0, 0, .24);
  }

  .article-orbit__summary {
    display: block;
    margin-top: 10px;
    color: rgba(248, 229, 192, .78);
    font-size: 13px;
    line-height: 1.55;
  }

  .article-orbit__rail {
    left: 16px;
    right: 16px;
    bottom: 16px;
    top: auto;
    width: auto;
    gap: 10px;
  }

  .article-orbit__serial {
    display: none;
  }

  .article-orbit__rule {
    background: linear-gradient(90deg, rgba(248, 229, 192, .24), rgba(248, 229, 192, .04));
  }

  .article-orbit__mini-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .article-orbit__mini {
    min-height: 68px;
    padding: 10px 12px;
    border-color: rgba(248, 229, 192, .18);
    background: linear-gradient(180deg, rgba(255, 250, 239, .16), rgba(255, 250, 239, .08));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
  }

  .article-orbit__mini span {
    color: rgba(248, 229, 192, .58);
    font-size: 10px;
  }

  .article-orbit__mini strong {
    color: #fff6dd;
    font-size: 16px;
  }

  .article-orbit__core {
    inset: 32px;
    opacity: .92;
  }

  .article-orbit__core-label {
    inset: 32px;
    color: #fff4d6;
    font-size: 38px;
  }
}

@media (max-width: 430px) {
  .article-orbit--series {
    min-height: 272px;
  }

  .article-orbit__glyph {
    right: 10px;
    width: 138px;
    height: 138px;
  }

  .article-orbit__copy {
    max-width: 156px;
    margin-right: 142px;
  }

  .article-orbit__title {
    font-size: 31px;
  }

  .article-orbit__summary {
    font-size: 12px;
  }

  .article-orbit__core-label {
    font-size: 34px;
  }
}

.article-orbit--series span {
  position: static;
  left: auto;
  top: auto;
  transform: none;
  color: inherit;
  font: inherit;
  white-space: normal;
  text-shadow: none;
}

.article-orbit--series span::before {
  display: none;
}

.article-orbit--series .article-orbit__ring,
.article-orbit--series .article-orbit__core,
.article-orbit--series .article-orbit__star {
  position: absolute;
}

.article-orbit--series .article-orbit__serial {
  color: rgba(240, 215, 155, .72);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-align: right;
}

.article-orbit--series .article-orbit__mini span {
  color: rgba(246, 234, 210, .44);
  font-size: 9px;
  font-weight: 800;
}

@media (max-width: 760px) {
  .article-orbit--series .article-orbit__serial {
    display: none;
  }

  .article-orbit--series .article-orbit__mini span {
    color: rgba(248, 229, 192, .58);
  }
}

.article-orbit--series .article-orbit__ring--outer {
  border-color: rgba(155, 99, 37, .34);
  box-shadow: inset 0 0 0 1px rgba(255, 246, 220, .20);
}

.article-orbit--series .article-orbit__ring--mid {
  border-color: rgba(155, 99, 37, .22);
}

.article-orbit--series .article-orbit__ring--inner {
  border-color: rgba(155, 99, 37, .18);
}

.article-orbit--series .article-orbit__core {
  background:
    radial-gradient(circle at 40% 36%, rgba(255, 252, 232, .58), transparent 30%),
    conic-gradient(from 35deg, rgba(255, 240, 197, .30), rgba(201, 169, 97, .82), rgba(255, 240, 197, .20), rgba(158, 99, 37, .68), rgba(255, 240, 197, .30));
}

@media (max-width: 760px) {
  .article-orbit--series .article-orbit__glyph {
    opacity: .98;
  }
}

.article-orbit--series .article-orbit__glyph::before,
.article-orbit--series .article-orbit__glyph::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.article-orbit--series .article-orbit__glyph::before {
  inset: 0;
  border: 1px solid rgba(155, 99, 37, .30);
  background:
    radial-gradient(circle at 50% 50%, rgba(205, 160, 83, .38), transparent 33%),
    conic-gradient(from 30deg, rgba(155, 99, 37, .10), rgba(155, 99, 37, .28), rgba(155, 99, 37, .08), rgba(155, 99, 37, .24), rgba(155, 99, 37, .10));
  box-shadow: inset 0 0 0 18px rgba(255, 250, 242, .28);
}

.article-orbit--series .article-orbit__glyph::after {
  inset: 23px;
  border: 1px solid rgba(155, 99, 37, .18);
}

.article-orbit--series {
  min-height: 0;
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
}

.article-orbit--series .article-orbit__poster {
  position: relative;
  min-height: 204px;
  padding: 22px 18px;
  border: 1px solid rgba(201, 169, 97, .30);
  border-radius: 20px;
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 236, 188, .18), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(190, 121, 42, .18), transparent 24%),
    linear-gradient(135deg, rgba(38, 27, 16, .99), rgba(16, 11, 7, .99));
  box-shadow: inset 0 1px 0 rgba(255, 244, 214, .10), 0 26px 56px rgba(0, 0, 0, .30);
  overflow: hidden;
}

.article-orbit--series[data-poster-image="true"] .article-orbit__poster {
  background:
    linear-gradient(112deg, rgba(15, 10, 7, .96) 0%, rgba(15, 10, 7, .88) 40%, rgba(15, 10, 7, .42) 100%),
    var(--article-orbit-image),
    linear-gradient(135deg, rgba(39, 28, 18, .98), rgba(14, 10, 7, .98));
  background-position: center;
  background-size: cover;
}

.article-orbit__metrics {
  margin: 15px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
}

.article-orbit__metrics span {
  position: static;
  display: inline-flex;
  align-items: center;
  color: rgba(246, 234, 210, .82);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.article-orbit__metrics span + span::before {
  content: "•";
  margin-right: 10px;
  color: rgba(240, 215, 155, .58);
}

.article-orbit__related {
  display: none;
}

.article-orbit__related-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.article-orbit__related-head strong {
  color: #7b5929;
  font-size: 19px;
  line-height: 1.2;
}

.article-orbit__related-head a {
  color: #8d7149;
  font-size: 14px;
  font-weight: 700;
}

.article-orbit__related-note {
  margin: 14px 0 0;
  color: rgba(125, 97, 58, .68);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.article-orbit__mini {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(14, 10, 7, .18), rgba(14, 10, 7, .46)),
    var(--article-mini-image, linear-gradient(180deg, rgba(255, 250, 239, .10), rgba(255, 250, 239, .04)));
  background-position: center;
  background-size: cover;
}

.article-orbit__mini::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 7, 5, .10), rgba(10, 7, 5, .42)),
    radial-gradient(circle at 75% 28%, rgba(255, 232, 180, .16), transparent 24%);
  pointer-events: none;
}

.article-orbit__mini span,
.article-orbit__mini strong {
  position: relative;
  z-index: 1;
}

@media (max-width: 760px) {
  .article-orbit--series {
    width: 100%;
    margin-top: 26px;
  }

  .article-orbit--series .article-orbit__poster {
    min-height: 332px;
    padding: 22px 18px 20px;
    border-radius: 28px;
    box-shadow: inset 0 1px 0 rgba(255, 244, 214, .10), 0 22px 46px rgba(0, 0, 0, .28);
  }

  .article-orbit__copy {
    max-width: 182px;
    margin-right: 164px;
  }

  .article-orbit__title {
    font-size: 36px;
  }

  .article-orbit__summary {
    max-width: 190px;
  }

  .article-orbit__metrics {
    margin-top: 18px;
    max-width: 208px;
    gap: 7px 0;
  }

  .article-orbit__metrics span {
    font-size: 13px;
  }

  .article-orbit__glyph {
    right: 10px;
    top: 26px;
    width: 164px;
    height: 164px;
  }

  .article-orbit__related {
    display: block;
    margin-top: 18px;
  }

  .article-orbit__rail {
    position: static;
    width: auto;
    gap: 14px;
  }

  .article-orbit__serial,
  .article-orbit__rule {
    display: none;
  }

  .article-orbit__mini-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .article-orbit__mini {
    min-height: 118px;
    justify-content: flex-end;
    gap: 4px;
    padding: 12px 12px 13px;
    border-radius: 16px;
    border-color: rgba(201, 169, 97, .18);
    box-shadow: 0 14px 32px rgba(92, 63, 32, .10);
  }

  .article-orbit__mini span {
    color: rgba(255, 240, 208, .72);
    font-size: 10px;
  }

  .article-orbit__mini strong {
    color: #fff2cf;
    font-size: 17px;
  }

  .article-orbit__related-note {
    margin-top: 10px;
    color: rgba(125, 97, 58, .72);
    font-size: 12px;
  }
}

@media (max-width: 430px) {
  .article-orbit--series .article-orbit__poster {
    min-height: 318px;
    padding: 20px 16px 18px;
  }

  .article-orbit__copy {
    max-width: 164px;
    margin-right: 148px;
  }

  .article-orbit__title {
    font-size: 32px;
  }

  .article-orbit__summary {
    max-width: 172px;
    font-size: 12px;
  }

  .article-orbit__metrics {
    max-width: 184px;
  }

  .article-orbit__glyph {
    width: 146px;
    height: 146px;
  }

  .article-orbit__mini {
    min-height: 108px;
    padding: 10px 10px 12px;
  }

  .article-orbit__mini strong {
    font-size: 15px;
  }
}
