:root {
  --article-bg: #f7efe3;
  --article-panel: rgba(255, 252, 246, 0.94);
  --article-card: #fff;
  --article-line: rgba(42, 49, 58, 0.15);
  --article-muted: #65707e;
  --article-ink: #1d2530;
}

body {
  background: var(--article-bg);
}

.article-main {
  color: var(--article-ink);
  max-width: 100%;
  overflow-x: hidden;
}

.article-hero {
  padding: 42px 0 24px;
}

.article-panel,
.article-section,
.article-card {
  border: 1px solid var(--article-line);
  border-radius: 22px;
  background: var(--article-panel);
  box-shadow: 0 18px 50px rgba(43, 32, 18, 0.07);
}

.article-panel {
  padding: clamp(28px, 4vw, 54px);
}

.article-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--orange);
  font-weight: 650;
}

.article-kicker::before {
  content: "";
  width: 40px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
}

.article-panel h1 {
  max-width: 860px;
  margin: 0 0 22px;
  font-size: clamp(2rem, 3.1vw, 3.5rem);
  font-weight: 680;
  line-height: 1.08;
  letter-spacing: 0;
}

.article-lede {
  max-width: 820px;
  margin: 0;
  color: var(--article-muted);
  font-size: clamp(1rem, 1.14vw, 1.15rem);
  line-height: 1.78;
  font-weight: 500;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.article-meta > span {
  display: inline-flex;
  align-items: center;
  align-self: start;
  width: fit-content;
  max-width: 100%;
  min-height: 40px;
  padding: 8px 15px;
  border: 1px solid rgba(221, 128, 18, 0.26);
  border-radius: 999px;
  background: rgba(255, 246, 230, 0.82);
  color: var(--article-ink);
  font-size: 0.92rem;
  font-weight: 620;
  line-height: 1.25;
  letter-spacing: 0;
}

.article-meta > span > .lang-en,
.article-meta > span > .lang-zh {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font: inherit;
  line-height: inherit;
}

.article-section h2,
.article-card h2 {
  margin: 0 0 14px;
  font-size: clamp(1.16rem, 1.2vw, 1.36rem);
  font-weight: 670;
  line-height: 1.3;
}

.article-section p,
.article-card p,
.article-list li,
.faq-item dd,
.article-table td {
  color: var(--article-muted);
  line-height: 1.75;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.article-section {
  align-self: start;
  padding: clamp(26px, 3vw, 42px);
  margin-bottom: 24px;
}

.article-section.shell {
  width: min(1160px, calc(100% - 48px));
}

.article-section > h2:first-child {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: clamp(1.55rem, 2.1vw, 2rem);
  line-height: 1.22;
}

.article-section > p:first-of-type {
  max-width: 880px;
  color: var(--article-muted);
  font-size: clamp(1rem, 1.06vw, 1.08rem);
  line-height: 1.72;
}

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

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

.article-figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--article-line);
  border-radius: 18px;
  background: #fff;
}

.article-figure img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.article-media-grid--compact .article-figure img {
  height: clamp(240px, 24vw, 340px);
  aspect-ratio: auto;
  object-position: center 28%;
}

.article-figure figcaption {
  padding: 18px 20px 20px;
  color: var(--article-muted);
  line-height: 1.65;
  font-weight: 500;
}

.article-figure figcaption strong {
  display: block;
  margin-bottom: 7px;
  color: var(--article-ink);
  font-size: 1.02rem;
}

.answer-route-intro {
  max-width: 880px;
  margin: 0 0 22px;
  color: var(--article-muted);
  line-height: 1.75;
}

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

.answer-route-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 10px;
  min-height: 0;
  padding: clamp(20px, 2vw, 28px);
  border: 1px solid var(--article-line);
  border-radius: 18px;
  background: #fff;
}

.answer-route-label {
  margin: 0;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.answer-route-card h3 {
  margin: 0;
  color: var(--article-ink);
  font-size: clamp(1rem, 1.12vw, 1.18rem);
  line-height: 1.38;
}

.answer-route-card p {
  margin: 0;
  color: var(--article-muted);
  font-size: 0.95rem;
  line-height: 1.68;
}

.answer-route-card a {
  width: fit-content;
  color: var(--orange-dark);
  font-weight: 700;
  text-decoration: none;
}

.answer-route-card a::after {
  content: "  \2192";
}

.article-card {
  min-height: 0;
  padding: clamp(20px, 2vw, 28px);
  background: #fff;
  overflow: hidden;
}

.article-card h3 {
  margin: 0 0 10px;
  font-size: clamp(0.98rem, 1vw, 1.12rem);
  font-weight: 670;
  line-height: 1.32;
}

.article-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.68;
}

.article-section:first-of-type .article-grid {
  display: grid;
  gap: 18px;
}

.article-list {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 20px;
}

.article-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid var(--article-line);
  border-radius: 18px;
  background: #fff;
}

.article-table th,
.article-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--article-line);
  text-align: left;
  vertical-align: top;
}

.article-table th {
  color: var(--article-ink);
  font-weight: 680;
  background: #fff8ed;
}

.article-table tr:last-child th,
.article-table tr:last-child td {
  border-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin: 0;
}

.faq-item {
  padding: 16px;
  border: 1px solid var(--article-line);
  border-radius: 16px;
  background: #fff;
}

.faq-item dt {
  margin-bottom: 8px;
  font-weight: 680;
}

.faq-item dd {
  margin: 0;
}

.reference-list {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.reference-list a,
.inline-link {
  color: var(--orange-dark);
  font-weight: 650;
  text-decoration: none;
}

.article-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.article-inquiry-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin-top: 26px;
  padding: 24px 26px;
  border: 1px solid #ead9bf;
  border-left: 5px solid #ff8a18;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff8ee 0%, #fffdf9 100%);
}

.article-inquiry-cta h3,
.article-inquiry-cta p {
  margin: 0;
}

.article-inquiry-cta p {
  margin-top: 8px;
  color: var(--muted, #697586);
}

.article-inquiry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.article-inquiry-actions a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 1px solid #e5d3b7;
  border-radius: 999px;
  color: #1f2a36;
  font-weight: 750;
  text-decoration: none;
  background: #fff;
}

.article-inquiry-actions a:first-child {
  border-color: #ff8a18;
  color: #fff;
  background: #ff8a18;
}

@media (max-width: 760px) {
  .article-inquiry-cta {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px;
  }

  .article-inquiry-actions a {
    flex: 1 1 140px;
  }
}

.article-nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid var(--article-line);
  border-radius: 999px;
  color: var(--article-ink);
  font-weight: 650;
  text-decoration: none;
  background: #fff;
}

.entity-flat-footer.footer {
  margin-top: 34px;
}

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

  .answer-route-grid {
    grid-template-columns: 1fr;
  }

  .article-section.shell {
    width: min(100% - 32px, 1160px);
  }
}

@media (max-width: 640px) {
  .article-main,
  .article-hero,
  .article-panel,
  .article-section,
  .article-card,
  .faq-item {
    box-sizing: border-box;
    max-width: 100%;
    min-width: 0;
  }

  .article-hero.shell,
  .article-section.shell {
    width: min(100% - 24px, 1160px);
  }

  .article-hero {
    padding-top: 26px;
  }

  .article-panel,
  .article-section {
    padding: 20px;
    border-radius: 20px;
  }

  .article-panel h1 {
    max-width: 100%;
    font-size: clamp(1.72rem, 7.4vw, 2.12rem);
    line-height: 1.12;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .article-lede,
  .article-section p,
  .article-card p,
  .article-list li,
  .faq-item dd {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .article-section h2,
  .article-card h2 {
    font-size: 1.2rem;
  }

  .article-table,
  .article-table tbody,
  .article-table tr,
  .article-table th,
  .article-table td {
    display: block;
  }

  .article-table th {
    border-bottom: 0;
    padding-bottom: 6px;
  }

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

  .article-media-grid--compact .article-figure img {
    height: 220px;
    object-position: center 26%;
  }
}
