:root {
  color-scheme: light;
  --ink: #102a46;
  --muted: #64748b;
  --subtle: #7b8796;
  --page: #f5f1ea;
  --paper: #fffdf8;
  --card: #ffffff;
  --soft: #fbf7ef;
  --line: #e4dccf;
  --brand: #9b1d31;
  --brand-dark: #681527;
  --accent: #116466;
  --accent-soft: #edf8f6;
  --blue-soft: #edf5ff;
  --gold-soft: #fff4df;
  --shadow: 0 22px 55px rgba(16, 42, 70, 0.08);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.9), rgba(245, 241, 234, 0.96) 420px),
    var(--page);
  line-height: 1.78;
}

body::before {
  content: "";
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: 5px;
  background: var(--brand);
}

.reading-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  height: 5px;
  pointer-events: none;
}

.reading-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 80ms linear;
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(17, 100, 102, 0.28);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(228, 220, 207, 0.9);
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(14px);
}

.nav,
.hero,
.layout,
.article-shell,
.footer-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  position: relative;
  min-height: 44px;
  display: grid;
  gap: 2px;
  padding-left: 56px;
  color: var(--ink);
}

.brand::before {
  content: "刘";
  position: absolute;
  left: 0;
  top: 1px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(155, 29, 49, 0.16);
}

.brand strong {
  font-size: 18px;
  line-height: 1.25;
}

.brand span,
.meta,
.card p,
.side-panel p,
.side-panel li,
.article-visual figcaption,
.toc a,
.footer-inner {
  color: var(--muted);
}

.brand:hover {
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  font-size: 14px;
}

.nav-links > a,
.nav-topic-menu summary {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--brand);
  padding: 0 14px;
  font-weight: 800;
}

.nav-links > a:hover,
.nav-topic-menu summary:hover {
  border-color: rgba(155, 29, 49, 0.28);
  background: #fff8f9;
  text-decoration: none;
}

.nav-topic-menu {
  position: relative;
}

.nav-topic-menu summary {
  list-style: none;
  cursor: pointer;
}

.nav-topic-menu summary::-webkit-details-marker {
  display: none;
}

.nav-topic-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  width: 250px;
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.nav-topic-panel a {
  display: block;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 800;
}

.nav-topic-panel a:hover {
  border-color: rgba(17, 100, 102, 0.28);
  background: var(--accent-soft);
  color: var(--accent);
  text-decoration: none;
}

.hero {
  margin-top: 34px;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 42px;
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-weight: 800;
}

h1 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 46px;
  line-height: 1.14;
  letter-spacing: 0;
}

.hero p {
  max-width: 760px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 18px;
}

.visual-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
  margin-top: 28px;
}

.visual-strip img,
.article-visual img {
  width: 100%;
  display: block;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #172338;
}

.visual-strip img {
  aspect-ratio: 16 / 7;
}

.article-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #172338;
  margin: 28px 0 30px;
}

.article-visual img {
  border: 0;
  border-radius: 0;
  aspect-ratio: 16 / 8;
  filter: saturate(0.92) contrast(0.95);
  opacity: 0.92;
}

.article-visual figcaption {
  margin: 0;
  border-top: 1px solid var(--line);
  background: var(--paper);
  padding: 10px 13px;
  font-size: 13px;
}

.article-visual::after {
  content: "跨境中国法律事务";
  position: absolute;
  left: 16px;
  top: 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(16, 42, 70, 0.72);
  color: #fff;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 800;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.button-secondary {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 10px 18px;
  font-weight: 800;
  line-height: 1.2;
}

.button {
  background: var(--brand);
  color: #fff;
}

.button:hover {
  background: var(--brand-dark);
  text-decoration: none;
}

.button-secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.button-secondary:hover {
  border-color: rgba(16, 42, 70, 0.22);
  background: var(--soft);
  text-decoration: none;
}

.layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 28px;
  padding-bottom: 64px;
  align-items: start;
}

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

.card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 24px;
  box-shadow: 0 12px 28px rgba(16, 42, 70, 0.05);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: rgba(17, 100, 102, 0.72);
}

.card:hover {
  border-color: rgba(16, 42, 70, 0.18);
  transform: translateY(-1px);
  transition: border-color 160ms ease, transform 160ms ease;
}

.card h2,
.card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  line-height: 1.32;
  letter-spacing: 0;
}

.card h2 a {
  color: var(--ink);
}

.card h2 a:hover {
  color: var(--brand);
  text-decoration: none;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 12px;
  font-size: 13px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  padding: 2px 11px;
  font-weight: 800;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 14px;
  font-weight: 800;
}

.card-actions a + a {
  color: var(--accent);
}

.side-panel {
  position: sticky;
  top: 108px;
  align-self: start;
  border: 0;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  padding: 24px;
  box-shadow: var(--shadow);
}

.side-panel h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 20px;
}

.side-panel p,
.side-panel li {
  color: #dbe5f2;
}

.side-panel .button {
  width: 100%;
  margin: 4px 0 10px;
  background: #fff;
  color: var(--brand);
}

.side-panel ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 790px) 300px;
  gap: 34px;
  align-items: start;
  padding-top: 34px;
  padding-bottom: 64px;
}

.article-main {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 42px;
  box-shadow: var(--shadow);
}

.article-main::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), rgba(17, 100, 102, 0.74));
}

.article-main h1 {
  margin-bottom: 16px;
  font-size: 42px;
  line-height: 1.15;
}

.reading-meta {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: var(--muted);
  padding: 0 15px;
  font-size: 13px;
  font-weight: 800;
}

.article-brief {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 28px;
}

.article-brief article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 4px 12px;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 15px;
}

.article-brief strong {
  grid-row: 1 / span 2;
  color: var(--brand);
  font-size: 18px;
  line-height: 1.2;
}

.article-brief span {
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}

.article-brief small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.article-main h2 {
  position: relative;
  margin-top: 40px;
  margin-bottom: 12px;
  padding-top: 2px;
  padding-left: 14px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.35;
}

.article-main h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  bottom: 7px;
  width: 4px;
  border-radius: 999px;
  background: var(--brand);
}

.article-main h3 {
  margin: 28px 0 8px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.42;
}

.article-main p,
.article-main li {
  color: #303b49;
  font-size: 16px;
}

.article-main p {
  margin: 0 0 18px;
}

.article-main ul,
.article-main ol {
  margin-top: 12px;
  margin-bottom: 22px;
  padding-left: 24px;
}

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

.article-main li::marker {
  color: var(--brand);
  font-weight: 800;
}

.article-visual + p {
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand);
  border-radius: 8px;
  background: #fff;
  padding: 18px 20px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
}

.notice {
  border: 1px solid #bddfd9;
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  background: var(--accent-soft);
  padding: 17px 18px;
  margin: 26px 0;
  color: var(--ink);
  font-weight: 700;
}

.quick-judge {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, auto);
  gap: 20px;
  align-items: center;
  border: 1px solid #cfe3e0;
  border-radius: 8px;
  background: linear-gradient(180deg, #fbfefe 0%, #f4fbfa 100%);
  padding: 22px;
  margin: 28px 0 34px;
}

.quick-judge h2 {
  margin-top: 0;
}

.quick-judge p {
  margin-bottom: 0;
}

.quick-actions {
  display: grid;
  gap: 10px;
}

.quick-actions .button,
.quick-actions .button-secondary {
  width: 100%;
}

.inline-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 16px;
  align-items: center;
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand);
  border-radius: 8px;
  background: #fff;
  padding: 17px 18px;
  margin: 24px 0 30px;
}

.inline-cta strong,
.inline-cta span {
  grid-column: 1;
}

.inline-cta span {
  color: var(--muted);
}

.inline-cta a {
  grid-column: 2;
  grid-row: 1 / span 2;
  justify-self: end;
  font-weight: 800;
  color: var(--accent);
}

.related-box {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  padding: 20px;
  margin: 28px 0 32px;
}

.related-box h2 {
  margin: 0 0 2px;
  font-size: 20px;
}

.related-box a {
  display: block;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 11px 13px;
  color: var(--ink);
  font-weight: 800;
}

.related-box a:hover {
  border-color: rgba(17, 100, 102, 0.28);
  background: var(--accent-soft);
  color: var(--accent);
  text-decoration: none;
}

.cta-panel {
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(155, 29, 49, 0.24), rgba(16, 42, 70, 0) 45%),
    var(--ink);
  color: #fff;
  padding: 26px;
  margin-top: 34px;
}

.cta-panel h2 {
  margin-top: 0;
  color: #fff;
}

.cta-panel p {
  color: #d7dde5;
}

.cta-panel .button {
  background: #fff;
  color: var(--brand);
}

.cta-panel .button-secondary {
  border-color: rgba(255, 255, 255, 0.32);
  background: transparent;
  color: #fff;
}

.toc {
  position: sticky;
  top: 108px;
  align-self: start;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 20px;
  box-shadow: 0 14px 32px rgba(16, 42, 70, 0.05);
}

.toc::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--brand);
}

.toc h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 17px;
}

.toc a {
  display: block;
  border-left: 3px solid transparent;
  border-radius: 8px;
  margin: 4px 0;
  padding: 7px 8px 7px 11px;
  font-size: 14px;
}

.toc a:hover,
.toc a.is-active {
  border-left-color: var(--brand);
  background: var(--blue-soft);
  color: var(--brand);
  text-decoration: none;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.78);
}

.footer-inner {
  padding-top: 28px;
  padding-bottom: 28px;
  font-size: 14px;
}

.mobile-action-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: max(12px, env(safe-area-inset-bottom));
  z-index: 30;
  display: flex;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.96);
  padding: 8px;
  box-shadow: 0 18px 38px rgba(16, 42, 70, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 160ms ease, transform 160ms ease;
  backdrop-filter: blur(12px);
}

.mobile-action-bar.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-action-bar a {
  flex: 1 1 0;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 0 12px;
  font-size: 14px;
  font-weight: 800;
}

.mobile-action-bar a:first-child {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}

.mobile-action-bar a:hover {
  text-decoration: none;
}

@media (min-width: 861px) {
  .mobile-action-bar {
    display: none;
  }
}

@media (min-width: 981px) {
  .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-grid .card:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 980px) {
  .layout,
  .article-shell {
    grid-template-columns: 1fr;
  }

  .side-panel,
  .toc {
    position: static;
  }

  .toc {
    display: none;
  }
}

@media (max-width: 860px) {
  body {
    padding-bottom: 78px;
  }

  .site-header {
    position: static;
  }

  .nav,
  .hero,
  .layout,
  .article-shell,
  .footer-inner {
    width: min(100% - 28px, var(--max));
  }

  .nav {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .nav-topic-panel {
    left: 0;
    right: auto;
  }

  .hero,
  .article-main {
    padding: 24px;
  }

  .hero {
    margin-top: 20px;
  }

  h1,
  .article-main h1 {
    font-size: 30px;
    line-height: 1.18;
  }

  .hero p {
    font-size: 16px;
  }

  .visual-strip,
  .quick-judge,
  .inline-cta {
    grid-template-columns: 1fr;
  }

  .quick-actions {
    width: 100%;
  }

  .inline-cta a {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }
}

@media (max-width: 520px) {
  body {
    line-height: 1.72;
  }

  .brand {
    min-height: 42px;
    padding-left: 50px;
  }

  .brand::before {
    width: 38px;
    height: 38px;
  }

  .nav-links > a,
  .nav-topic-menu summary {
    min-height: 32px;
    padding: 0 12px;
    font-size: 13px;
  }

  .article-shell {
    padding-top: 22px;
  }

  .article-main {
    padding: 20px;
  }

  .meta {
    gap: 7px;
  }

  .reading-meta {
    width: 100%;
    min-height: 38px;
    margin-top: 2px;
    font-size: 12px;
  }

  .article-brief {
    grid-template-columns: 1fr;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
  }

  .article-brief article {
    grid-template-columns: 22px minmax(0, 1fr);
    border: 0;
    border-radius: 0;
    padding: 13px 16px;
  }

  .article-brief article + article {
    border-top: 1px solid var(--line);
  }

  .article-brief small {
    display: none;
  }

  .article-visual img {
    aspect-ratio: 16 / 9;
  }

  .article-main h2 {
    margin-top: 34px;
    font-size: 22px;
  }

  .article-visual::after {
    left: 12px;
    top: 12px;
  }

  .article-visual + p {
    padding: 16px;
    font-size: 17px;
  }

  .button,
  .button-secondary {
    width: 100%;
  }

  .quick-judge,
  .notice,
  .inline-cta,
  .related-box,
  .cta-panel,
  .card,
  .side-panel {
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reading-progress span,
  .card:hover,
  .mobile-action-bar {
    transition: none;
  }
}

body.articles-index {
  --ink: #0e1a2b;
  --muted: #64748b;
  --page: #f7f9fb;
  --paper: #ffffff;
  --line: #d5dde8;
  --brand: #921525;
  --brand-dark: #51101a;
  --accent: #126462;
  --max: 1120px;
  background: var(--page);
  line-height: 1.58;
}

body.articles-index::before,
.articles-index .reading-progress {
  display: none;
}

.articles-index .site-header {
  border-bottom-color: var(--line);
  background: #fff;
  backdrop-filter: none;
}

.articles-index .nav {
  min-height: 78px;
}

.articles-index .brand {
  min-height: 34px;
  padding-left: 44px;
}

.articles-index .brand::before {
  top: 0;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: var(--brand);
  box-shadow: none;
}

.articles-index .brand strong {
  font-size: 18px;
}

.articles-index .brand span {
  font-size: 13px;
}

.articles-index .nav-links {
  gap: 38px;
  font-size: 15px;
}

.articles-index .nav-links > a,
.articles-index .nav-topic-menu summary {
  min-height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #2c3a4f;
  padding: 0;
  font-weight: 800;
}

.articles-index .nav-links > a[aria-current="page"],
.articles-index .nav-links > a:hover,
.articles-index .nav-topic-menu summary:hover {
  background: transparent;
  color: var(--brand);
  text-decoration: none;
}

.articles-index .nav-topic-panel {
  border-color: var(--line);
  background: #fff;
  box-shadow: 0 18px 38px rgba(14, 26, 43, 0.1);
}

.articles-index .articles-hero {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 740px) 330px;
  gap: 50px;
  align-items: center;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  box-shadow: none;
  padding: 52px max(24px, calc((100% - var(--max)) / 2)) 40px;
}

.articles-index .eyebrow {
  margin-bottom: 16px;
  color: var(--brand);
  font-size: 15px;
}

.articles-index h1 {
  margin-bottom: 16px;
  font-size: 40px;
  line-height: 1.14;
}

.articles-index .articles-hero p {
  max-width: 740px;
  margin-bottom: 0;
  color: #2c3a4f;
  font-size: 17px;
}

.articles-index .articles-hero .hero-note {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.articles-index .topic-card {
  display: grid;
  gap: 9px;
  min-height: 150px;
  align-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fcfdfe;
  color: var(--ink);
  padding: 28px 30px;
}

.articles-index .topic-card:hover {
  border-color: rgba(146, 21, 37, 0.3);
  text-decoration: none;
}

.articles-index .topic-card span {
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
}

.articles-index .topic-card strong {
  color: var(--brand-dark);
  font-size: 22px;
  line-height: 1.25;
}

.articles-index .topic-card em {
  color: var(--accent);
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
}

.articles-index .articles-layout {
  display: grid;
  grid-template-columns: minmax(0, 740px) 340px;
  gap: 56px 40px;
  align-items: start;
  padding-top: 56px;
  padding-bottom: 78px;
}

.articles-index .content-column {
  display: contents;
}

.articles-index .featured-section {
  grid-column: 1;
  grid-row: 1;
}

.articles-index .topic-browser {
  grid-column: 2;
  grid-row: 1;
  position: static;
}

.articles-index .all-articles,
.articles-index .article-cta {
  grid-column: 1 / -1;
}

.articles-index .all-articles {
  grid-row: 2;
}

.articles-index .article-cta {
  grid-row: 3;
}

.articles-index .featured-section h2,
.articles-index .all-articles h2 {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.2;
}

.articles-index .article-list {
  display: grid;
  gap: 20px;
}

.articles-index .card {
  overflow: visible;
  border-color: var(--line);
  border-radius: 6px;
  background: #fff;
  box-shadow: none;
}

.articles-index .card::before {
  display: none;
}

.articles-index .card:hover {
  border-color: rgba(14, 26, 43, 0.18);
  transform: none;
}

.articles-index .featured-card {
  min-height: 188px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-content: center;
  gap: 12px 20px;
  padding: 28px 30px 24px;
}

.articles-index .meta {
  gap: 7px;
  margin: 0;
  color: var(--brand);
  font-size: 14px;
  font-weight: 800;
}

.articles-index .meta span + span::before {
  content: "·";
  margin-right: 7px;
}

.articles-index .featured-card h3,
.articles-index .article-row h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.25;
}

.articles-index .featured-card h3 {
  grid-column: 1 / -1;
  font-size: 28px;
}

.articles-index .featured-card h3 a,
.articles-index .article-row h3 a {
  color: var(--ink);
}

.articles-index .featured-card h3 a:hover,
.articles-index .article-row h3 a:hover {
  color: var(--brand);
  text-decoration: none;
}

.articles-index .featured-card p {
  grid-column: 1;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.articles-index .read-link {
  color: var(--brand);
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

.articles-index .read-link:hover {
  color: var(--brand-dark);
  text-decoration: none;
}

.articles-index .featured-card .read-link {
  grid-column: 2;
  align-self: end;
}

.articles-index .article-row {
  min-height: 126px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 140px 76px;
  gap: 8px 28px;
  align-items: center;
  padding: 22px 30px;
}

.articles-index .article-row .meta,
.articles-index .article-row h3,
.articles-index .article-row p {
  grid-column: 1;
}

.articles-index .article-row h3 {
  font-size: 20px;
}

.articles-index .article-row p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.articles-index .article-row:nth-child(n + 4) .meta {
  color: var(--accent);
}

.articles-index .article-type {
  grid-column: 2;
  grid-row: 1 / span 3;
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
}

.articles-index .article-row .read-link {
  grid-column: 3;
  grid-row: 1 / span 3;
  justify-self: end;
}

.articles-index .topic-browser {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  padding: 28px 30px;
  box-shadow: none;
}

.articles-index .topic-browser h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 20px;
}

.articles-index .topic-browser nav {
  display: grid;
}

.articles-index .topic-browser a {
  border-bottom: 1px solid var(--line);
  color: #2c3a4f;
  padding: 13px 0;
  font-size: 15px;
  font-weight: 700;
}

.articles-index .topic-browser a:hover {
  color: var(--brand);
  text-decoration: none;
}

.articles-index .article-cta {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  border-radius: 6px;
  background: var(--brand-dark);
  color: #fff;
  padding: 28px 30px;
}

.articles-index .article-cta h2 {
  margin: 0;
  color: #fff;
  font-size: 22px;
  line-height: 1.2;
}

.articles-index .article-cta p {
  margin: 0;
  color: #ede0e3;
  font-size: 15px;
}

.articles-index .article-cta a {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

.articles-index .article-cta a:hover {
  text-decoration: none;
}

.articles-index .site-footer {
  border-top-color: var(--line);
  background: #fff;
}

@media (max-width: 980px) {
  .articles-index .articles-hero,
  .articles-index .articles-layout {
    grid-template-columns: 1fr;
  }

  .articles-index .featured-section {
    grid-row: auto;
    order: 1;
  }

  .articles-index .topic-browser {
    grid-column: 1;
    grid-row: auto;
    order: 2;
    position: static;
  }

  .articles-index .all-articles {
    grid-row: auto;
    order: 3;
  }

  .articles-index .article-cta {
    grid-row: auto;
    order: 4;
  }
}

@media (max-width: 860px) {
  body.articles-index {
    padding-bottom: 0;
  }

  .articles-index .mobile-action-bar {
    display: none;
  }

  .articles-index .nav {
    min-height: auto;
  }

  .articles-index .nav-links {
    gap: 18px;
  }

  .articles-index .articles-hero {
    padding-top: 34px;
    padding-bottom: 32px;
  }

  .articles-index h1 {
    font-size: 32px;
  }

  .articles-index .articles-layout {
    gap: 34px;
    padding-top: 34px;
    padding-bottom: 52px;
  }

  .articles-index .featured-card,
  .articles-index .article-row,
  .articles-index .article-cta {
    grid-template-columns: 1fr;
  }

  .articles-index .featured-card .read-link,
  .articles-index .article-row .meta,
  .articles-index .article-row h3,
  .articles-index .article-row p,
  .articles-index .article-row .article-type,
  .articles-index .article-row .read-link {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }

  .articles-index .featured-card h3 {
    font-size: 24px;
  }

  .articles-index .featured-card p {
    margin-top: 16px;
  }

  .articles-index .article-type {
    margin-top: 4px;
  }

  .articles-index .article-cta {
    gap: 12px;
  }
}

@media (max-width: 520px) {
  .articles-index .articles-hero,
  .articles-index .topic-card,
  .articles-index .featured-card,
  .articles-index .article-row,
  .articles-index .topic-browser,
  .articles-index .article-cta {
    padding: 20px;
  }

  .articles-index .articles-hero {
    padding-left: 14px;
    padding-right: 14px;
  }

  .articles-index h1 {
    font-size: 28px;
  }

  .articles-index .articles-hero p {
    font-size: 16px;
  }

  .articles-index .topic-card strong {
    font-size: 20px;
  }

  .articles-index .featured-section h2,
  .articles-index .all-articles h2 {
    font-size: 24px;
  }

  .articles-index .article-row h3 {
    font-size: 18px;
  }
}

body.article-detail {
  --ink: #0e1a2b;
  --muted: #64748b;
  --page: #f7f9fb;
  --paper: #ffffff;
  --line: #d5dde8;
  --brand: #921525;
  --brand-dark: #51101a;
  --accent: #126462;
  --accent-soft: #eaf9f5;
  --max: 1120px;
  background: var(--page);
  color: var(--ink);
  line-height: 1.68;
}

body.article-detail::before,
.article-detail .reading-progress,
.article-detail .mobile-action-bar {
  display: none !important;
}

.article-detail .site-header {
  border-bottom: 1px solid var(--line);
  background: #fff;
  backdrop-filter: none;
}

.article-detail .nav {
  min-height: 78px;
}

.article-detail .brand {
  min-height: 34px;
  padding-left: 44px;
}

.article-detail .brand::before {
  top: 0;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: var(--brand);
  box-shadow: none;
}

.article-detail .brand strong {
  color: var(--ink);
  font-size: 18px;
}

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

.article-detail .nav-links {
  gap: 38px;
  font-size: 15px;
}

.article-detail .nav-links > a,
.article-detail .nav-topic-menu summary {
  min-height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #2c3a4f;
  padding: 0;
  font-weight: 800;
}

.article-detail .nav-links > a[aria-current="page"],
.article-detail .nav-links > a:hover {
  color: var(--brand);
  text-decoration: none;
}

.article-detail .article-hero {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.article-detail .article-hero-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 780px) 300px;
  gap: 50px;
  align-items: start;
  padding: 48px 0 34px;
}

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

.article-detail .eyebrow {
  margin: 0 0 18px;
  color: var(--brand);
  font-size: 14px;
  font-weight: 800;
}

.article-detail h1 {
  max-width: 780px;
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 42px;
  line-height: 1.16;
}

.article-detail .article-lead {
  max-width: 780px;
  margin: 0 0 14px;
  color: #2c3a4f;
  font-size: 17px;
  line-height: 1.72;
}

.article-detail .reading-meta {
  display: block;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  padding: 0;
  font-size: 14px;
  font-weight: 700;
}

.article-detail .article-key-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fcfdfe;
  padding: 28px 30px;
}

.article-detail .article-key-card h2,
.article-detail .quick-check h2,
.article-detail .toc > h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.3;
}

.article-detail .article-key-card p {
  margin: 0;
  color: #2c3a4f;
  font-size: 15px;
  line-height: 1.62;
}

.article-detail .article-shell {
  width: min(var(--max), calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(0, 760px) 320px;
  gap: 50px;
  align-items: start;
  padding-top: 74px;
  padding-bottom: 56px;
}

.article-detail .article-main {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.article-detail .article-main::before,
.article-detail .article-main h2::before {
  display: none;
}

.article-detail .article-main h2 {
  margin: 54px 0 18px;
  padding: 0;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.28;
}

.article-detail .article-main h3 {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.35;
}

.article-detail .article-main p,
.article-detail .article-main li {
  color: #2c3a4f;
  font-size: 16px;
  line-height: 1.75;
}

.article-detail .article-main p {
  margin: 0 0 18px;
}

.article-detail .answer-card {
  border: 1px solid #bddfd9;
  border-radius: 6px;
  background: var(--accent-soft);
  padding: 26px 28px;
}

.article-detail .answer-card h2 {
  margin-top: 0;
  font-size: 21px;
}

.article-detail .answer-card p,
.article-detail .copy-format p {
  margin-bottom: 0;
}

.article-detail .reading-path h2 {
  margin-top: 54px;
  font-size: 24px;
}

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

.article-detail .path-grid article {
  min-height: 120px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px 14px;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  padding: 22px;
}

.article-detail .path-grid span {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: var(--brand);
  transform: translateY(6px);
}

.article-detail .path-grid article:nth-child(2) span {
  background: var(--accent);
}

.article-detail .path-grid p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.article-detail .copy-format,
.article-detail .avoid-card,
.article-detail .faq-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.article-detail .copy-format {
  padding: 24px 28px;
  margin-top: 50px;
}

.article-detail .copy-format h2,
.article-detail .avoid-card h2 {
  margin-top: 0;
  font-size: 20px;
}

.article-detail .avoid-card {
  padding: 24px 28px;
  margin-top: 48px;
}

.article-detail .avoid-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
}

.article-detail .avoid-card li {
  margin: 0;
  font-size: 15px;
}

.article-detail .avoid-card li::marker {
  color: var(--brand);
}

.article-detail .faq-section h2 {
  font-size: 24px;
}

.article-detail .faq-card {
  padding: 24px 28px;
}

.article-detail .faq-card + .faq-card {
  margin-top: 22px;
}

.article-detail .faq-card h3 {
  margin-bottom: 12px;
  font-size: 17px;
}

.article-detail .faq-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.article-detail .cta-panel {
  width: min(var(--max), calc(100% - 48px));
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  border-radius: 6px;
  background: var(--brand-dark);
  color: #fff;
  padding: 28px 30px;
  margin: 0 auto 78px;
}

.article-detail .cta-panel h2 {
  margin: 0;
  color: #fff;
  font-size: 24px;
  line-height: 1.2;
}

.article-detail .cta-panel p {
  margin: 0;
  color: #ede0e3;
  font-size: 15px;
  line-height: 1.55;
}

.article-detail .cta-panel .button {
  min-height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  padding: 0;
  white-space: nowrap;
}

.article-detail .toc {
  position: sticky;
  top: 108px;
  overflow: visible;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  padding: 26px 24px;
  box-shadow: none;
}

.article-detail .toc::before {
  display: none;
}

.article-detail .quick-check {
  border-bottom: 1px solid var(--line);
  margin-bottom: 26px;
  padding-bottom: 26px;
}

.article-detail .quick-check ul {
  display: grid;
  gap: 20px;
  margin: 0;
  padding-left: 18px;
}

.article-detail .quick-check li {
  color: #2c3a4f;
  font-size: 14px;
  line-height: 1.55;
}

.article-detail .quick-check li::marker {
  color: var(--brand);
  font-size: 12px;
}

.article-detail .toc a {
  display: block;
  border-left: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  margin: 0;
  color: var(--muted);
  padding: 13px 0;
  font-size: 14px;
  font-weight: 700;
}

.article-detail .toc a:hover,
.article-detail .toc a.is-active {
  background: transparent;
  color: var(--brand);
  text-decoration: none;
}

.article-detail .toc .toc-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border: 0;
  border-radius: 6px;
  background: var(--brand-dark);
  color: #fff;
  padding: 0 18px;
  margin-top: 16px;
  font-weight: 800;
}

.article-detail .site-footer {
  border-top-color: var(--line);
  background: #fff;
}

.article-detail .footer-inner {
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 980px) {
  .article-detail .article-hero-inner,
  .article-detail .article-shell {
    grid-template-columns: 1fr;
  }

  .article-detail .article-key-card,
  .article-detail .toc {
    display: none;
  }

  .article-detail .article-shell {
    padding-top: 48px;
  }
}

@media (max-width: 860px) {
  body.article-detail {
    padding-bottom: 0;
  }

  .article-detail .nav {
    min-height: 82px;
    flex-direction: row;
    align-items: center;
    padding: 0;
  }

  .article-detail .nav-links {
    display: none;
  }

  .article-detail .article-hero-inner,
  .article-detail .article-shell,
  .article-detail .footer-inner {
    width: min(100% - 40px, var(--max));
  }

  .article-detail .article-hero {
    background: var(--page);
    border-bottom: 0;
  }

  .article-detail .article-hero-inner {
    padding: 34px 0 0;
  }

  .article-detail h1 {
    font-size: 29px;
    line-height: 1.18;
  }

  .article-detail .article-lead {
    font-size: 16px;
    line-height: 1.68;
  }

  .article-detail .reading-meta {
    max-width: 270px;
    font-size: 13px;
    line-height: 1.35;
  }

  .article-detail .article-shell {
    gap: 0;
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .article-detail .article-main h2 {
    margin-top: 48px;
    font-size: 25px;
  }

  .article-detail .answer-card {
    padding: 22px 20px;
  }

  .article-detail .answer-card h2,
  .article-detail .copy-format h2,
  .article-detail .avoid-card h2 {
    font-size: 19px;
  }

  .article-detail .path-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .article-detail .path-grid article {
    min-height: 106px;
    padding: 22px 20px;
  }

  .article-detail .copy-format,
  .article-detail .avoid-card,
  .article-detail .faq-card {
    padding: 22px 20px;
  }

  .article-detail .cta-panel {
    width: min(100% - 40px, var(--max));
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 20px;
    margin-bottom: 60px;
  }

  .article-detail .cta-panel .button {
    width: auto;
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .article-detail .article-hero-inner,
  .article-detail .article-shell,
  .article-detail .cta-panel,
  .article-detail .footer-inner {
    width: calc(100% - 28px);
  }

  .article-detail h1 {
    font-size: 27px;
  }

  .article-detail .article-main p,
  .article-detail .article-main li {
    font-size: 15px;
  }

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

/* Articles index, Round 22 Figma implementation */
body.articles-index-v22 {
  --index-ink: #061d35;
  --index-muted: #657386;
  --index-line: #dde3ea;
  --index-soft-line: #edf1f5;
  --index-red: #a70e2d;
  --index-navy: #041c35;
  --index-gold: #b78b42;
  --index-soft: #f3f5f7;
  --index-max: 1120px;
  margin: 0;
  color: var(--index-ink);
  background: #fff;
  font-family: "Noto Sans SC", "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  line-height: 1.6;
}

body.articles-index-v22::before {
  display: none;
}

.articles-index-v22 * {
  box-sizing: border-box;
}

.articles-index-v22 a {
  color: inherit;
  text-decoration: none;
}

.articles-index-v22 a:hover {
  color: var(--index-red);
  text-decoration: none;
}

.articles-index-v22 img {
  display: block;
  max-width: 100%;
}

.articles-index-v22 .index-container,
.articles-index-v22 .index-nav,
.articles-index-v22 .index-hero {
  width: min(var(--index-max), calc(100% - 40px));
  margin: 0 auto;
}

.articles-index-v22 .index-header {
  position: static;
  border-top: 6px solid var(--index-navy);
  border-bottom: 1px solid var(--index-line);
  background: #fff;
  backdrop-filter: none;
}

.articles-index-v22 .index-nav {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.articles-index-v22 .jw-brand {
  display: inline-grid;
  grid-template-columns: 38px minmax(0, auto);
  gap: 20px;
  align-items: center;
  color: var(--index-ink);
}

.articles-index-v22 .jw-seal {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  background: var(--index-red);
  color: #fff;
  font-family: "Noto Serif SC", "SimSun", serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
}

.articles-index-v22 .jw-brand-text {
  display: grid;
  gap: 2px;
}

.articles-index-v22 .jw-brand strong {
  font-family: "Noto Serif SC", "SimSun", serif;
  font-size: 23px;
  line-height: 1.2;
}

.articles-index-v22 .jw-brand small {
  color: var(--index-muted);
  font-size: 13px;
  line-height: 1.25;
}

.articles-index-v22 .index-nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 34px;
  color: var(--index-ink);
  font-size: 14px;
  font-weight: 800;
}

.articles-index-v22 .index-nav-links a[aria-current="page"] {
  color: var(--index-red);
}

.articles-index-v22 .index-hero {
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(0, 680px) 400px;
  gap: 40px;
  align-items: start;
  padding-top: 78px;
  padding-bottom: 90px;
}

.articles-index-v22 .index-kicker {
  margin: 0 0 24px;
  color: var(--index-gold);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}

.articles-index-v22 .index-kicker.is-red {
  color: var(--index-red);
}

.articles-index-v22 h1,
.articles-index-v22 h2,
.articles-index-v22 h3 {
  margin: 0;
  color: var(--index-ink);
  font-family: "Noto Serif SC", "Source Han Serif SC", "Microsoft YaHei", "PingFang SC", sans-serif;
  font-weight: 800;
  letter-spacing: 0;
}

.articles-index-v22 h1 {
  max-width: 680px;
  font-size: 78px;
  line-height: 1.13;
}

.articles-index-v22 .index-lead {
  max-width: 560px;
  margin: 66px 0 0 4px;
  color: var(--index-muted);
  font-size: 20px;
  line-height: 1.8;
}

.articles-index-v22 .index-actions {
  display: flex;
  align-items: center;
  gap: 90px;
  margin-top: 30px;
  font-size: 15px;
  font-weight: 800;
}

.articles-index-v22 .index-actions .is-red {
  color: var(--index-red);
}

.articles-index-v22 .gold-line {
  display: block;
  width: 520px;
  height: 1px;
  margin: 31px 0 0 4px;
  background: var(--index-gold);
}

.articles-index-v22 .index-hero-media {
  padding-top: 64px;
}

.articles-index-v22 .index-hero-media > img {
  width: 400px;
  height: 324px;
  object-fit: cover;
  border: 1px solid var(--index-line);
}

.articles-index-v22 .advisor-card {
  width: 400px;
  min-height: 92px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  margin-top: 50px;
  border: 1px solid var(--index-line);
  background: #fff;
  padding: 20px 26px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
}

.articles-index-v22 .advisor-card img {
  width: 48px;
  height: 48px;
  object-fit: cover;
}

.articles-index-v22 .advisor-card strong {
  display: block;
  color: var(--index-ink);
  font-family: "Noto Serif SC", "SimSun", serif;
  font-size: 20px;
  line-height: 1.25;
}

.articles-index-v22 .advisor-card p {
  margin: 5px 0 0;
  color: var(--index-muted);
  font-size: 13px;
  line-height: 1.4;
}

.articles-index-v22 .index-check-strip {
  background: #fafbfc;
}

.articles-index-v22 .check-grid {
  min-height: 182px;
  display: grid;
  grid-template-columns: 380px repeat(3, minmax(0, 1fr));
  gap: 26px;
  align-items: center;
}

.articles-index-v22 .check-grid h2 {
  font-size: 31px;
  line-height: 1.23;
}

.articles-index-v22 .check-grid strong {
  display: block;
  color: var(--index-red);
  font-size: 13px;
  line-height: 1.3;
}

.articles-index-v22 .check-grid p {
  margin: 14px 0 0;
  color: var(--index-muted);
  font-size: 14px;
  line-height: 1.55;
}

.articles-index-v22 .index-entry {
  padding-top: 134px;
  padding-bottom: 128px;
}

.articles-index-v22 .section-head {
  display: inline-block;
  width: 560px;
  vertical-align: top;
}

.articles-index-v22 .section-head h2 {
  font-size: 54px;
  line-height: 1.2;
}

.articles-index-v22 .section-intro {
  display: inline-block;
  width: 430px;
  margin: 52px 0 0 116px;
  color: var(--index-muted);
  font-size: 18px;
  line-height: 1.72;
  vertical-align: top;
}

.articles-index-v22 .entry-list {
  margin-top: 132px;
  border-top: 1px solid var(--index-line);
}

.articles-index-v22 .entry-row {
  min-height: 154px;
  display: grid;
  grid-template-columns: 60px 340px minmax(0, 420px) 120px;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid var(--index-line);
}

.articles-index-v22 .entry-row span,
.articles-index-v22 .article-no {
  color: var(--index-gold);
  font-family: "Inter", Arial, sans-serif;
  font-size: 15px;
  font-weight: 800;
}

.articles-index-v22 .entry-row h3 {
  font-size: 34px;
  line-height: 1.24;
}

.articles-index-v22 .entry-row p {
  margin: 0;
  color: var(--index-muted);
  font-size: 16px;
  line-height: 1.68;
}

.articles-index-v22 .entry-row a,
.articles-index-v22 .article-read,
.articles-index-v22 .bottom-cta a {
  color: var(--index-red);
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

.articles-index-v22 .topic-focus {
  background: var(--index-soft);
}

.articles-index-v22 .topic-focus-grid {
  min-height: 540px;
  display: grid;
  grid-template-columns: minmax(0, 548px) minmax(0, 470px);
  gap: 62px;
  align-items: center;
}

.articles-index-v22 .topic-focus h2 {
  font-size: 48px;
  line-height: 1.2;
}

.articles-index-v22 .topic-focus p {
  max-width: 540px;
  margin: 24px 0 0;
  color: var(--index-muted);
  font-size: 18px;
  line-height: 1.72;
}

.articles-index-v22 .topic-actions {
  margin-top: 40px;
  gap: 72px;
}

.articles-index-v22 .topic-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px 80px;
  border-left: 1px solid var(--index-line);
  padding-left: 62px;
}

.articles-index-v22 .topic-facts h3 {
  font-size: 22px;
  line-height: 1.45;
}

.articles-index-v22 .topic-facts p {
  margin-top: 22px;
  color: var(--index-muted);
  font-size: 14px;
  line-height: 1.65;
}

.articles-index-v22 .article-index {
  display: grid;
  grid-template-columns: 440px minmax(0, 680px);
  gap: 0;
  padding-top: 166px;
  padding-bottom: 0;
}

.articles-index-v22 .article-index-copy h2 {
  max-width: 390px;
  font-size: 48px;
  line-height: 1.2;
}

.articles-index-v22 .article-index-copy p {
  max-width: 390px;
  margin: 24px 0 0;
  color: var(--index-muted);
  font-size: 17px;
  line-height: 1.76;
}

.articles-index-v22 .article-table {
  border-top: 2px solid var(--index-ink);
}

.articles-index-v22 .article-table article {
  min-height: 78px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 70px;
  gap: 28px;
  align-items: center;
  border-bottom: 1px solid var(--index-soft-line);
}

.articles-index-v22 .article-table h3 {
  font-size: 18px;
  line-height: 1.38;
}

.articles-index-v22 .article-meta,
.articles-index-v22 .other-label {
  margin: 0;
  color: var(--index-red);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.articles-index-v22 .other-label {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 68px;
}

.articles-index-v22 .other-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--index-line);
}

.articles-index-v22 .article-read {
  justify-self: end;
  font-size: 13px;
}

.articles-index-v22 .bottom-cta {
  margin-top: 0;
  background: var(--index-navy);
}

.articles-index-v22 .bottom-cta-inner {
  min-height: 130px;
  display: grid;
  grid-template-columns: 340px minmax(0, 380px) 150px;
  gap: 90px;
  align-items: center;
}

.articles-index-v22 .bottom-cta h2 {
  color: #fff;
  font-size: 25px;
  line-height: 1.28;
}

.articles-index-v22 .bottom-cta p {
  margin: 0;
  color: #c7d2de;
  font-size: 15px;
  line-height: 1.55;
}

.articles-index-v22 .bottom-cta a {
  color: var(--index-gold);
  text-align: right;
}

.articles-index-v22 .index-footer {
  border-top: 1px solid var(--index-line);
  background: #fff;
}

.articles-index-v22 .index-footer .index-container {
  padding: 24px 0;
  color: var(--index-muted);
  font-size: 13px;
}

@media (max-width: 1180px) {
  .articles-index-v22 .index-hero,
  .articles-index-v22 .topic-focus-grid,
  .articles-index-v22 .article-index,
  .articles-index-v22 .bottom-cta-inner {
    grid-template-columns: 1fr;
  }

  .articles-index-v22 .index-hero-media {
    width: min(100%, 520px);
    padding-top: 0;
  }

  .articles-index-v22 .index-hero-media > img,
  .articles-index-v22 .advisor-card {
    width: 100%;
  }

  .articles-index-v22 .topic-facts {
    border-left: 0;
    padding-left: 0;
  }

  .articles-index-v22 .article-index {
    gap: 44px;
    padding-bottom: 0;
  }

  .articles-index-v22 .section-intro {
    display: block;
    width: min(100%, 560px);
    margin-left: 0;
  }
}

@media (max-width: 860px) {
  .articles-index-v22 .index-container,
  .articles-index-v22 .index-nav,
  .articles-index-v22 .index-hero {
    width: min(100% - 40px, var(--index-max));
  }

  .articles-index-v22 .index-nav {
    min-height: 72px;
  }

  .articles-index-v22 .jw-brand {
    grid-template-columns: 30px minmax(0, auto);
    gap: 12px;
  }

  .articles-index-v22 .jw-seal {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .articles-index-v22 .jw-brand strong {
    font-size: 16px;
  }

  .articles-index-v22 .jw-brand small {
    font-size: 11px;
  }

  .articles-index-v22 .index-nav-links {
    gap: 12px;
    font-size: 12px;
  }

  .articles-index-v22 .index-hero {
    min-height: 0;
    padding-top: 34px;
    padding-bottom: 58px;
  }

  .articles-index-v22 .index-hero-media {
    order: -1;
  }

  .articles-index-v22 .index-hero-media > img {
    height: auto;
    aspect-ratio: 350 / 210;
  }

  .articles-index-v22 .advisor-card {
    display: none;
  }

  .articles-index-v22 h1 {
    font-size: 38px;
    line-height: 1.23;
  }

  .articles-index-v22 .index-lead {
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.72;
  }

  .articles-index-v22 .index-actions {
    gap: 30px;
    margin-top: 28px;
    font-size: 14px;
  }

  .articles-index-v22 .gold-line {
    width: 220px;
    margin-top: 28px;
  }

  .articles-index-v22 .check-grid {
    min-height: 236px;
    grid-template-columns: 1fr;
    gap: 14px;
    align-content: center;
  }

  .articles-index-v22 .check-grid h2 {
    margin-bottom: 10px;
    font-size: 26px;
  }

  .articles-index-v22 .check-grid article {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 12px;
  }

  .articles-index-v22 .check-grid p {
    margin-top: 0;
  }

  .articles-index-v22 .index-entry {
    padding-top: 72px;
    padding-bottom: 78px;
  }

  .articles-index-v22 .section-head {
    width: 100%;
  }

  .articles-index-v22 .section-head h2 {
    font-size: 34px;
    line-height: 1.24;
  }

  .articles-index-v22 .section-intro {
    display: none;
  }

  .articles-index-v22 .entry-list {
    margin-top: 42px;
  }

  .articles-index-v22 .entry-row {
    min-height: 196px;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px 16px;
    align-content: center;
    align-items: start;
    padding: 24px 0;
  }

  .articles-index-v22 .entry-row h3,
  .articles-index-v22 .entry-row p,
  .articles-index-v22 .entry-row a {
    grid-column: 2;
  }

  .articles-index-v22 .entry-row h3 {
    font-size: 25px;
    line-height: 1.32;
  }

  .articles-index-v22 .entry-row p {
    font-size: 13px;
    line-height: 1.7;
  }

  .articles-index-v22 .entry-row a {
    font-size: 13px;
  }

  .articles-index-v22 .topic-focus-grid {
    min-height: 520px;
    gap: 42px;
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .articles-index-v22 .topic-focus h2,
  .articles-index-v22 .article-index-copy h2 {
    font-size: 33px;
    line-height: 1.24;
  }

  .articles-index-v22 .topic-focus p {
    font-size: 14px;
    line-height: 1.7;
  }

  .articles-index-v22 .topic-actions {
    gap: 34px;
  }

  .articles-index-v22 .topic-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 26px;
  }

  .articles-index-v22 .topic-facts h3 {
    border-bottom: 1px solid var(--index-line);
    padding-bottom: 12px;
    font-size: 16px;
  }

  .articles-index-v22 .topic-facts p {
    display: none;
  }

  .articles-index-v22 .article-index {
    padding-top: 70px;
  }

  .articles-index-v22 .article-index-copy p {
    display: none;
  }

  .articles-index-v22 .article-table article {
    min-height: 178px;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 10px 18px;
    align-content: center;
    align-items: start;
  }

  .articles-index-v22 .article-table article > div,
  .articles-index-v22 .article-read {
    grid-column: 2;
  }

  .articles-index-v22 .article-table h3 {
    font-size: 20px;
    line-height: 1.45;
  }

  .articles-index-v22 .article-read {
    justify-self: start;
  }

  .articles-index-v22 .other-label {
    min-height: 56px;
    font-size: 12px;
  }

  .articles-index-v22 .bottom-cta-inner {
    min-height: 160px;
    gap: 10px;
    align-content: center;
  }

  .articles-index-v22 .bottom-cta h2 {
    font-size: 22px;
  }

  .articles-index-v22 .bottom-cta p {
    display: none;
  }

  .articles-index-v22 .bottom-cta a {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .articles-index-v22 .index-container,
  .articles-index-v22 .index-nav,
  .articles-index-v22 .index-hero {
    width: calc(100% - 40px);
  }

  .articles-index-v22 .index-nav-links {
    gap: 10px;
  }

  .articles-index-v22 h1 {
    font-size: 36px;
  }

  .articles-index-v22 .index-lead {
    font-size: 14px;
  }

  .articles-index-v22 .topic-facts {
    gap: 22px 18px;
  }
}

/* Articles index v24, selected-image implementation */
body.articles-index-v24 {
  --v24-ink: #071725;
  --v24-navy: #061522;
  --v24-navy-soft: #102232;
  --v24-red: #790b13;
  --v24-red-bright: #9d111d;
  --v24-gold: #bd8d4d;
  --v24-paper: #f5ead6;
  --v24-ivory: #fff5e4;
  --v24-line: rgba(128, 94, 52, 0.34);
  --v24-muted: #645846;
  --v24-shadow: 0 26px 72px rgba(5, 16, 28, 0.28);
  margin: 0;
  color: var(--v24-ink);
  background: var(--v24-navy);
  font-family: "Noto Sans SC", "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  letter-spacing: 0;
}

body.articles-index-v24::before {
  display: none;
}

.articles-index-v24 *,
.articles-index-v24 *::before,
.articles-index-v24 *::after {
  box-sizing: border-box;
}

.articles-index-v24 a {
  color: inherit;
  text-decoration: none;
}

.articles-index-v24 a:hover {
  color: var(--v24-red-bright);
  text-decoration: none;
}

.articles-index-v24 h1,
.articles-index-v24 h2,
.articles-index-v24 h3 {
  margin: 0;
  color: var(--v24-ink);
  font-family: "Noto Serif SC", "Source Han Serif SC", "Microsoft YaHei", serif;
  font-weight: 700;
  letter-spacing: 0;
}

.v24-stage {
  min-height: 100vh;
  padding: 14px 0 24px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(4, 13, 22, 0.30), rgba(255, 245, 228, 0.08) 23%, rgba(255, 245, 228, 0.14) 64%, rgba(4, 13, 22, 0.38)),
    linear-gradient(180deg, rgba(255, 244, 220, 0.10), rgba(255, 244, 220, 0.24) 61%, rgba(8, 20, 32, 0.20)),
    url("/articles/articles-index-v24-bg.webp") center top / cover no-repeat;
}

.v24-header,
.v24-checks,
.v24-article-board,
.v24-bottom-cta {
  width: min(1200px, calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
}

.v24-header {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 10px 34px 10px 28px;
  border: 1px solid rgba(128, 94, 52, 0.22);
  border-radius: 5px;
  background: rgba(255, 245, 228, 0.91);
  box-shadow: 0 18px 56px rgba(6, 18, 30, 0.16);
  backdrop-filter: blur(11px);
}

.v24-brand {
  display: grid;
  grid-template-columns: 42px minmax(0, auto);
  align-items: center;
  gap: 14px;
}

.v24-seal {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  color: #fff;
  background: var(--v24-red);
  font-family: "Noto Serif SC", "Microsoft YaHei", serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.v24-brand strong {
  display: block;
  font-family: "Noto Serif SC", "Microsoft YaHei", serif;
  font-size: 20px;
  line-height: 1.18;
}

.v24-brand small {
  display: block;
  margin-top: 2px;
  color: var(--v24-muted);
  font-size: 11px;
  line-height: 1.2;
}

.v24-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-left: auto;
  color: var(--v24-ink);
  font-family: "Noto Serif SC", "Microsoft YaHei", serif;
  font-size: 16px;
  font-weight: 600;
}

.v24-nav a {
  position: relative;
  padding: 8px 0;
}

.v24-nav a[aria-current="page"] {
  color: var(--v24-red);
}

.v24-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 32px;
  height: 2px;
  transform: translateX(-50%);
  background: var(--v24-red);
}

.articles-index-v24 .v24-contact {
  display: inline-grid;
  min-width: 106px;
  height: 36px;
  place-items: center;
  border-radius: 4px;
  color: #fff;
  background: var(--v24-red);
  font-size: 14px;
  font-weight: 800;
}

.articles-index-v24 .v24-contact:hover {
  color: #fff;
  background: #650810;
}

.v24-hero {
  position: relative;
  isolation: isolate;
  width: min(1200px, calc(100% - 40px));
  display: grid;
  grid-template-columns: minmax(0, 670px) 300px;
  gap: 24px;
  justify-content: center;
  align-items: stretch;
  margin: 2px auto 0;
  padding: 0 56px 12px;
}

.v24-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 12px;
  z-index: -1;
  border: 1px solid rgba(128, 94, 52, 0.20);
  border-radius: 6px;
  background:
    linear-gradient(90deg, rgba(255, 245, 228, 0.25), rgba(255, 245, 228, 0.08) 28%, rgba(255, 245, 228, 0.06) 72%, rgba(6, 21, 34, 0.16)),
    rgba(255, 245, 228, 0.12);
  box-shadow: 0 28px 72px rgba(5, 16, 28, 0.18);
  backdrop-filter: blur(3px);
}

.v24-hero-card,
.v24-guide {
  height: 330px;
  min-height: 0;
  margin-top: 0;
  border-radius: 6px;
  box-shadow: var(--v24-shadow);
  backdrop-filter: blur(9px);
  overflow: hidden;
}

.v24-hero-card {
  padding: 22px 34px 20px;
  border: 1px solid rgba(128, 94, 52, 0.52);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.20), rgba(255, 245, 228, 0.75)),
    rgba(255, 245, 228, 0.78);
}

.v24-breadcrumb {
  margin: 0 0 12px;
  color: rgba(7, 23, 37, 0.70);
  font-size: 12px;
  line-height: 1.5;
}

.v24-hero h1 {
  max-width: 570px;
  font-size: 39px;
  line-height: 1.22;
}

.v24-hero-lead {
  max-width: 550px;
  margin: 12px 0 0;
  color: rgba(7, 23, 37, 0.78);
  font-size: 14px;
  line-height: 1.68;
}

.v24-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 14px;
}

.v24-primary,
.v24-secondary {
  display: inline-flex;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  padding: 0 22px;
  font-size: 13px;
  font-weight: 800;
}

.articles-index-v24 .v24-primary {
  color: #fff;
  background: var(--v24-red);
}

.v24-primary::after,
.v24-secondary::after,
.v24-guide > a::after,
.v24-article-intro > a::after,
.v24-more::after,
.v24-bottom-cta > a::after {
  content: " →";
}

.articles-index-v24 .v24-primary:hover {
  color: #fff;
}

.articles-index-v24 .v24-secondary {
  border: 1px solid rgba(128, 94, 52, 0.48);
  color: var(--v24-red);
  background: rgba(255, 245, 228, 0.62);
}

.v24-trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.v24-trust-row span {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  color: rgba(100, 88, 70, 0.86);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.38;
}

.v24-trust-row b {
  width: 22px;
  height: 22px;
  display: block;
  border: 1px solid rgba(189, 141, 77, 0.82);
  border-radius: 50%;
  background: rgba(255, 245, 228, 0.36);
}

.v24-guide {
  padding: 22px 28px 20px;
  border: 1px solid rgba(189, 141, 77, 0.42);
  background:
    linear-gradient(155deg, rgba(6, 21, 34, 0.98), rgba(7, 18, 28, 0.93)),
    var(--v24-navy);
}

.v24-guide-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.v24-guide h2 {
  color: var(--v24-gold);
  font-size: 23px;
  line-height: 1.25;
}

.v24-guide h2::after {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  margin-top: 8px;
  background: var(--v24-gold);
}

.v24-guide-head span {
  color: rgba(189, 141, 77, 0.78);
  font-family: "Noto Serif SC", "Microsoft YaHei", serif;
  font-size: 22px;
}

.v24-guide ol {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.v24-guide li {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.v24-guide li span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(189, 141, 77, 0.85);
  border-radius: 50%;
  color: var(--v24-gold);
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px;
}

.v24-guide strong {
  display: block;
  grid-column: 2;
  color: rgba(255, 245, 228, 0.92);
  font-size: 12px;
  line-height: 1.4;
}

.v24-guide p {
  grid-column: 2;
  margin: 1px 0 0;
  color: rgba(255, 245, 228, 0.58);
  font-size: 10px;
  line-height: 1.32;
}

.articles-index-v24 .v24-guide > a {
  display: inline-block;
  margin-top: 12px;
  color: var(--v24-gold);
  font-size: 13px;
  font-weight: 800;
}

.v24-checks {
  min-height: 104px;
  display: grid;
  grid-template-columns: 190px repeat(4, minmax(0, 1fr));
  gap: 30px;
  align-items: center;
  margin-top: 0;
  padding: 18px 48px;
  background: rgba(6, 21, 34, 0.98);
  box-shadow: 0 18px 52px rgba(5, 16, 28, 0.24);
}

.v24-checks-title h2 {
  color: var(--v24-gold);
  font-size: 22px;
  line-height: 1.3;
}

.v24-checks-title p,
.v24-checks article p {
  color: rgba(255, 245, 228, 0.62);
  font-size: 12px;
  line-height: 1.55;
}

.v24-checks-title p {
  margin: 8px 0 0;
}

.v24-checks article {
  min-height: 66px;
  border-left: 1px solid rgba(189, 141, 77, 0.30);
  padding-left: 28px;
}

.v24-checks article span {
  display: block;
  color: var(--v24-gold);
  font-family: "Inter", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.v24-checks h3 {
  margin-top: 6px;
  color: var(--v24-gold);
  font-family: "Noto Sans SC", "Microsoft YaHei", sans-serif;
  font-size: 14px;
  line-height: 1.35;
}

.v24-checks article p {
  margin: 5px 0 0;
}

.v24-article-board {
  display: grid;
  grid-template-columns: 170px minmax(0, 642px) 260px;
  gap: 34px;
  padding: 28px 48px 34px;
  background: rgba(255, 245, 228, 0.96);
  box-shadow: 0 26px 72px rgba(5, 16, 28, 0.18);
}

.v24-article-intro h2,
.v24-other h2 {
  font-size: 23px;
  line-height: 1.42;
}

.v24-article-intro p {
  margin: 22px 0 0;
  color: rgba(100, 88, 70, 0.92);
  font-size: 14px;
  line-height: 1.75;
}

.articles-index-v24 .v24-article-intro > a {
  display: inline-flex;
  height: 34px;
  align-items: center;
  margin-top: 24px;
  border: 1px solid rgba(128, 94, 52, 0.42);
  border-radius: 3px;
  padding: 0 18px;
  color: var(--v24-ink);
  font-size: 12px;
  font-weight: 800;
}

.v24-table {
  min-width: 0;
}

.v24-table-head,
.v24-table > a {
  display: grid;
  grid-template-columns: 74px minmax(170px, 1fr) minmax(230px, 1.35fr);
  gap: 14px;
  align-items: center;
}

.v24-table-head {
  border-bottom: 1px solid var(--v24-line);
  padding-bottom: 10px;
  color: rgba(100, 88, 70, 0.82);
  font-size: 11px;
  line-height: 1.3;
}

.v24-table > a {
  min-height: 42px;
  border-bottom: 1px solid rgba(128, 94, 52, 0.18);
  padding: 6px 0;
}

.v24-tag {
  display: inline-flex;
  min-height: 22px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(128, 94, 52, 0.44);
  border-radius: 3px;
  padding: 3px 8px;
  color: var(--v24-red-bright);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.v24-table strong {
  color: var(--v24-ink);
  font-size: 12px;
  line-height: 1.55;
}

.v24-table p {
  margin: 0;
  color: rgba(100, 88, 70, 0.74);
  font-size: 11px;
  line-height: 1.62;
}

.v24-other {
  border-left: 1px solid var(--v24-line);
  padding-left: 26px;
}

.v24-other h2 {
  padding-bottom: 13px;
  border-bottom: 1px solid var(--v24-line);
}

.v24-other > a:not(.v24-more) {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
  padding: 13px 0 0;
}

.v24-other > a:not(.v24-more)::before {
  content: "";
  width: 14px;
  height: 18px;
  margin-top: 2px;
  border: 1px solid rgba(7, 23, 37, 0.62);
  background: rgba(255, 245, 228, 0.36);
}

.v24-other strong {
  display: block;
  grid-column: 2;
  color: var(--v24-ink);
  font-size: 12px;
  line-height: 1.55;
}

.v24-other time {
  display: block;
  grid-column: 2;
  margin-top: 2px;
  color: rgba(100, 88, 70, 0.68);
  font-size: 11px;
  line-height: 1.2;
}

.articles-index-v24 .v24-more {
  display: inline-block;
  margin-top: 13px;
  color: var(--v24-red-bright);
  font-size: 13px;
  font-weight: 800;
}

.v24-bottom-cta {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  margin-top: 12px;
  padding: 16px 56px;
  border-radius: 3px;
  color: rgba(255, 245, 228, 0.86);
  background:
    linear-gradient(90deg, rgba(121, 11, 19, 0.96), rgba(110, 12, 16, 0.94)),
    var(--v24-red);
  box-shadow: 0 22px 56px rgba(5, 16, 28, 0.24);
}

.v24-bottom-cta div {
  display: grid;
  grid-template-columns: 44px minmax(0, 210px) minmax(0, 420px);
  gap: 18px;
  align-items: center;
}

.v24-bottom-cta span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(189, 141, 77, 0.88);
  border-radius: 50%;
  color: var(--v24-gold);
  font-family: "Noto Serif SC", "Microsoft YaHei", serif;
  font-size: 21px;
}

.v24-bottom-cta h2 {
  color: var(--v24-ivory);
  font-size: 20px;
  line-height: 1.35;
}

.v24-bottom-cta p {
  margin: 0;
  color: rgba(255, 245, 228, 0.72);
  font-size: 13px;
  line-height: 1.62;
}

.articles-index-v24 .v24-bottom-cta > a {
  display: inline-flex;
  min-width: 160px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(189, 141, 77, 0.78);
  border-radius: 3px;
  color: var(--v24-ivory);
  font-size: 13px;
  font-weight: 800;
}

.articles-index-v24 .v24-bottom-cta > a:hover {
  color: #fff;
}

@media (min-width: 1600px) {
  .v24-header,
  .v24-checks,
  .v24-article-board,
  .v24-bottom-cta {
    width: min(1200px, calc(100% - 320px));
  }
}

@media (max-width: 1180px) {
  .v24-header,
  .v24-checks,
  .v24-article-board,
  .v24-bottom-cta,
  .v24-hero {
    width: min(100% - 40px, 960px);
  }

  .v24-header {
    flex-wrap: wrap;
  }

  .v24-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 28px;
    margin-left: 0;
  }

  .v24-hero {
    grid-template-columns: 1fr;
    padding-right: 0;
    padding-left: 0;
  }

  .v24-guide {
    height: auto;
    min-height: 0;
  }

  .v24-guide ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v24-checks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v24-checks-title {
    grid-column: 1 / -1;
  }

  .v24-checks article {
    border-left: 0;
    border-top: 1px solid rgba(189, 141, 77, 0.28);
    padding: 18px 0 0;
  }

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

  .v24-other {
    border-left: 0;
    border-top: 1px solid var(--v24-line);
    padding: 24px 0 0;
  }

  .v24-bottom-cta,
  .v24-bottom-cta div {
    align-items: start;
  }

  .v24-bottom-cta {
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .v24-stage {
    padding-top: 12px;
    background-position: 42% top;
  }

  .v24-header,
  .v24-checks,
  .v24-article-board,
  .v24-bottom-cta,
  .v24-hero {
    width: calc(100% - 28px);
  }

  .v24-header {
    gap: 18px;
    padding: 14px;
  }

  .v24-brand {
    grid-template-columns: 36px minmax(0, auto);
  }

  .v24-seal {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

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

  .v24-contact {
    min-width: 88px;
  }

  .v24-nav {
    gap: 18px;
    overflow-x: auto;
    font-size: 14px;
  }

  .v24-hero-card {
    padding: 28px 24px;
  }

  .v24-hero h1 {
    font-size: 34px;
    line-height: 1.32;
  }

  .v24-hero-lead {
    font-size: 14px;
    line-height: 1.75;
  }

  .v24-trust-row,
  .v24-guide ol {
    grid-template-columns: 1fr;
  }

  .v24-checks {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 28px 24px;
  }

  .v24-article-board {
    padding: 30px 24px;
  }

  .v24-table-head {
    display: none;
  }

  .v24-table > a {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 0;
  }

  .v24-table strong {
    font-size: 16px;
  }

  .v24-table p {
    font-size: 13px;
  }

  .v24-bottom-cta {
    padding: 24px;
  }

  .v24-bottom-cta div {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .v24-bottom-cta p {
    grid-column: 2;
  }
}

@media (max-width: 430px) {
  .v24-header {
    align-items: flex-start;
  }

  .v24-contact {
    width: 100%;
  }

  .v24-actions {
    flex-direction: column;
  }

  .v24-primary,
  .v24-secondary {
    width: 100%;
  }
}

/* Articles index v24, hero composition refinements */
body.articles-index-v24 {
  --v24-shell-wide: min(1440px, calc(100% - clamp(80px, 13vw, 360px)));
}

.v24-stage {
  padding-top: clamp(18px, 2.2vw, 28px);
  background:
    linear-gradient(90deg, rgba(4, 13, 22, 0.42), rgba(255, 245, 228, 0.07) 25%, rgba(255, 245, 228, 0.10) 62%, rgba(4, 13, 22, 0.48)),
    linear-gradient(180deg, rgba(255, 244, 220, 0.16), rgba(255, 244, 220, 0.21) 52%, rgba(8, 20, 32, 0.16)),
    url("/articles/articles-index-v24-bg.webp") center top / cover no-repeat;
}

.v24-header,
.v24-hero,
.v24-checks,
.v24-article-board,
.v24-bottom-cta {
  width: var(--v24-shell-wide);
}

.v24-header {
  min-height: 74px;
  padding: 13px 28px 13px 30px;
  border-color: rgba(128, 94, 52, 0.28);
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(255, 247, 234, 0.96), rgba(248, 235, 211, 0.93));
  box-shadow: 0 20px 64px rgba(5, 16, 28, 0.18);
}

.v24-brand {
  grid-template-columns: 44px minmax(0, auto);
  gap: 16px;
}

.v24-seal {
  width: 44px;
  height: 44px;
  font-size: 26px;
}

.v24-brand strong {
  font-size: 24px;
}

.v24-brand small {
  font-size: 12px;
}

.v24-nav {
  gap: clamp(36px, 4vw, 64px);
  font-size: 17px;
}

.articles-index-v24 .v24-contact {
  position: relative;
  min-width: 122px;
  height: 44px;
  border-radius: 4px;
}

.v24-hero {
  position: relative;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 392px);
  gap: clamp(24px, 2.2vw, 36px);
  justify-content: stretch;
  align-items: stretch;
  margin-top: 14px;
  padding: clamp(34px, 3vw, 46px);
  border: 1px solid rgba(128, 94, 52, 0.22);
  border-radius: 7px;
  background:
    linear-gradient(90deg, rgba(255, 247, 235, 0.72), rgba(255, 247, 235, 0.46) 52%, rgba(7, 19, 31, 0.22)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 245, 228, 0.04));
  box-shadow: 0 30px 82px rgba(5, 16, 28, 0.22);
  backdrop-filter: blur(5px);
  overflow: hidden;
}

.v24-hero::before {
  inset: 0;
  border: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 48% 62%, rgba(255, 247, 222, 0.62), rgba(255, 247, 222, 0) 33%),
    linear-gradient(90deg, rgba(255, 246, 229, 0.42), rgba(255, 246, 229, 0.12) 46%, rgba(6, 21, 34, 0.12));
  box-shadow: none;
  backdrop-filter: none;
}

.v24-hero::after {
  content: "";
  position: absolute;
  left: 34%;
  right: 24%;
  bottom: 0;
  z-index: -1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(189, 141, 77, 0.64), transparent);
}

.v24-hero-card,
.v24-guide {
  height: auto;
  min-height: 430px;
  margin-top: 0;
}

.v24-hero-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(40px, 3.2vw, 58px) clamp(18px, 2vw, 30px) 0 clamp(8px, 1vw, 16px);
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  overflow: visible;
}

.v24-breadcrumb {
  position: relative;
  margin-bottom: 20px;
  padding-left: 20px;
  color: rgba(7, 23, 37, 0.68);
  font-size: 13px;
}

.v24-breadcrumb::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 3px;
  height: 18px;
  background: var(--v24-gold);
}

.v24-hero h1 {
  max-width: 780px;
  font-size: clamp(48px, 4.1vw, 68px);
  line-height: 1.12;
}

.v24-hero h1::after {
  content: "";
  display: block;
  width: 46px;
  height: 3px;
  margin-top: 18px;
  background: var(--v24-gold);
}

.v24-hero-lead {
  max-width: 780px;
  margin-top: 18px;
  color: rgba(7, 23, 37, 0.78);
  font-size: 16px;
  line-height: 1.9;
}

.v24-actions {
  gap: 18px;
  margin-top: 26px;
}

.v24-primary,
.v24-secondary {
  height: 44px;
  padding: 0 32px;
  font-size: 15px;
}

.v24-secondary {
  min-width: 160px;
}

.v24-trust-row {
  max-width: 850px;
  gap: 18px;
  margin-top: 32px;
}

.v24-trust-row span {
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  color: rgba(7, 23, 37, 0.72);
  font-size: 13px;
  line-height: 1.48;
}

.v24-trust-row b {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--v24-gold);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.v24-trust-row span:nth-child(1) b::before {
  content: "01";
}

.v24-trust-row span:nth-child(2) b::before {
  content: "02";
}

.v24-trust-row span:nth-child(3) b::before {
  content: "03";
}

.v24-trust-row span:nth-child(4) b::before {
  content: "04";
}

.v24-guide {
  position: relative;
  padding: 36px 36px 32px;
  border: 1px solid rgba(189, 141, 77, 0.62);
  border-radius: 7px;
  background:
    radial-gradient(circle at 90% 12%, rgba(189, 141, 77, 0.14), rgba(189, 141, 77, 0) 25%),
    linear-gradient(155deg, rgba(8, 26, 42, 0.99), rgba(4, 15, 25, 0.98));
  box-shadow: 0 28px 78px rgba(4, 13, 22, 0.42);
  overflow: hidden;
}

.v24-guide::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(189, 141, 77, 0.34);
  border-radius: 5px;
  pointer-events: none;
}

.v24-guide-head span {
  font-size: 34px;
  opacity: 0.58;
}

.v24-guide h2 {
  font-size: 31px;
}

.v24-guide h2::after {
  width: 54px;
  margin-top: 12px;
}

.v24-guide ol {
  gap: 22px;
  margin-top: 28px;
}

.v24-guide li {
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
}

.v24-guide li span {
  width: 36px;
  height: 36px;
  font-size: 13px;
}

.v24-guide strong {
  font-size: 15px;
  line-height: 1.45;
}

.v24-guide p {
  margin-top: 7px;
  font-size: 12px;
  line-height: 1.55;
}

.articles-index-v24 .v24-guide > a {
  margin-top: 28px;
  font-size: 15px;
}

.v24-checks {
  min-height: 132px;
  grid-template-columns: 220px repeat(4, minmax(0, 1fr));
  gap: 34px;
  align-items: center;
  margin-top: 14px;
  border: 1px solid rgba(189, 141, 77, 0.20);
  border-radius: 6px;
  padding: 26px 44px;
  background:
    linear-gradient(90deg, rgba(4, 18, 30, 0.99), rgba(5, 20, 33, 0.94)),
    var(--v24-navy);
  box-shadow: 0 24px 68px rgba(4, 13, 22, 0.30);
}

.v24-checks-title h2 {
  font-size: 27px;
}

.v24-checks-title p,
.v24-checks article p {
  font-size: 13px;
}

.v24-checks article {
  min-height: 80px;
  padding-left: 30px;
}

.v24-checks article span {
  font-size: 15px;
}

.v24-checks h3 {
  font-size: 17px;
}

@media (max-width: 1180px) {
  body.articles-index-v24 {
    --v24-shell-wide: min(100% - 40px, 960px);
  }

  .v24-hero {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .v24-hero-card,
  .v24-guide {
    min-height: 0;
  }

  .v24-hero h1 {
    font-size: clamp(40px, 7vw, 56px);
  }

  .v24-guide ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v24-checks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body.articles-index-v24 {
    --v24-shell-wide: calc(100% - 28px);
  }

  .v24-header {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 16px;
    min-height: 0;
    padding: 14px;
  }

  .v24-nav {
    order: 2;
    width: 100%;
    justify-content: flex-start;
    gap: 24px;
    margin-left: 0;
    overflow-x: auto;
  }

  .articles-index-v24 .v24-contact {
    order: 3;
    width: 100%;
    min-width: 0;
  }

  .v24-hero {
    padding: 24px;
  }

  .v24-hero-card {
    padding: 0;
  }

  .v24-hero h1 {
    font-size: 34px;
    line-height: 1.28;
  }

  .v24-hero-lead {
    font-size: 14px;
    line-height: 1.76;
  }

  .v24-actions {
    flex-direction: column;
  }

  .v24-primary,
  .v24-secondary {
    width: 100%;
  }

  .v24-trust-row,
  .v24-guide ol,
  .v24-checks {
    grid-template-columns: 1fr;
  }

  .v24-guide {
    padding: 28px 24px;
  }

  .v24-guide h2 {
    font-size: 26px;
  }

  .v24-checks {
    padding: 28px 24px;
  }
}
