/* ============================================================
   MSCI ESG 行业关键议题查询 — 全局样式
   Light Mode (默认) / Dark Mode
   ============================================================ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Light Theme (默认) ── */
:root {
  --bg: #f5f6f8;
  --bg-card: #ffffff;
  --bg-secondary: #eef0f4;
  --border: #d8dce5;
  --fg: #1a1a2e;
  --fg-muted: #6b7280;
  --primary: #16a34a;
  --primary-fg: #ffffff;
  --primary-hover: #15803d;
  --esg-e: #16a34a;
  --esg-s: #2563eb;
  --esg-g: #d97706;
  --risk-bg: rgba(239, 68, 68, 0.08);
  --risk-fg: #dc2626;
  --opp-bg: rgba(22, 163, 74, 0.08);
  --opp-fg: #16a34a;
  --warn-bg: rgba(217, 119, 6, 0.08);
  --warn-fg: #d97706;
  --radius: 8px;
  --font: -apple-system, "PingFang SC", "Microsoft YaHei", "Segoe UI", sans-serif;
  --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-hover: 0 4px 12px rgba(0,0,0,0.1);
}

/* ── Dark Theme ── */
[data-theme="dark"] {
  --bg: #141820;
  --bg-card: #1c2230;
  --bg-secondary: #222a38;
  --border: #2e3a4e;
  --fg: #f0f4f8;
  --fg-muted: #7a8899;
  --primary: #4ade80;
  --primary-fg: #141820;
  --primary-hover: #22c55e;
  --esg-e: #4ade80;
  --esg-s: #60a5fa;
  --esg-g: #fbbf24;
  --risk-bg: rgba(239, 68, 68, 0.12);
  --risk-fg: #f87171;
  --opp-bg: rgba(74, 222, 128, 0.12);
  --opp-fg: #4ade80;
  --warn-bg: rgba(251, 191, 36, 0.12);
  --warn-fg: #fbbf24;
  --shadow: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-hover: 0 4px 12px rgba(0,0,0,0.4);
}

/* ── Base ── */
html {
  background: #1f2937;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  transition: background 0.2s, color 0.2s;
}

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

/* ── Main ── */
main { padding: 32px 0 64px; }

#footer-placeholder {
  background: #1f2937;
}

body.msci-page {
  background: #1f2937;
}

body.msci-page .hero {
  background: var(--bg);
}

body.msci-page .section {
  background: var(--bg);
  padding-bottom: 0;
}

#footer-placeholder .ohesg-footer {
  margin-top: 0;
  margin-bottom: 0;
}

/* ── Container ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Legacy local header (kept for generated fragments; shared nav uses .ohesg-* classes) ── */
.msci-local-header {
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 100;
  transition: background 0.2s;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 36px; height: 36px;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.logo-icon svg { width: 18px; height: 18px; color: var(--primary-fg); }
.logo-badge-text {
  color: var(--primary-fg);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
  line-height: 1;
}
.logo-name { font-size: 16px; font-weight: 600; }
.msci-local-nav { display: flex; gap: 24px; align-items: center; }
.msci-local-nav a { font-size: 13px; color: var(--fg-muted); transition: color .15s; }
.msci-local-nav a:hover, .msci-local-nav a.active { color: var(--fg); }

/* ── Theme Toggle ── */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: transparent;
  color: var(--fg-muted);
  font-size: 13px;
  font-family: var(--font);
  cursor: pointer;
  transition: all .15s;
}
.theme-toggle:hover { border-color: var(--primary); color: var(--fg); }
.theme-toggle svg { width: 14px; height: 14px; }

/* ── Breadcrumb ── */
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 32px; }
.breadcrumb a { font-size: 13px; color: var(--fg-muted); display: flex; align-items: center; gap: 4px; }
.breadcrumb a:hover { color: var(--fg); }
.breadcrumb-sep { color: var(--fg-muted); font-size: 13px; }
.breadcrumb-current { font-size: 13px; color: var(--fg); }

/* ── Hero ── */
.hero {
  border-bottom: 1px solid var(--border);
  padding: 40px 0 24px;
  text-align: center;
}
.hero h1 { font-size: 40px; font-weight: 700; letter-spacing: -0.5px; line-height: 1.2; }
.hero p { margin-top: 20px; font-size: 16px; color: var(--fg-muted); width: 75%; margin-left: auto; margin-right: auto; }

/* ── Search ── */
.search-wrap {
  margin-top: 36px;
  position: relative;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.search-icon {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  color: var(--fg-muted); pointer-events: none;
}
.search-wrap input {
  width: 100%; height: 52px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 0 16px 0 48px;
  font-size: 15px; color: var(--fg); font-family: var(--font);
  outline: none; transition: border-color .15s;
}
.search-wrap input::placeholder { color: var(--fg-muted); }
.search-wrap input:focus { border-color: var(--primary); }
.search-wrap input:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }

/* ── Stats ── */
.stats { margin-top: 36px; display: flex; align-items: center; justify-content: center; gap: 32px; }
.stat-num { font-size: 28px; font-weight: 700; color: var(--primary); }
.stat-label { font-size: 12px; color: var(--fg-muted); margin-top: 2px; }
.stat-divider { width: 1px; height: 36px; background: var(--border); }

/* ── Section ── */
.section { padding: 24px 0 56px; }
.section-title { font-size: 20px; font-weight: 600; }
.section-sub { margin-top: 6px; font-size: 13px; color: var(--fg-muted); }

/* ── Filter Row ── */
.filter-row { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 8px; }
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 6px; font-size: 13px;
  font-family: var(--font); cursor: pointer;
  border: 1px solid var(--border); background: transparent;
  color: var(--fg-muted); transition: all .15s;
}
.btn:hover { border-color: var(--primary); color: var(--fg); }
.btn:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
.btn.active { background: var(--primary); border-color: var(--primary); color: var(--primary-fg); font-weight: 500; }

/* ── Badge Filter ── */
.badge-filter {
  display: inline-flex; align-items: center;
  padding: 4px 10px; border: 1px solid var(--border);
  border-radius: 999px; background: transparent;
  color: var(--fg-muted); font-size: 12px;
  cursor: pointer; font-family: var(--font); transition: all .15s;
}
.badge-filter:hover { border-color: var(--primary); color: var(--primary); }
.badge-filter:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
.badge-filter.active { background: var(--primary); border-color: var(--primary); color: var(--primary-fg); }

/* ── List Header ── */
.list-header {
  margin-top: 32px; margin-bottom: 16px;
  font-size: 15px; font-weight: 500;
  display: flex; align-items: center; justify-content: space-between;
}
.list-header span { color: var(--fg-muted); font-weight: 400; font-size: 13px; margin-left: 6px; }

/* ── Cards Grid ── */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid { grid-template-columns: 1fr; } }

.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
  cursor: pointer; transition: border-color .15s, background .15s, box-shadow .15s;
  display: flex; flex-direction: column; gap: 10px;
}
.card:hover { border-color: color-mix(in srgb, var(--primary) 50%, transparent); background: var(--bg-secondary); box-shadow: var(--shadow-hover); }
.card-top { display: flex; align-items: flex-start; justify-content: space-between; }
.sector-tag {
  background: var(--bg-secondary); color: var(--fg-muted);
  font-size: 11px; padding: 3px 8px; border-radius: 4px;
}
.card-arrow { color: var(--fg-muted); transition: transform .15s, color .15s; }
.card:hover .card-arrow { transform: translateX(3px); color: var(--primary); }
.card-name { font-size: 15px; font-weight: 600; }
.card-name-en { font-size: 12px; color: var(--fg-muted); }
.card-code { font-size: 11px; color: var(--fg-muted); font-family: monospace; margin-top: 2px; }
.card-issues { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 4px; }
.card-issue-tag {
  font-size: 11px; padding: 2px 6px; border-radius: 4px;
  background: var(--bg-secondary); color: var(--fg-muted);
}

/* ── Weight Card ── */
.weight-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; margin-bottom: 28px;
  transition: background 0.2s;
}
.weight-card-title { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.weight-card-sub { font-size: 13px; color: var(--fg-muted); margin-bottom: 20px; }
.weight-bar { display: flex; height: 36px; border-radius: 8px; overflow: hidden; }
.weight-bar-e { background: var(--esg-e); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; color: #fff; cursor: pointer; transition: opacity 0.2s; user-select: none; }
.weight-bar-s { background: var(--esg-s); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; color: #fff; cursor: pointer; transition: opacity 0.2s; user-select: none; }
.weight-bar-g { background: var(--esg-g); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; color: #1a1a2e; cursor: pointer; transition: opacity 0.2s; user-select: none; }
.weight-legend { display: flex; gap: 24px; margin-top: 14px; }
.weight-legend .legend-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--fg-muted); }
.legend-dot { width: 10px; height: 10px; border-radius: 50%; }

/* ── Filter Section ── */
.filter-section { margin-bottom: 28px; }
.filter-label { font-size: 13px; color: var(--fg-muted); margin-bottom: 10px; display: block; }

/* ── Pillar Badge ── */
.pillar-badge {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: #fff;
}
.pillar-e { background: var(--esg-e); color: #fff; }
.pillar-s { background: var(--esg-s); color: #fff; }
.pillar-g { background: var(--esg-g); color: #1a1a2e; }

/* ── Issue Card ── */
.issues-title { font-size: 18px; font-weight: 600; margin-bottom: 16px; }
.issues-title span { font-size: 14px; font-weight: 400; color: var(--fg-muted); margin-left: 8px; }
.issues-list { display: flex; flex-direction: column; gap: 12px; }

.issue-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; transition: border-color .15s;
}
.issue-card:hover { border-color: color-mix(in srgb, var(--primary) 40%, transparent); }
.issue-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 18px 20px; cursor: pointer; gap: 16px;
}
.issue-left { display: flex; align-items: flex-start; gap: 16px; flex: 1; min-width: 0; }
.issue-meta { flex: 1; min-width: 0; }
.issue-name-row { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.issue-name { font-size: 15px; font-weight: 600; }
.tag { display: inline-flex; align-items: center; padding: 2px 8px; border-radius: 4px; font-size: 11px; font-weight: 500; }
.tag-risk { background: var(--risk-bg); color: var(--risk-fg); }
.tag-opp  { background: var(--opp-bg);  color: var(--opp-fg); }
.tag-warn { background: var(--warn-bg); color: var(--warn-fg); border: 1px solid color-mix(in srgb, var(--warn-fg) 30%, transparent); }
.issue-name-en { font-size: 12px; color: var(--fg-muted); margin-top: 4px; }
.theme-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.theme-tag { font-size: 11px; color: var(--fg-muted); background: var(--bg-secondary); padding: 2px 8px; border-radius: 999px; }

.issue-right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.issue-weight { text-align: right; }
.weight-num { font-size: 22px; font-weight: 700; }
.weight-label { font-size: 11px; color: var(--fg-muted); }
.color-e { color: var(--esg-e); }
.color-s { color: var(--esg-s); }
.color-g { color: var(--esg-g); }
.rank-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg-secondary); font-size: 13px; font-weight: 700;
  color: var(--fg-muted); flex-shrink: 0;
}
.rank-badge.top3 { background: var(--primary); color: var(--primary-fg); }
.chevron { color: var(--fg-muted); transition: transform .2s; flex-shrink: 0; }
.chevron.open { transform: rotate(180deg); }

/* ── Issue Detail ── */
.issue-detail { border-top: 1px solid var(--border); padding: 20px; display: none; }
.issue-detail.open { display: block; }
.detail-section { margin-bottom: 24px; }
.detail-section:last-child { margin-bottom: 0; }
.detail-title { font-size: 13px; font-weight: 600; margin-bottom: 10px; color: var(--fg); }
.introduction-text { font-size: 14px; color: var(--fg-muted); line-height: 1.7; }

/* ── Indicators Grid ── */
.indicators-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (max-width: 700px) { .indicators-grid { grid-template-columns: 1fr; } }
.indicator-card {
  background: var(--bg-secondary); border: 1px solid var(--border);
  border-radius: 6px; padding: 14px;
}
.indicator-dot-row { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.indicator-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.indicator-name { font-size: 13px; font-weight: 600; }
.indicator-name-en { font-size: 11px; color: var(--fg-muted); margin-bottom: 8px; }
.indicator-desc { font-size: 12px; color: var(--fg-muted); line-height: 1.5; }

/* ── GRI Mapping ── */
.gri-box { background: var(--bg-secondary); border-radius: 6px; padding: 16px; }
.gri-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.gri-tag {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 5px 12px; background: var(--bg-card);
  border-radius: 6px; font-size: 12px; color: var(--primary);
  cursor: pointer; transition: opacity .15s;
}
.gri-tag:hover { opacity: .8; }

/* ── Governance Section ── */
.gov-section {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); margin-top: 32px; overflow: hidden;
}
.gov-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; cursor: pointer;
}
.gov-header-left { display: flex; align-items: center; gap: 12px; }
.gov-badge {
  background: var(--esg-g); width: 32px; height: 32px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #1a1a2e;
}
.gov-title { font-size: 15px; font-weight: 600; }
.gov-sub { font-size: 12px; color: var(--fg-muted); margin-top: 2px; }
.gov-body { border-top: 1px solid var(--border); padding: 20px; display: none; }
.gov-body.open { display: block; }
.gov-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (max-width: 700px) { .gov-grid { grid-template-columns: 1fr; } }
.gov-item { background: var(--bg-secondary); border-radius: 6px; padding: 16px; }
.gov-item-name { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.gov-item-en { font-size: 11px; color: var(--fg-muted); margin-bottom: 8px; }
.gov-item-desc { font-size: 12px; color: var(--fg-muted); line-height: 1.5; }

/* ── Bilingual Toggle ── */
.bilingual { cursor: pointer; transition: background 0.15s; border-radius: 3px; }
.bilingual:hover { background: var(--bg-secondary); }

/* ── Footnote ── */
.footnote-ref { font-size: 11px; color: var(--fg-muted); font-weight: 400; margin-left: 4px; }
.footnote { margin-top: 32px; padding: 16px; background: var(--bg-secondary); border-radius: 8px; border: 1px solid var(--border); }
.footnote p { font-size: 12px; color: var(--fg-muted); line-height: 1.6; }

/* ── Legend (Issue Tag Explanation) ── */
.legend-toggle {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; color: var(--fg-muted); cursor: pointer;
  padding: 4px 8px; border-radius: 4px; margin: 6px 0 10px;
  transition: background 0.15s, color 0.15s; user-select: none;
  opacity: 0.75;
}
.legend-toggle:hover { background: var(--bg-secondary); color: var(--fg); opacity: 1; }
.legend-box {
  background: var(--bg-secondary); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 18px; margin-bottom: 24px;
  display: flex; flex-direction: column; gap: 14px;
}
.legend-box .legend-item {
  display: flex; align-items: baseline; gap: 10px;
  font-size: 12px; color: var(--fg-muted); line-height: 1.9;
  padding: 2px 0;
}
.legend-item .tag { flex-shrink: 0; font-size: 11px; }

/* ── Top 5 Module ── */
.top5-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; margin-bottom: 28px;
}
.top5-title { font-size: 15px; font-weight: 600; margin-bottom: 16px; }
.top5-list { display: flex; flex-direction: column; gap: 10px; }
.top5-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px; background: var(--bg-secondary);
  border-radius: 6px;
}
.top5-rank {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; flex-shrink: 0;
}
.top5-rank.r1 { background: var(--primary); color: var(--primary-fg); }
.top5-rank.r2 { background: var(--esg-s); color: #fff; }
.top5-rank.r3 { background: var(--esg-g); color: #1a1a2e; }
.top5-rank.r4, .top5-rank.r5 { background: var(--bg-card); color: var(--fg-muted); border: 1px solid var(--border); }
.top5-name { flex: 1; font-size: 14px; font-weight: 500; }
.top5-weight { font-size: 14px; font-weight: 600; color: var(--primary); }

/* ── Sector Header ── */
.sector-header { margin-bottom: 32px; }
.sector-header-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: color-mix(in srgb, var(--primary) 10%, transparent);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.sector-header h1 { font-size: 28px; font-weight: 700; }
.sector-header .name-en { font-size: 16px; color: var(--fg-muted); margin-top: 4px; }
.sector-header .desc { margin-top: 12px; font-size: 14px; color: var(--fg-muted); line-height: 1.7; }

/* ── Industry Header ── */
.industry-header { margin-bottom: 32px; }
.industry-header h1 { font-size: 28px; font-weight: 700; }
.industry-header .name-en { font-size: 16px; color: var(--fg-muted); margin-top: 4px; }
.industry-header .gics-code { font-size: 12px; color: var(--fg-muted); font-family: monospace; margin-top: 6px; }
.industry-header .desc { margin-top: 12px; font-size: 14px; color: var(--fg-muted); line-height: 1.7; word-break: normal; overflow-wrap: normal; }

/* ── Share Button ── */
.btn-share {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; background: transparent;
  border: 1px solid var(--border); border-radius: 6px;
  color: var(--fg-muted); font-size: 13px;
  cursor: pointer; font-family: var(--font); transition: all .15s;
}
.btn-share:hover { border-color: var(--fg-muted); color: var(--fg); }
.btn-share.copied { border-color: var(--primary); color: var(--primary); }

/* ── No Results ── */
.no-results { grid-column: 1/-1; text-align: center; padding: 48px; color: var(--fg-muted); }

/* ── Footer ── */
footer { border-top: 1px solid var(--border); padding: 28px 0; }
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; color: var(--fg-muted);
}

/* ── Sector Link ── */
.sector-link { font-size: 13px; color: var(--primary); }
.sector-link:hover { text-decoration: underline; }

/* ── FAQ Page ── */
.faq-hero { text-align: center; padding: 48px 0 32px; }
.faq-hero-icon { width: 48px; height: 48px; margin: 0 auto 16px; background: var(--primary); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #fff; }
.faq-hero h1 { font-size: 28px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.5px; }
.faq-hero-sub { font-size: 14px; color: var(--fg-muted); max-width: 480px; margin: 0 auto; line-height: 1.6; }
.faq-list { margin: 0 auto; padding-bottom: 48px; }
.faq-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 10px; margin-bottom: 10px; overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.faq-item:hover { border-color: var(--primary); box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.faq-q {
  display: flex; align-items: center; gap: 14px; padding: 18px 20px;
  cursor: pointer; font-size: 15px; font-weight: 600; transition: background 0.15s; user-select: none;
}
.faq-q:hover { background: var(--bg-secondary); }
.faq-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--bg-secondary); color: var(--primary);
  font-size: 13px; font-weight: 700; flex-shrink: 0;
  border: 1px solid var(--border); transition: all 0.25s;
}
.faq-item.open .faq-num { background: var(--primary); color: #fff; border-color: var(--primary); }
.faq-chevron { margin-left: auto; flex-shrink: 0; color: var(--fg-muted); transition: transform 0.25s; }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--primary); }
.faq-a {
  font-size: 14px; color: var(--fg-muted); line-height: 1.85;
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  border-top: 0 solid var(--border);
}
.faq-item.open .faq-a { max-height: 2000px; padding: 18px 20px 20px 64px; border-top-width: 1px; }
.faq-a ul { margin: 0; padding-left: 16px; list-style: none; display: flex; flex-direction: column; gap: 8px; }
.faq-a li { position: relative; padding-left: 16px; }
.faq-a li::before { content: ''; position: absolute; left: 0; top: 9px; width: 5px; height: 5px; border-radius: 50%; background: var(--primary); opacity: 0.5; }
.faq-a strong { color: var(--fg); font-weight: 600; }

/* ── FAQ Summary on Homepage ── */
.faq-summary-wrap { margin: 32px 0 0; padding-bottom: 40px; }
.faq-summary-card {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 8px; text-decoration: none; color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-summary-card:hover { border-color: var(--primary); box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.faq-summary-card-icon {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 6px;
  background: var(--primary); color: #fff; flex-shrink: 0;
}
.faq-summary-card-body { flex: 1; }
.faq-summary-card-text { font-size: 14px; font-weight: 600; }
.faq-summary-card-sub { font-size: 12px; color: var(--fg-muted); margin-top: 1px; }
.faq-summary-card-arrow { color: var(--fg-muted); flex-shrink: 0; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero h1 { font-size: 28px; }
  .hero p { font-size: 14px; }
  .stats { gap: 20px; }
  .stat-num { font-size: 22px; }
  .weight-bar { height: 28px; }
  .weight-bar-e, .weight-bar-s, .weight-bar-g { font-size: 11px; }
  .industry-header h1, .sector-header h1 { font-size: 22px; }
  .issue-header { padding: 14px 16px; }
  .issue-detail { padding: 16px; }
  .indicators-grid { grid-template-columns: 1fr; }
  .gov-grid { grid-template-columns: 1fr; }
  .top5-item { padding: 8px 10px; }
}