:root {
  color-scheme: light;
  --ink: #172026;
  --muted: #60707a;
  --soft: #eef5f4;
  --line: #d8e1e4;
  --paper: #ffffff;
  --mist: #f5f8f8;
  --teal: #137a76;
  --blue: #235b88;
  --amber: #b8751b;
  --rose: #9c3f56;
  --green: #2f7b55;
  --shadow: 0 18px 44px rgba(23, 32, 38, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(180deg, #eef6f5 0, var(--mist) 420px),
    var(--mist);
  font-family:
    Inter, "Segoe UI", "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
}

body[data-language="en"] {
  overflow-wrap: anywhere;
}

a {
  color: inherit;
}


img,
svg,
video,
canvas {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
p,
li,
dd,
dt,
a,
strong,
span {
  min-width: 0;
  overflow-wrap: anywhere;
}

h1,
h2,
h3,
p,
dl {
  margin-top: 0;
}

.hero {
  min-height: 350px;
  display: grid;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(8, 24, 31, 0.86), rgba(8, 24, 31, 0.5) 54%, rgba(8, 24, 31, 0.12)),
    url("assets/hero-research-hub.png") center / cover no-repeat;
}

.page-hero {
  min-height: 245px;
  display: grid;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(8, 24, 31, 0.88), rgba(8, 24, 31, 0.45)),
    url("assets/hero-research-hub.png") center / cover no-repeat;
  color: #fff;
}

.page-hero > div {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0 32px;
}

.page-hero h1 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 5vw, 3.8rem);
}

.page-hero p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.hero__content,
main,
footer {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.hero__content {
  padding: 64px 0 38px;
  color: #fff;
}

.eyebrow,
.section-kicker,
.eyebrow-dark {
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 800;
}

.eyebrow {
  margin-bottom: 12px;
  opacity: 0.82;
}

h1 {
  max-width: 840px;
  margin-bottom: 14px;
  font-size: clamp(2.2rem, 5.5vw, 4.7rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.hero__text {
  max-width: 800px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero__meta,
.section-nav,
.china-card__meta,
.china-card__footer,
.safety-tags,
.treatment-links,
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero__meta span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(10px);
}

main {
  padding-bottom: 8px;
}


.mobile-nav-toggle,
.mobile-nav-backdrop {
  display: none;
}

.section-nav {
  position: sticky;
  top: 0;
  z-index: 4;
  justify-content: center;
  margin: -20px auto 18px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.section-nav a,
.ghost-link {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--blue);
  text-decoration: none;
  font-weight: 750;
  font-size: 0.9rem;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f6faf9;
}

.language-toggle button {
  min-height: 30px;
  padding: 5px 9px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--blue);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.language-toggle button.is-active {
  background: var(--ink);
  color: #fff;
}

.language-toggle button:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.section-nav a[aria-current="page"] {
  background: var(--ink);
  color: #fff;
}

.section-nav a:hover,
.ghost-link:hover,
.source-panel a:hover,
.treatment-links a:hover {
  background: var(--soft);
}

.overview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 26px;
}

.overview article,
.latest-section,
.guidance-section,
.matrix-section,
.trial-section,
.market-section,
.china-section,
.treatment-section,
.feed-section,
.source-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
}

.overview article {
  padding: 18px;
}

.overview span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
}

.overview strong {
  display: block;
  margin: 8px 0 6px;
  font-size: 2rem;
}

.overview p,
.section-heading p,
.item p,
.treatment-card__head p,
.supportive-note,
.china-card p {
  color: var(--muted);
}

.latest-section,
.guidance-section,
.matrix-section,
.trial-section,
.market-section,
.china-section,
.treatment-section,
.feed-section,
.module-section {
  padding: 22px;
  margin-bottom: 24px;
}

.module-section {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
}

.evidence-chain-summary,
.evidence-rule-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.evidence-chain-summary article,
.evidence-rule-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.evidence-chain-summary span,
.evidence-rule-card span {
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.evidence-chain-summary strong {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-size: clamp(1.55rem, 2vw, 2.1rem);
  line-height: 1.1;
}

.evidence-chain-summary p,
.evidence-rule-card p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.evidence-rule-card h3 {
  margin: 8px 0 0;
  font-size: 1rem;
}

.evidence-chain-list {
  display: grid;
  gap: 16px;
}

.evidence-chain-card {
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--teal);
  border-radius: 8px;
  background: var(--paper);
}

.evidence-chain-card__head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
}

.evidence-chain-card__head h3 {
  margin: 0;
  font-size: 1.18rem;
}

.decision-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #edf6f1;
  color: #26734d;
  font-weight: 850;
  white-space: nowrap;
}

.decision-updated {
  background: #e8f3f8;
  color: #1c6075;
}

.decision-needs-follow-up {
  background: #fff4df;
  color: #8a5b0c;
}

.decision-no-change {
  background: #f3f5f6;
  color: var(--muted);
}

.evidence-chain-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.evidence-chain-meta div {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfd;
}

.evidence-chain-meta dt {
  margin-bottom: 5px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
}

.evidence-chain-meta dd {
  margin: 0;
  color: var(--text);
  font-weight: 750;
}

.evidence-changes {
  padding: 14px;
  border-radius: 8px;
  background: var(--soft);
}

.evidence-changes h4 {
  margin: 0 0 8px;
  font-size: 0.95rem;
}

.evidence-changes ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.65;
}

.evidence-chain-flow,
.evidence-chain-data,
.evidence-source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.evidence-chain-flow span,
.evidence-chain-data span {
  padding: 7px 10px;
  border-radius: 999px;
  background: #eef5f5;
  color: var(--teal-dark);
  font-size: 0.86rem;
  font-weight: 800;
}

.evidence-chain-data span {
  background: #f6f7f8;
  color: var(--muted);
}

.evidence-source-links a {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: none;
}

.evidence-source-links a:hover {
  background: var(--soft);
}

.evidence-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.portal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
}

.portal-card {
  display: grid;
  gap: 8px;
  min-height: 160px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: inherit;
  text-decoration: none;
}

.portal-card span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.portal-card strong {
  font-size: 1.18rem;
}

.portal-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.portal-card:hover {
  border-color: rgba(19, 122, 118, 0.45);
  box-shadow: var(--shadow);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 16px;
}

.section-heading.compact {
  margin-bottom: 12px;
}

.section-heading h2 {
  margin-bottom: 6px;
  font-size: 1.42rem;
  line-height: 1.2;
}

.section-kicker,
.eyebrow-dark {
  margin-bottom: 6px;
  color: var(--teal);
}

.china-tools,
.treatment-tools,
.toolbar {
  display: grid;
  gap: 12px;
  margin-bottom: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfd;
}

.china-tools {
  grid-template-columns: minmax(260px, 1fr) 220px;
}

.treatment-tools {
  grid-template-columns: 210px 270px minmax(260px, 1fr);
}

.toolbar {
  grid-template-columns: minmax(240px, 1fr) 150px 190px 130px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

input,
select {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

input:focus,
select:focus {
  outline: 3px solid rgba(19, 122, 118, 0.16);
  border-color: var(--teal);
}

.latest-list,
.guidance-cards,
.trial-cards,
.china-list {
  display: grid;
  gap: 12px;
}

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

.guidance-card,
.trial-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.guidance-card h3,
.trial-card h3 {
  margin-bottom: 12px;
  font-size: 1.08rem;
  line-height: 1.4;
}

.guidance-card dl {
  display: grid;
  gap: 10px;
  margin-bottom: 12px;
}

.guidance-card div {
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.guidance-card dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.guidance-card dd {
  margin: 0;
  line-height: 1.58;
}

.guidance-links,
.trial-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.guidance-links a,
.trial-card a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--blue);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 750;
}

.matrix-table {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.matrix-table table {
  width: 100%;
  min-width: 1080px;
  border-collapse: collapse;
}

.matrix-table th,
.matrix-table td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  line-height: 1.52;
  font-size: 0.88rem;
}

.matrix-table thead th {
  position: sticky;
  top: 0;
  background: #f8fbfb;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.matrix-table tbody th {
  width: 190px;
}

.matrix-table tbody th span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-weight: 550;
}

.evidence-badge {
  display: inline-flex;
  padding: 5px 8px;
  border-radius: 999px;
  background: #f4efe7;
  color: #80510f;
  font-size: 0.78rem;
  font-weight: 800;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 8px 0 10px;
}

.trust-pill {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border: 1px solid #dfe8e7;
  border-radius: 999px;
  background: #f8fbfb;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 780;
  line-height: 1.25;
}

.trust-pill--auto {
  border-color: #d5e7e2;
  background: #eef8f4;
  color: #245b58;
}

.trust-pill--review {
  border-color: #d8e1f3;
  background: #f1f5fb;
  color: var(--blue);
}

.trust-pill--warning {
  border-color: #ead9ba;
  background: #fbf8f1;
  color: #80510f;
}

.journal-metric {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  width: max-content;
  padding: 3px 8px;
  border: 1px solid #c6e0d8;
  border-radius: 999px;
  background: #f3fbf7;
  color: #1f6b57;
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1.2;
  white-space: nowrap;
}

.review-note {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 650;
  line-height: 1.35;
}

.trial-tools {
  display: grid;
  grid-template-columns: 220px 220px 220px;
  gap: 12px;
  margin-bottom: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfd;
}

.trial-card__head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
  margin-bottom: 10px;
}

.trial-card__head p,
.trial-card p,
.trial-meta {
  color: var(--muted);
}

.trial-card__head p,
.trial-card p {
  margin-bottom: 0;
  line-height: 1.55;
}

.trial-card__head strong {
  flex: 0 0 auto;
  padding: 6px 9px;
  border-radius: 8px;
  background: #e9f4f0;
  color: var(--green);
  font-size: 0.8rem;
}

.trial-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 0.82rem;
}

.trial-tags {
  margin-bottom: 10px;
}

.trial-tags span {
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--soft);
  color: #245b58;
  font-size: 0.78rem;
  font-weight: 750;
}

.latest-card,
.latest-empty {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  border-left: 5px solid var(--green);
}

.latest-card__head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
  margin-bottom: 12px;
}

.latest-card__head h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  line-height: 1.38;
}

.latest-card__head p,
.latest-empty p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.latest-card__head span {
  flex: 0 0 auto;
  padding: 6px 9px;
  border-radius: 8px;
  background: #e9f4f0;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 800;
}

.zh-abstract {
  margin-bottom: 10px;
  color: var(--ink);
  line-height: 1.72;
}

.latest-intel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
  margin: 0 0 12px;
}

.latest-intel-grid div {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfd;
}

.latest-intel-grid dt {
  margin-bottom: 4px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 850;
}

.latest-intel-grid dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.88rem;
}

.latest-points {
  margin: 0 0 10px;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.latest-card details {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfd;
}

.latest-card summary {
  cursor: pointer;
  color: var(--blue);
  font-weight: 750;
}

.latest-card details p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.latest-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.86rem;
}

.latest-actions__dates {
  display: flex;
  gap: 10px 14px;
  flex-wrap: wrap;
}

.latest-actions a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font-weight: 750;
}

.market-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.market-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.market-card__head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
}

.market-card__head h3 {
  margin: 0 0 5px;
  font-size: 1.06rem;
  line-height: 1.32;
}

.market-card__head h3 span,
.market-card__head p {
  color: var(--muted);
}

.market-card__head h3 span {
  font-size: 0.86rem;
  font-weight: 550;
}

.market-card__head p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.market-card__head strong {
  flex: 0 0 auto;
  padding: 6px 9px;
  border-radius: 8px;
  background: #e9f4f0;
  color: var(--green);
  font-size: 0.8rem;
}

.sales-box {
  padding: 12px;
  border-radius: 8px;
  background: #fbf8f1;
}

.sales-box span,
.sales-box small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.sales-box strong {
  display: block;
  margin: 5px 0;
  color: #80510f;
  font-size: 1.15rem;
}

.sales-box p {
  margin-bottom: 4px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.86rem;
}

.approval-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.approval-list li {
  display: grid;
  gap: 3px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.approval-list strong {
  color: var(--ink);
}

.approval-list span,
.approval-list em {
  color: var(--muted);
  font-size: 0.84rem;
  font-style: normal;
  line-height: 1.45;
}

.market-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.market-links a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--blue);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 750;
}

.china-card {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(90deg, #ffffff, #fbfdfd);
}

.china-card__date {
  min-height: 88px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 4px;
  padding: 10px;
  border-radius: 8px;
  background: #e9f4f0;
  color: var(--green);
  text-align: center;
  font-weight: 850;
  font-size: 0.86rem;
}

.china-card__date span,
.china-card__date small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
}

.china-card__date strong {
  color: var(--green);
  font-size: 0.92rem;
}

.china-card__meta span,
.pill {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--soft);
  color: #245b58;
  font-size: 0.78rem;
  font-weight: 750;
}

.china-card h3,
.item h3,
.treatment-card__head h3 {
  letter-spacing: 0;
}

.china-card h3 {
  margin: 8px 0 8px;
  font-size: 1.06rem;
  line-height: 1.42;
}

.china-card p {
  margin-bottom: 7px;
  line-height: 1.62;
}

.institution {
  font-size: 0.88rem;
}

.china-card__footer {
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}

.china-card__footer a,
.item__actions a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 750;
}

.china-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.china-tags span,
.tag {
  color: var(--muted);
  font-size: 0.8rem;
}

.treatments,
.feed {
  display: grid;
  gap: 12px;
}

.treatment-card,
.item {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.treatment-card {
  border-left: 5px solid var(--teal);
}

.treatment-card__head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  margin-bottom: 14px;
}

.treatment-card__head h3 {
  margin: 0 0 5px;
  font-size: 1.18rem;
  line-height: 1.35;
}

.treatment-card__head h3 span {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 550;
}

.treatment-card__head strong {
  flex: 0 0 auto;
  max-width: 190px;
  padding: 7px 10px;
  border-radius: 8px;
  background: #f4efe7;
  color: #80510f;
  font-size: 0.82rem;
  text-align: center;
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
  margin-bottom: 0;
}

.treatment-grid div {
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.treatment-grid dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.treatment-grid dd {
  margin: 0;
  line-height: 1.58;
}

.safety-tags,
.treatment-links {
  margin-top: 14px;
}

.safety-tags span {
  padding: 5px 8px;
  border-radius: 999px;
  background: #f7ebef;
  color: #8c3348;
  font-size: 0.78rem;
  font-weight: 750;
}

.treatment-links a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--blue);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 750;
}

.supportive-note {
  margin-top: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfd;
  line-height: 1.65;
}

.supportive-note p {
  margin-bottom: 0;
}

.safety-summary {
  margin-bottom: 14px;
}

.safety-overview {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
}

.safety-overview article {
  min-height: 116px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfd;
}

.safety-overview p {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.safety-overview > article > strong {
  display: block;
  margin-bottom: 4px;
  color: var(--rose);
  font-size: 2.1rem;
  line-height: 1;
}

.safety-overview article > span {
  color: var(--muted);
  font-size: 0.82rem;
}

.safety-signal-cloud,
.safety-cards,
.monitoring-grid {
  display: grid;
  gap: 12px;
}

.safety-signal-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.safety-signal-cloud span {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #f7ebef;
  color: #8c3348;
  font-size: 0.78rem;
  font-weight: 750;
}

.safety-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--rose);
  border-radius: 8px;
  background: var(--paper);
}

.safety-card__head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}

.safety-card__head h3 {
  margin: 0 0 5px;
  font-size: 1.16rem;
  line-height: 1.35;
}

.safety-card__head h3 span,
.safety-card__head p {
  color: var(--muted);
}

.safety-card__head h3 span {
  font-size: 0.92rem;
  font-weight: 550;
}

.safety-card__head p {
  margin-bottom: 0;
}

.safety-card__head strong {
  flex: 0 0 auto;
  max-width: 170px;
  padding: 7px 10px;
  border-radius: 8px;
  background: #f7ebef;
  color: #8c3348;
  font-size: 0.82rem;
  text-align: center;
}

.safety-alert {
  padding: 13px 14px;
  border: 1px solid #ead1d8;
  border-radius: 8px;
  background: #fff8fa;
}

.safety-alert span {
  display: block;
  margin-bottom: 5px;
  color: #8c3348;
  font-size: 0.78rem;
  font-weight: 850;
}

.safety-alert p {
  margin-bottom: 0;
  line-height: 1.65;
}

.safety-detail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 0;
}

.safety-detail div {
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.safety-detail dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.safety-detail dd {
  margin: 0;
  line-height: 1.58;
}

.safety-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.safety-links a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--blue);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 750;
}

.faers-loading,
.faers-empty,
.faers-panel,
.faers-kpis article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.faers-loading,
.faers-empty,
.faers-panel {
  padding: 18px;
}

.faers-empty p,
.faers-panel p,
.faers-kpis p,
.muted {
  color: var(--muted);
  line-height: 1.62;
}

.faers-disclaimer {
  display: flex;
  gap: 12px;
  align-items: start;
  margin-bottom: 14px;
  padding: 13px 14px;
  border: 1px solid #ead1d8;
  border-radius: 8px;
  background: #fff8fa;
}

.faers-disclaimer strong {
  flex: 0 0 auto;
  color: #8c3348;
  font-size: 0.86rem;
}

.faers-disclaimer span {
  color: var(--muted);
  line-height: 1.55;
}

.faers-kpis {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.faers-kpis article {
  min-height: 126px;
  padding: 14px;
}

.faers-kpis span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
}

.faers-kpis strong {
  display: block;
  margin: 8px 0 6px;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.08;
}

.faers-kpis p {
  margin-bottom: 0;
  font-size: 0.84rem;
}

.faers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 14px 0;
}

.faers-panel h2 {
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.faers-bar {
  display: grid;
  grid-template-columns: minmax(105px, 1fr) minmax(120px, 1.5fr) 42px;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.84rem;
}

.faers-bar span {
  overflow-wrap: anywhere;
  font-weight: 700;
}

.faers-bar div {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--soft);
}

.faers-bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--rose);
}

.faers-bar--country i {
  background: var(--blue);
}

.faers-bar--outcome i {
  background: var(--amber);
}

.faers-bar strong {
  color: var(--ink);
  text-align: right;
}

.table-scroll {
  overflow-x: auto;
}

.monitoring-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.monitoring-grid article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.monitoring-grid span {
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 850;
}

.monitoring-grid h3 {
  margin: 7px 0 8px;
  font-size: 1rem;
}

.monitoring-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
}

.china-access-summary {
  margin-bottom: 14px;
}

.huashan-identity,
.huashan-overview article,
.huashan-paper {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.huashan-identity {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  margin-bottom: 18px;
  padding: 20px;
}

.huashan-identity h2 {
  margin-bottom: 8px;
  font-size: 1.45rem;
}

.huashan-identity p:last-child {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.huashan-summary {
  margin-bottom: 14px;
}

.huashan-overview {
  display: grid;
  grid-template-columns: 180px 180px minmax(0, 1fr);
  gap: 12px;
}

.huashan-overview article {
  min-height: 126px;
  padding: 14px;
  background: #fbfdfd;
}

.huashan-overview span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
}

.huashan-overview strong {
  display: block;
  margin: 8px 0 6px;
  font-size: 1.9rem;
  line-height: 1.08;
}

.huashan-overview p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.huashan-list {
  display: grid;
  gap: 12px;
}

.huashan-paper {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 16px;
  padding: 18px;
  border-left: 5px solid var(--blue);
}

.huashan-paper__date {
  display: grid;
  align-content: start;
  gap: 6px;
  color: var(--muted);
}

.huashan-paper__date span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.2;
}

.huashan-paper__date strong {
  color: var(--ink);
  font-size: 1rem;
}

.huashan-paper__date small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.huashan-paper__body {
  display: grid;
  gap: 10px;
}

.huashan-paper__meta,
.huashan-paper__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.huashan-paper__meta span {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--soft);
  color: #245b58;
  font-size: 0.78rem;
  font-weight: 750;
}

.huashan-paper h3 {
  margin-bottom: 0;
  font-size: 1.16rem;
  line-height: 1.42;
}

.huashan-authors {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.huashan-paper details {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfd;
}

.huashan-paper summary {
  cursor: pointer;
  color: var(--blue);
  font-weight: 750;
}

.huashan-paper details p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.huashan-paper__footer {
  justify-content: space-between;
}

.huashan-paper__footer a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font-weight: 750;
  font-size: 0.86rem;
}

.access-overview {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) minmax(0, 1fr) 190px;
  gap: 12px;
}

.access-overview article,
.china-access-card,
.access-checklist article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.access-overview article {
  min-height: 118px;
  padding: 14px;
  background: #fbfdfd;
}

.access-overview p {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.access-overview > article > strong {
  display: block;
  margin-bottom: 4px;
  color: var(--blue);
  font-size: 2rem;
  line-height: 1;
}

.access-overview article > span {
  color: var(--muted);
  font-size: 0.82rem;
}

.access-cloud,
.china-access-cards,
.access-checklist {
  display: grid;
  gap: 12px;
}

.access-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.access-cloud span {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  background: #f1f5fb;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 750;
}

.china-access-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-left: 5px solid var(--blue);
}

.china-access-card__head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}

.china-access-card__head h3 {
  margin: 0 0 5px;
  font-size: 1.16rem;
  line-height: 1.35;
}

.china-access-card__head h3 span,
.china-access-card__head p {
  color: var(--muted);
}

.china-access-card__head h3 span {
  font-size: 0.92rem;
  font-weight: 550;
}

.china-access-card__head p {
  margin-bottom: 0;
}

.china-access-card__head strong {
  flex: 0 0 auto;
  max-width: 180px;
  padding: 7px 10px;
  border-radius: 8px;
  background: #f1f5fb;
  color: var(--blue);
  font-size: 0.82rem;
  text-align: center;
}

.approval-highlight {
  padding: 13px 14px;
  border: 1px solid #d8e1f3;
  border-radius: 8px;
  background: #f6f9fd;
}

.approval-highlight span {
  display: block;
  margin-bottom: 5px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
}

.approval-highlight p {
  margin-bottom: 0;
  line-height: 1.65;
}

.china-access-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
  margin-bottom: 0;
}

.china-access-grid div {
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.china-access-grid dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.china-access-grid dd {
  margin: 0;
  line-height: 1.58;
}

.access-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.access-links a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--blue);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 750;
}

.access-checklist {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.access-checklist article {
  padding: 16px;
}

.access-checklist span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
}

.access-checklist h3 {
  margin: 7px 0 8px;
  font-size: 1rem;
}

.access-checklist p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
}

.status-dashboard,
.review-queue,
.i18n-dashboard {
  display: grid;
  gap: 12px;
}

.status-overview,
.i18n-overview,
.source-status-grid,
.i18n-grid,
.status-block,
.review-principles {
  display: grid;
  gap: 12px;
}

.status-overview,
.i18n-overview {
  grid-template-columns: 1.1fr 1.2fr 0.8fr 1.4fr;
}

.status-overview article,
.i18n-overview article,
.i18n-card,
.source-status-card,
.status-empty,
.status-outputs article,
.status-block,
.review-principles article,
.review-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.status-block {
  padding: 16px;
}

.status-block__head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: end;
}

.status-block__head h3 {
  margin-bottom: 0;
  font-size: 1.08rem;
}

.status-block__head > span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
}

.status-overview article {
  min-height: 128px;
  padding: 16px;
  background: #fbfdfd;
}

.i18n-overview article {
  min-height: 124px;
  padding: 16px;
  background: #fbfdfd;
}

.status-overview span,
.i18n-overview span,
.review-principles span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
}

.status-overview strong,
.i18n-overview strong {
  display: block;
  margin: 8px 0 6px;
  font-size: 1.3rem;
  line-height: 1.2;
}

.status-overview p,
.i18n-overview p,
.i18n-card p,
.source-status-card p,
.status-empty p,
.review-principles p,
.review-card p,
.review-meta {
  color: var(--muted);
  line-height: 1.6;
}

.source-status-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.i18n-card {
  display: grid;
  gap: 10px;
  padding: 16px;
  border-left: 5px solid var(--green);
}

.i18n-card[data-status="warning"] {
  border-left-color: var(--amber);
}

.i18n-card[data-status="attention"] {
  border-left-color: var(--rose);
}

.i18n-card__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}

.i18n-card__head span {
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 850;
}

.i18n-card h4 {
  margin: 4px 0 0;
  font-size: 1rem;
}

.i18n-card__head strong {
  flex: 0 0 auto;
  padding: 6px 9px;
  border-radius: 8px;
  background: #e9f4f0;
  color: var(--green);
  font-size: 0.9rem;
}

.i18n-card[data-status="warning"] .i18n-card__head strong {
  background: #fbf8f1;
  color: #80510f;
}

.i18n-card[data-status="attention"] .i18n-card__head strong {
  background: #fff8fa;
  color: #8c3348;
}

.i18n-meter {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #edf2f3;
}

.i18n-meter i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--green));
}

.terminology-status {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.terminology-status article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfd;
}

.terminology-status h4 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.terminology-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.terminology-cloud span {
  padding: 6px 9px;
  border-radius: 999px;
  background: #eef5f5;
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.terminology-cloud span.is-missing {
  background: #fff8fa;
  color: #8c3348;
}

.terminology-cloud span.is-present {
  background: #edf6f1;
  color: #26734d;
}

.source-status-card {
  display: grid;
  gap: 10px;
  padding: 16px;
  border-left: 5px solid var(--green);
}

.source-status-card[data-status="manual"] {
  border-left-color: var(--amber);
}

.source-status-card[data-status="failed"] {
  border-left-color: var(--rose);
}

.source-status-card[data-status="unknown"] {
  border-left-color: var(--muted);
}

.source-status-card h3 {
  margin-bottom: 0;
  font-size: 1rem;
}

.source-status-card strong {
  width: fit-content;
  padding: 6px 9px;
  border-radius: 8px;
  background: #e9f4f0;
  color: var(--green);
  font-size: 0.82rem;
}

.source-status-card[data-status="manual"] strong {
  background: #fbf8f1;
  color: #80510f;
}

.source-status-card[data-status="failed"] strong {
  background: #fff8fa;
  color: #8c3348;
}

.source-status-card__badges,
.source-status-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.source-status-card__badges span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 5px 8px;
  border-radius: 8px;
  background: #f8fbfb;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.source-status-card__meta {
  color: var(--muted);
  font-size: 0.82rem;
}

.source-status-card__meta a {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--blue);
  text-decoration: none;
  font-weight: 750;
}

.status-empty {
  padding: 16px;
  background: #fbfdfd;
}

.status-empty h3,
.review-card h3,
.review-principles h3 {
  margin-bottom: 7px;
  font-size: 1rem;
}

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

.status-outputs article {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
}

.review-principles {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 14px;
}

.review-principles article {
  padding: 16px;
  background: #fbfdfd;
}

.review-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-left: 5px solid var(--amber);
}

.review-card__head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
}

.review-card__head h3 {
  margin-bottom: 0;
  line-height: 1.36;
}

.priority-badge {
  flex: 0 0 auto;
  min-width: 42px;
  padding: 6px 10px;
  border-radius: 8px;
  text-align: center;
  font-size: 0.82rem;
}

.priority-high {
  background: #fff8fa;
  color: #8c3348;
}

.priority-medium {
  background: #fbf8f1;
  color: #80510f;
}

.priority-low {
  background: #e9f4f0;
  color: var(--green);
}

.review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.84rem;
}

.review-meta span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  background: #f8fbfb;
}

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

.review-actions a,
.review-actions span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--blue);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 750;
}

.workspace-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 265px;
  gap: 24px;
  align-items: start;
}

.source-panel {
  position: sticky;
  top: 76px;
  display: grid;
  gap: 8px;
  padding: 18px;
}

.source-panel h2 {
  margin-bottom: 4px;
  font-size: 1.05rem;
}

.source-panel a {
  display: block;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  color: var(--blue);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
}

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

.disclaimer-card {
  min-height: 172px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.disclaimer-card h3 {
  margin-bottom: 8px;
  font-size: 1.04rem;
}

.disclaimer-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.66;
}

.item {
  display: grid;
  gap: 10px;
  border-left: 5px solid var(--teal);
}

.item[data-category="监管动态"] {
  border-left-color: var(--rose);
}

.item[data-category="研发动态"] {
  border-left-color: var(--amber);
}

.item[data-category="会议摘要"] {
  border-left-color: var(--blue);
}

.item__top {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 0.82rem;
}

.item h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.42;
}

.item p {
  margin-bottom: 0;
  line-height: 1.65;
}

.item__actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.empty,
footer {
  color: var(--muted);
}

footer {
  margin: 34px auto 26px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
}

.footer-record {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.footer-record img {
  width: 22px;
  height: 22px;
  display: block;
}

.footer-record span {
  line-height: 1.5;
}

.site-share {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.site-share__label {
  color: var(--text);
  font-weight: 800;
}

.site-share__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.share-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--brand);
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.share-button:hover,
.share-button:focus-visible {
  border-color: rgba(42, 95, 114, 0.45);
  background: var(--soft);
  color: var(--brand-dark);
}

.share-button--compact {
  min-height: 30px;
  padding: 5px 10px;
}

.share-copy-status {
  min-height: 1.2em;
  color: var(--brand);
  font-weight: 800;
}

.share-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(18, 28, 35, 0.5);
}

.share-modal[hidden] {
  display: none;
}

.share-modal__panel {
  width: min(360px, 100%);
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(18, 28, 35, 0.22);
  text-align: center;
}

.share-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--text);
}

.share-modal__qr {
  width: 188px;
  height: 188px;
  display: block;
  margin: 0 auto 14px;
  border: 1px solid var(--line);
}

.share-modal__panel p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 960px) {
  .overview,
  .portal-grid,
  .guidance-cards,
  .market-cards,
  .safety-overview,
  .safety-detail,
  .faers-kpis,
  .faers-grid,
  .monitoring-grid,
  .access-overview,
  .huashan-identity,
  .huashan-overview,
  .huashan-paper,
  .china-access-grid,
  .access-checklist,
  .status-overview,
  .i18n-overview,
  .source-status-grid,
  .i18n-grid,
  .terminology-status,
  .status-outputs,
  .evidence-chain-summary,
  .evidence-rule-grid,
  .evidence-chain-meta,
  .review-principles,
  .disclaimer-grid,
  .workspace-grid,
  .toolbar,
  .trial-tools,
  .treatment-tools {
    grid-template-columns: 1fr;
  }

  .source-panel {
    position: static;
  }

  .huashan-identity {
    display: grid;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: 430px;
  }

  .hero__content {
    padding-top: 44px;
  }

  .section-heading,
  .trial-card__head,
  .latest-card__head,
  .safety-card__head,
  .china-access-card__head,
  .evidence-chain-card__head,
  .review-card__head,
  .status-block__head,
  .treatment-card__head {
    display: grid;
  }

  .china-tools,
  .china-card,
  .huashan-paper__footer,
  .faers-bar,
  .latest-intel-grid,
  .treatment-grid {
    grid-template-columns: 1fr;
  }

  .faers-disclaimer {
    display: grid;
  }

  .faers-bar strong {
    text-align: left;
  }

  .huashan-paper__footer {
    display: grid;
    justify-content: stretch;
  }

  .china-card__date {
    min-height: 46px;
    place-items: start;
  }
}

/* Conference long-form page */
.article-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid rgba(19, 122, 118, 0.24);
  border-radius: 999px;
  background: #eef7f4;
  color: var(--teal-dark);
  font-size: 0.86rem;
  font-weight: 850;
  white-space: nowrap;
}

.conference-hero {
  background:
    linear-gradient(90deg, rgba(18, 28, 35, 0.82), rgba(18, 28, 35, 0.48)),
    url("assets/hero-research-hub.png") center / cover;
}

.conference-brief-grid,
.takeaway-grid {
  display: grid;
  gap: 12px;
}

.conference-brief-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}


.conference-highlight-index {
  align-items: stretch;
}

.conference-highlight-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 100%;
}

.conference-highlight-card strong a {
  color: inherit;
  text-decoration: none;
}

.conference-highlight-card strong a:hover,
.conference-card-link:hover,
.conference-back-link:hover {
  color: var(--teal-dark);
}

.conference-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(214, 224, 226, 0.72);
  background: #eef5f5;
}

.conference-card-link,
.conference-back-link {
  color: var(--teal);
  font-weight: 850;
  text-decoration: none;
}

.conference-card-link {
  margin-top: auto;
}
.conference-primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 42px;
  margin-top: auto;
  padding: 10px 16px;
  border: 1px solid rgba(19, 122, 118, 0.48);
  border-radius: 8px;
  background: #e4f5f1;
  color: var(--teal-dark);
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(16, 105, 101, 0.12);
}

.conference-primary-link:visited {
  color: var(--teal-dark);
}

.conference-primary-link:hover,
.conference-primary-link:focus-visible {
  border-color: var(--teal-dark);
  background: var(--teal-dark);
  color: #fff;
  outline: 3px solid rgba(19, 122, 118, 0.18);
  outline-offset: 2px;
}

.conference-primary-link:active {
  transform: translateY(1px);
}

.conference-directory-brief,
.conference-feature-card {
  border-color: rgba(19, 122, 118, 0.38);
  background: #f2faf8;
}

.conference-feature-card {
  grid-column: span 2;
}

.conference-note-card {
  justify-content: center;
}

.conference-back-link {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 18px;
  padding: 9px 12px;
  border: 1px solid rgba(19, 122, 118, 0.22);
  border-radius: 8px;
  background: #f3faf8;
}

.conference-detail-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.conference-detail-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.conference-detail-media figcaption {
  padding: 10px 14px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.conference-brief-grid article,
.takeaway-grid article,
.article-title-block,
.key-takeaways,
.conference-section,
.article-disclaimer {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.conference-brief-grid span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.conference-brief-grid strong,
.takeaway-grid strong {
  display: block;
  margin: 8px 0;
  color: var(--ink);
  font-size: 1.08rem;
}

.conference-brief-grid p,
.takeaway-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(190px, 250px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.article-toc {
  position: sticky;
  top: 14px;
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfd;
}

.article-toc strong {
  color: var(--ink);
  font-size: 1rem;
}

.article-toc a {
  display: block;
  padding: 8px 0;
  border-top: 1px solid rgba(214, 224, 226, 0.75);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.45;
  text-decoration: none;
}

.article-toc a:hover {
  color: var(--teal-dark);
}

.conference-article {
  display: grid;
  gap: 18px;
}
.conference-directory-page {
  display: block;
}

.conference-directory-page .conference-article {
  width: 100%;
}

.article-title-block h2,
.key-takeaways h2,
.conference-section h2 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 1.46rem;
  line-height: 1.3;
}

.article-title-block p,
.conference-section p,
.article-disclaimer p {
  color: var(--text);
  line-height: 1.85;
}

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

.conference-subsection {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.conference-subsection h3 {
  margin-bottom: 10px;
  color: var(--teal-dark);
  font-size: 1.16rem;
  line-height: 1.45;
}

.trend-line {
  padding: 12px 14px;
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  background: #fff9ed;
  color: var(--ink);
  font-weight: 780;
}

.conference-table-wrap {
  overflow-x: auto;
  margin: 14px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.conference-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  background: #fff;
}
.meeting-calendar-table {
  min-width: 1180px;
}
.meeting-year-select {
  min-width: 96px;
  padding: 8px 34px 8px 10px;
  border-color: rgba(19, 122, 118, 0.32);
  background-color: #f8fcfb;
  color: var(--teal-dark);
  font-weight: 850;
}

.conference-table th,
.conference-table td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  line-height: 1.55;
}

.conference-table th {
  background: #eef5f5;
  color: var(--teal-dark);
  font-weight: 850;
}

.reference-section details {
  margin-top: 12px;
}

.reference-section summary {
  cursor: pointer;
  color: var(--teal-dark);
  font-weight: 850;
}

.reference-list {
  display: grid;
  gap: 8px;
  margin: 14px 0 0 18px;
  color: var(--text);
  line-height: 1.65;
}

.article-disclaimer {
  border-color: rgba(181, 74, 62, 0.24);
  background: #fff8f6;
}

.article-disclaimer strong {
  color: #9d3e34;
}

@media (max-width: 960px) {
  .article-layout,
  .conference-brief-grid,
  .takeaway-grid {
    grid-template-columns: 1fr;
  }

  .article-toc {
    position: static;
  }

  .conference-feature-card {
    grid-column: auto;
  }
}

@media (max-width: 680px) {
  .article-title-block,
  .key-takeaways,
  .conference-section,
  .article-disclaimer,
  .conference-brief-grid article,
  .takeaway-grid article {
    padding: 16px;
  }

  .conference-section h2,
  .article-title-block h2,
  .key-takeaways h2 {
    font-size: 1.24rem;
  }
}
@media (max-width: 760px) {
  .mobile-nav-toggle {
    position: fixed;
    right: 14px;
    bottom: calc(18px + env(safe-area-inset-bottom));
    z-index: 72;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 62px;
    min-height: 44px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
    box-shadow: 0 12px 32px rgba(10, 28, 38, 0.26);
    font: inherit;
    font-size: 0.96rem;
    font-weight: 850;
    letter-spacing: 0;
  }

  .mobile-nav-toggle[aria-expanded="true"] {
    background: var(--teal-dark);
  }

  .mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 60;
    width: 100%;
    height: 100%;
    border: 0;
    background: rgba(12, 28, 36, 0.28);
  }

  body.mobile-nav-open .mobile-nav-backdrop {
    display: block;
  }

  .section-nav {
    position: fixed;
    top: auto;
    right: 12px;
    bottom: calc(72px + env(safe-area-inset-bottom));
    left: 12px;
    z-index: 71;
    display: none;
    max-height: min(68vh, 520px);
    overflow: auto;
    margin: 0;
    padding: 14px;
    border-radius: 16px;
    box-shadow: 0 22px 54px rgba(10, 28, 38, 0.24);
    -webkit-overflow-scrolling: touch;
  }

  .section-nav.is-open {
    display: flex;
  }

  .section-nav a,
  .section-nav .language-toggle {
    flex: 1 1 calc(33.333% - 8px);
  }

  .section-nav a {
    justify-content: center;
    min-width: 92px;
    text-align: center;
  }

  .section-nav .language-toggle {
    justify-content: center;
    min-width: 170px;
  }

  .page-hero {
    min-height: 0;
  }

  .page-hero > div {
    width: min(100% - 28px, 1200px);
    padding: 44px 0 28px;
  }

  .page-hero h1 {
    font-size: clamp(2rem, 11vw, 3rem);
    line-height: 1.08;
  }
}

@media (max-width: 430px) {
  .section-nav a,
  .section-nav .language-toggle {
    flex-basis: calc(50% - 8px);
  }

  .section-nav {
    max-height: min(72vh, 560px);
  }
}

/* Mobile readability hardening: keep pages from being wider than the viewport in WeChat and small browsers. */
@media (max-width: 760px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
  }

  body {
    font-size: 16px;
    line-height: 1.62;
  }

  input,
  select,
  textarea,
  button {
    max-width: 100%;
    font-size: 16px;
  }

  main > * {
    min-width: 0;
  }

  .hero__content,
  main,
  footer,
  .page-hero > div {
    width: min(100% - 24px, 1200px);
  }

  h1,
  .page-hero h1 {
    max-width: 100%;
    font-size: clamp(1.78rem, 9.2vw, 2.7rem);
    line-height: 1.14;
  }

  h2,
  .section-heading h2 {
    font-size: clamp(1.32rem, 6.2vw, 1.8rem);
    line-height: 1.24;
  }

  h3 {
    line-height: 1.32;
  }

  p,
  li,
  dd,
  dt,
  .article-title-block p,
  .conference-section p,
  .article-disclaimer p,
  .item p,
  .latest-card details p,
  .huashan-paper details p {
    line-height: 1.78;
  }

  .module-section,
  .feed-section,
  .latest-section,
  .guidance-section,
  .matrix-section,
  .trial-section,
  .market-section,
  .china-section,
  .treatment-section,
  .source-panel {
    max-width: 100%;
    padding: 16px;
    margin-bottom: 16px;
  }

  .portal-card,
  .guidance-card,
  .trial-card,
  .latest-card,
  .treatment-card,
  .item,
  .market-card,
  .safety-card,
  .china-access-card,
  .evidence-chain-card,
  .review-card,
  .source-status-card,
  .i18n-card,
  .conference-highlight-card,
  .article-title-block,
  .key-takeaways,
  .conference-section,
  .article-disclaimer {
    min-width: 0;
    max-width: 100%;
  }

  .latest-card__head span,
  .trial-card__head strong,
  .market-card__head strong,
  .safety-card__head strong,
  .china-access-card__head strong,
  .treatment-card__head strong,
  .i18n-card__head strong,
  .source-status-card strong,
  .pill,
  .tags span {
    max-width: 100%;
    white-space: normal;
    text-align: left;
  }

  .matrix-table,
  .table-scroll,
  .conference-table-wrap {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .matrix-table table {
    min-width: min(760px, 210vw);
  }

  .conference-table {
    min-width: min(520px, 160vw);
  }

  .meeting-calendar-table {
    min-width: min(1180px, 310vw);
  }

  .conference-detail-media img,
  .conference-card-image {
    height: auto;
  }
}

@media (max-width: 380px) {
  .hero__content,
  main,
  footer,
  .page-hero > div {
    width: min(100% - 20px, 1200px);
  }

  h1,
  .page-hero h1 {
    font-size: clamp(1.62rem, 8.8vw, 2.25rem);
  }

  .module-section,
  .feed-section,
  .latest-section,
  .guidance-section,
  .matrix-section,
  .trial-section,
  .market-section,
  .china-section,
  .treatment-section,
  .source-panel,
  .article-title-block,
  .key-takeaways,
  .conference-section,
  .article-disclaimer,
  .conference-brief-grid article,
  .takeaway-grid article {
    padding: 14px;
  }
}
