/* 需求引导交互工程 — journey / wizard / match / summary / demo / blog */

.journey-bar {
  background: linear-gradient(90deg, #e8f8ef 0%, #f0f9f4 100%);
  border-bottom: 1px solid #c8ead8;
  font-size: 13px;
}
.journey-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.journey-bar__text { color: #2c5e40; }
.journey-bar__cta {
  color: #27ae60;
  font-weight: 700;
  white-space: nowrap;
}

.jw-page {
  min-height: 60vh;
  padding: 40px 0 80px;
  background: #f8f9fa;
}
.jw-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}
.jw-progress { margin-bottom: 28px; }
.jw-progress__meta {
  font-size: 13px;
  color: #666;
  margin-bottom: 8px;
}
.jw-progress__bar {
  height: 6px;
  background: #e0e0e0;
  border-radius: 3px;
  overflow: hidden;
}
.jw-progress__fill {
  height: 100%;
  background: #27ae60;
  transition: width .3s;
}
.jw-title {
  font-size: 26px;
  color: #2c3e50;
  margin-bottom: 12px;
  line-height: 1.3;
}
.jw-subtitle {
  font-size: 16px;
  margin: 24px 0 12px;
  color: #444;
}
.jw-why {
  color: #666;
  margin-bottom: 24px;
  line-height: 1.6;
}
.jw-choices {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}
.jw-choice {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 16px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
  font-family: inherit;
  font-size: 15px;
}
.jw-choice:hover { border-color: #27ae60; }
.jw-choice.is-selected {
  border-color: #27ae60;
  background: #f0faf4;
  box-shadow: 0 0 0 1px #27ae60;
}
.jw-choice__icon { font-size: 22px; margin-bottom: 6px; }
.jw-choice__label { font-weight: 600; color: #2c3e50; }
.jw-choice__hint {
  font-size: 13px;
  color: #888;
  margin-top: 4px;
}
.jw-help-btn {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 12px;
  border: 1px dashed #27ae60;
  background: #fff;
  color: #27ae60;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
}
.jw-need-list { display: grid; gap: 10px; margin-bottom: 24px; }
.jw-need {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
  padding: 14px 16px;
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
}
.jw-need.is-on { border-color: #27ae60; background: #f0faf4; }
.jw-need input { grid-row: span 2; align-self: center; }
.jw-need__label { font-weight: 600; }
.jw-need__hint { grid-column: 2; font-size: 13px; color: #888; }
.jw-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 32px;
}

.match-page, .summary-page, .demo-page {
  padding: 40px 0 80px;
  background: #f8f9fa;
}
.match-hero, .summary-hero, .demo-hero {
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 0 20px;
}
.match-hero__eyebrow, .demo-hero__eyebrow, .summary-hero__sub {
  color: #27ae60;
  font-weight: 600;
  font-size: 14px;
}
.match-hero__title, .summary-hero__title, .demo-hero__title {
  font-size: 28px;
  color: #2c3e50;
  margin: 8px 0 20px;
}
.match-summary {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  border-left: 4px solid #27ae60;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
}
.match-summary__line {
  margin-bottom: 10px;
  line-height: 1.6;
  color: #333;
}
.match-section {
  max-width: 900px;
  margin: 0 auto 40px;
  padding: 0 20px;
}
.match-section__title { font-size: 22px; margin-bottom: 8px; }
.match-section__sub { color: #666; margin-bottom: 20px; }
.match-cases { display: grid; gap: 20px; }
.match-case {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
}
.match-case__head { font-weight: 700; font-size: 17px; margin-bottom: 12px; }
.match-case__pain, .match-case__after { color: #555; margin-bottom: 8px; }
.match-case__after { color: #27ae60; font-weight: 600; }
.match-case__meta { font-size: 14px; color: #666; margin: 12px 0; }
.match-case__quote {
  border-left: 3px solid #27ae60;
  padding-left: 12px;
  color: #444;
  font-style: italic;
  margin: 16px 0;
}
.match-case__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.match-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.match-action-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  border: 2px solid #e8e8e8;
  transition: border-color .2s;
}
.match-action-card:hover { border-color: #27ae60; }
.match-action-card--primary { border-color: #27ae60; background: #f0faf4; }
.match-action-card__icon { font-size: 24px; }
.match-action-card span:last-child { font-size: 13px; color: #666; }
.match-foot, .summary-foot { text-align: center; margin-top: 24px; }
.match-foot a, .summary-foot a { color: #27ae60; }

.summary-sheet {
  max-width: 640px;
  margin: 0 auto 24px;
  padding: 24px;
  background: #fff;
  border-radius: 12px;
  white-space: pre-wrap;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.7;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
}
.summary-actions {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.summary-note {
  text-align: center;
  max-width: 560px;
  margin: 20px auto 0;
  color: #666;
  font-size: 14px;
}

.demo-login-box {
  background: #fff;
  padding: 16px;
  border-radius: 8px;
  margin: 16px 0;
  font-size: 14px;
  line-height: 1.8;
}
.demo-guide {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}
.demo-guide__title { font-size: 20px; margin-bottom: 8px; }
.demo-guide__sub { color: #666; margin-bottom: 20px; }
.demo-step {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 12px;
  border: 2px solid #eee;
}
.demo-step.is-done { border-color: #27ae60; background: #f8fdf9; }
.demo-step__num { font-size: 12px; color: #27ae60; font-weight: 600; }
.demo-step__title { font-size: 17px; margin: 8px 0; }
.demo-step__desc { color: #666; margin-bottom: 12px; }
.demo-footer-actions {
  max-width: 720px;
  margin: 32px auto 0;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.demo-done-note {
  width: 100%;
  color: #27ae60;
  font-weight: 600;
}

/* Blog — 列表 + 文章（对齐 micount 视觉层级） */
.blog-page,
.blog-post-page {
  --blog-bg: #0f172a;
  --blog-bg-soft: #1e293b;
  --blog-panel: rgba(30, 41, 59, 0.72);
  --blog-panel-hover: rgba(51, 65, 85, 0.88);
  --blog-border: rgba(255, 255, 255, 0.1);
  --blog-text: #e2e8f0;
  --blog-text-muted: #94a3b8;
  --blog-text-dim: #64748b;
  --blog-accent: #4ade80;
  --blog-accent-soft: rgba(74, 222, 128, 0.12);
  padding: 0 0 72px;
  background: var(--blog-bg);
  color: var(--blog-text);
}

/* 列表页 Hero */
.blog-hero {
  padding: 40px 20px 32px;
  background: linear-gradient(165deg, #0f172a 0%, #1e293b 52%, #134e4a 100%);
  color: #fff;
}
.blog-hero__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 28px;
}
.blog-hero__title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: #fff;
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.blog-hero__sub {
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.65;
  font-size: 15px;
}
.blog-hero__sub a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* 行业专题 Banner — 商务风 */
.blog-sector-banners {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  max-width: 1120px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}
.blog-sector-banner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 16px 18px;
  border-radius: 0;
  text-decoration: none;
  color: #e2e8f0;
  border: none;
  border-left: 3px solid transparent;
  background: rgba(15, 23, 42, 0.55);
  transition: background 0.2s, border-color 0.2s;
  min-height: 156px;
}
.blog-sector-banner:hover {
  background: rgba(30, 41, 59, 0.85);
}
.blog-sector-banner.is-active {
  background: rgba(30, 41, 59, 0.92);
  border-left-color: var(--sector-accent, #94a3b8);
}
.blog-sector-banner__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 6px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--sector-accent, #94a3b8);
}
.blog-sector-banner__icon svg {
  width: 20px;
  height: 20px;
}
.blog-sector-banner__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #64748b;
}
.blog-sector-banner__title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #f1f5f9;
}
.blog-sector-banner__desc {
  font-size: 12px;
  line-height: 1.5;
  color: #94a3b8;
  flex: 1;
}
.blog-sector-banner__meta {
  font-size: 11px;
  font-weight: 500;
  color: #64748b;
  margin-top: 6px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
@media (max-width: 1024px) {
  .blog-sector-banners {
    grid-template-columns: repeat(3, 1fr);
    border-radius: 8px;
  }
  .blog-sector-banner--all {
    grid-column: span 3;
  }
}
.blog-sector-banner--mfg { --sector-accent: #60a5fa; }
.blog-sector-banner--jewelry { --sector-accent: #d4a853; }
.blog-sector-banner--poultry { --sector-accent: #4ade80; }
.blog-sector-banner--trade { --sector-accent: #fb923c; }
.blog-sector-banner--all { --sector-accent: #cbd5e1; }
.blog-sector-banner--mfg.is-active { border-left-color: #60a5fa; }
.blog-sector-banner--jewelry.is-active { border-left-color: #d4a853; }
.blog-sector-banner--poultry.is-active { border-left-color: #4ade80; }
.blog-sector-banner--trade.is-active { border-left-color: #fb923c; }
.blog-sector-banner--all.is-active { border-left-color: #cbd5e1; }
.blog-hero__demo-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 12px;
  margin: 18px auto 0;
  max-width: 1120px;
  font-size: 12px;
  color: #64748b;
  letter-spacing: 0.02em;
}
.blog-hero__demo-links a {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 4px;
  color: #cbd5e1;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.blog-hero__demo-links a:hover {
  color: #f1f5f9;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.blog-toolbar {
  max-width: 1120px;
  margin: 0 auto 28px;
  padding: 28px 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.blog-search {
  flex: 1;
  min-width: 200px;
  padding: 11px 16px;
  border: 1px solid var(--blog-border);
  border-radius: 6px;
  font-size: 14px;
  background: rgba(15, 23, 42, 0.6);
  color: var(--blog-text);
  transition: border-color 0.2s, background 0.2s;
}
.blog-search::placeholder { color: var(--blog-text-dim); }
.blog-search:focus {
  outline: none;
  border-color: rgba(74, 222, 128, 0.45);
  background: rgba(15, 23, 42, 0.85);
}
.blog-cats { display: flex; flex-wrap: wrap; gap: 8px; }
.blog-cat-btn {
  padding: 7px 14px;
  border: 1px solid var(--blog-border);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  color: var(--blog-text-muted);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.blog-cat-btn:hover {
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--blog-text);
  background: rgba(255, 255, 255, 0.08);
}
.blog-cat-btn.is-active {
  background: rgba(74, 222, 128, 0.12);
  color: var(--blog-accent);
  border-color: rgba(74, 222, 128, 0.35);
}
.blog-cat-btn--featured {
  border-color: rgba(212, 168, 83, 0.35);
  color: #d4a853;
}
.blog-cat-btn--featured.is-active {
  background: rgba(212, 168, 83, 0.12);
  border-color: rgba(212, 168, 83, 0.45);
  color: #fbbf24;
}
.blog-hero__featured {
  display: inline-block;
  margin: 8px 0;
  padding: 7px 14px;
  background: rgba(212, 168, 83, 0.1);
  border: 1px solid rgba(212, 168, 83, 0.35);
  border-radius: 4px;
  color: #fbbf24;
  font-weight: 600;
  text-decoration: none;
}
.blog-hero__featured:hover {
  background: rgba(212, 168, 83, 0.16);
}
.blog-grid {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1px;
  background: var(--blog-border);
  border: 1px solid var(--blog-border);
  border-radius: 8px;
  overflow: hidden;
}
.blog-card {
  background: var(--blog-panel);
  border-radius: 0;
  overflow: hidden;
  border: none;
  border-left: 3px solid transparent;
  display: flex;
  flex-direction: column;
  transition: background 0.2s;
  min-height: 100%;
}
.blog-card:hover {
  background: var(--blog-panel-hover);
}
.blog-card--manufacturing { border-left-color: #60a5fa; }
.blog-card--trade { border-left-color: #fb923c; }
.blog-card--zhubao { border-left-color: #d4a853; }
.blog-card--cost { border-left-color: #fbbf24; }
.blog-card--selection { border-left-color: #a78bfa; }
.blog-card--retail { border-left-color: #f472b6; }
.blog-card--engineering { border-left-color: #22d3ee; }
.blog-card--office { border-left-color: #94a3b8; }
.blog-card--data { border-left-color: #f87171; }
.blog-card--implement { border-left-color: #4ade80; }
.blog-card--excel { border-left-color: #64748b; }
.blog-card__body { padding: 20px 20px 18px; flex: 1; display: flex; flex-direction: column; }
.blog-card__cat {
  font-size: 10px;
  color: var(--blog-text-dim);
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.blog-card__title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.45;
}
.blog-card__title a { color: #f1f5f9; text-decoration: none; }
.blog-card__title a:hover { color: var(--blog-accent); }
.blog-card__excerpt {
  font-size: 13px;
  color: var(--blog-text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--blog-text-dim);
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.blog-card__read {
  color: var(--blog-accent);
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  font-size: 12px;
}
.blog-card__read:hover { opacity: 0.85; }
.blog-pagination {
  max-width: 1120px;
  margin: 28px auto 0;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.blog-pagination button {
  padding: 7px 13px;
  border: 1px solid var(--blog-border);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 4px;
  cursor: pointer;
  color: var(--blog-text-muted);
  font-size: 13px;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.blog-pagination button:hover:not(:disabled) {
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--blog-text);
}
.blog-pagination button.is-active {
  background: rgba(74, 222, 128, 0.12);
  color: var(--blog-accent);
  border-color: rgba(74, 222, 128, 0.35);
}
.blog-pagination button:disabled { opacity: .35; cursor: not-allowed; }
.blog-pagination span { color: var(--blog-text-dim); font-size: 13px; align-self: center; }

/* 嵌入模式：其他页面引用 blog 列表 */
.blog-embed {
  padding: 48px 0;
  background: #f8f9fa;
}
.blog-embed .blog-toolbar,
.blog-embed .blog-grid,
.blog-embed .blog-pagination {
  max-width: 1000px;
}
.blog-embed[data-blog-mode="compact"] .blog-grid {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.blog-embed[data-blog-mode="compact"] .blog-card {
  padding: 16px;
}
.blog-embed[data-blog-mode="compact"] .blog-card__title {
  font-size: 15px;
}
.blog-embed[data-blog-mode="compact"] .blog-card__excerpt {
  font-size: 13px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-list-loading,
.blog-list-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--blog-text-muted);
  padding: 40px 16px;
  margin: 0;
  background: var(--blog-panel);
}
.blog-list-empty--error { color: #f87171; }
.blog-more-link {
  display: block;
  max-width: 1120px;
  margin: 20px auto 0;
  padding: 0 20px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--blog-accent);
}
.blog-more-link:hover { opacity: 0.85; }

.blog-post-page { padding-bottom: 80px; }

.blog-breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px 0;
  font-size: 13px;
  color: var(--blog-text-dim);
}
.blog-breadcrumb a {
  color: var(--blog-text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.blog-breadcrumb a:hover { color: var(--blog-accent); }
.blog-breadcrumb span { margin: 0 6px; color: rgba(255, 255, 255, 0.2); }
.blog-breadcrumb__current {
  color: var(--blog-text);
  display: inline-block;
  max-width: min(420px, 50vw);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: bottom;
}

.blog-post-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px 0;
  align-items: start;
}
.blog-post-main { min-width: 0; }
.blog-post-sidebar { align-self: start; }

.blog-post {
  background: var(--blog-panel);
  border-radius: 8px;
  padding: 36px 40px;
  border: 1px solid var(--blog-border);
}

.blog-post__header { margin-bottom: 24px; }

.blog-post__meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--blog-text-dim);
}

.blog-post__cat {
  display: inline-block;
  background: var(--blog-accent-soft);
  color: var(--blog-accent);
  font-weight: 600;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.blog-post__title {
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  line-height: 1.35;
  margin: 0 0 14px;
  color: #f1f5f9;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.blog-post__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.blog-post__tag {
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--blog-text-muted);
  border: 1px solid var(--blog-border);
}

.blog-post__tldr {
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.2);
  border-radius: 8px;
  padding: 18px 22px;
  margin-bottom: 28px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--blog-text);
}
.blog-post__tldr strong {
  display: block;
  color: var(--blog-accent);
  font-size: 15px;
  margin-bottom: 8px;
  font-weight: 600;
}
.blog-post__tldr p { margin: 0 0 8px; }
.blog-post__tldr p:last-child { margin-bottom: 0; }
.blog-post__tldr-cite { font-size: 12px; color: var(--blog-text-dim) !important; }

.blog-post__toc {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid var(--blog-border);
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 32px;
}
.blog-post__toc-title {
  font-size: 14px;
  color: var(--blog-accent);
  margin: 0 0 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.blog-post__toc ul {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 2;
  column-gap: 24px;
}
.blog-post__toc li { padding: 4px 0; break-inside: avoid; }
.blog-post__toc a {
  font-size: 13px;
  color: var(--blog-text-muted);
  text-decoration: none;
  line-height: 1.5;
}
.blog-post__toc a:hover { color: var(--blog-accent); }

.blog-post__body { margin-bottom: 8px; }

.blog-post__section { margin-bottom: 32px; }
.blog-post__section h2 {
  font-size: 1.125rem;
  color: var(--blog-accent);
  margin: 0 0 16px;
  padding-left: 14px;
  border-left: 3px solid rgba(74, 222, 128, 0.5);
  line-height: 1.4;
  border-bottom: none;
  font-weight: 600;
}
.blog-post__section p {
  line-height: 1.85;
  color: var(--blog-text-muted);
  margin-bottom: 14px;
  font-size: 15px;
}
.blog-post__section--checklist {
  background: rgba(251, 191, 36, 0.06);
  border: 1px solid rgba(251, 191, 36, 0.18);
  border-radius: 8px;
  padding: 20px 22px;
}
.blog-post__section--pitfalls {
  background: rgba(248, 113, 113, 0.06);
  border: 1px solid rgba(248, 113, 113, 0.18);
  border-radius: 8px;
  padding: 20px 22px;
}
.blog-post__section--scene {
  background: rgba(74, 222, 128, 0.06);
  border: 1px solid rgba(74, 222, 128, 0.15);
  border-radius: 8px;
  padding: 20px 22px;
}
.blog-post__section--faq {
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid var(--blog-border);
  border-radius: 8px;
  padding: 20px 22px;
}
.blog-post__section--table {
  padding: 20px 22px;
  border-radius: 8px;
  border: 1px solid var(--blog-border);
  background: rgba(15, 23, 42, 0.35);
}
.blog-post__section--flow {
  padding: 20px 22px;
  border-radius: 8px;
  border: 1px solid rgba(74, 222, 128, 0.15);
  background: rgba(15, 23, 42, 0.35);
}

.blog-table__caption {
  font-size: 13px;
  color: var(--blog-text-dim);
  margin: -8px 0 14px;
  line-height: 1.6;
}
.blog-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -4px;
  padding: 0 4px;
}
.blog-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  line-height: 1.55;
  min-width: 280px;
}
.blog-table thead th {
  background: rgba(74, 222, 128, 0.1);
  color: var(--blog-accent);
  font-weight: 600;
  text-align: left;
  padding: 10px 12px;
  border: 1px solid rgba(74, 222, 128, 0.15);
  white-space: nowrap;
}
.blog-table tbody td {
  padding: 10px 12px;
  border: 1px solid var(--blog-border);
  color: var(--blog-text-muted);
  vertical-align: top;
}
.blog-table tbody tr:nth-child(even) td { background: rgba(255, 255, 255, 0.02); }
.blog-table tbody tr:hover td { background: rgba(74, 222, 128, 0.04); }

.blog-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 640px;
}
.blog-flow__step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.blog-flow__num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  background: rgba(74, 222, 128, 0.15);
  color: var(--blog-accent);
  font-weight: 600;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  border: 1px solid rgba(74, 222, 128, 0.25);
}
.blog-flow__body {
  flex: 1;
  padding-bottom: 4px;
}
.blog-flow__body strong {
  display: block;
  color: #f1f5f9;
  font-size: 14px;
  margin-bottom: 4px;
  font-weight: 600;
}
.blog-flow__body p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--blog-text-muted);
}
.blog-flow__arrow {
  margin: 4px 0 4px 10px;
  padding-left: 18px;
  color: var(--blog-text-dim);
  font-size: 16px;
  line-height: 1;
  opacity: 0.6;
}

.blog-post__cta {
  margin-top: 40px;
  padding: 32px 28px;
  background: linear-gradient(165deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.98) 100%);
  border: 1px solid var(--blog-border);
  border-radius: 8px;
  text-align: center;
  color: var(--blog-text);
}
.blog-post__cta h3 {
  font-size: 20px;
  margin: 0 0 8px;
  color: #f1f5f9;
  border: none;
  padding: 0;
  font-weight: 600;
}
.blog-post__cta-sub {
  font-size: 14px;
  margin-bottom: 20px !important;
  color: var(--blog-text-muted) !important;
}
.blog-post__cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}
.blog-post__cta-btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.blog-post__cta-btn--primary {
  background: rgba(74, 222, 128, 0.15);
  color: var(--blog-accent);
  border: 1px solid rgba(74, 222, 128, 0.35);
}
.blog-post__cta-btn--primary:hover {
  background: rgba(74, 222, 128, 0.22);
}
.blog-post__cta-btn--ghost {
  background: transparent;
  color: var(--blog-text-muted);
  border: 1px solid var(--blog-border);
}
.blog-post__cta-btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--blog-text);
}
.blog-post__cta-contact {
  font-size: 12px;
  margin: 0 !important;
  color: var(--blog-text-dim) !important;
}
.blog-post__cta-contact a { color: var(--blog-accent); font-weight: 500; }

.blog-post-sidebar {
  position: sticky;
  top: 88px;
  font-size: 13px;
  line-height: 1.65;
  color: var(--blog-text-muted);
}
.blog-sidebar__stack { display: flex; flex-direction: column; gap: 12px; }
.blog-sidebar__block {
  background: var(--blog-panel);
  border: 1px solid var(--blog-border);
  border-radius: 8px;
  padding: 18px 16px;
}
.blog-sidebar__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--blog-accent);
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--blog-border);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.blog-sidebar__text { margin: 0 0 10px; font-size: 13px; line-height: 1.65; color: var(--blog-text-muted); }
.blog-sidebar__pill {
  display: inline-block;
  padding: 2px 8px;
  background: var(--blog-accent-soft);
  color: var(--blog-accent);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
a.blog-sidebar__pill:hover {
  background: rgba(74, 222, 128, 0.22);
  color: #86efac;
}
.blog-sidebar__links,
.blog-sidebar__rec,
.blog-sidebar__contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.blog-sidebar__link-item {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.blog-sidebar__link-item:last-child { border-bottom: none; }
.blog-sidebar__link-item a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.hub-link-title {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #f1f5f9;
  line-height: 1.4;
}
.hub-link-desc {
  display: block;
  font-size: 12px;
  color: var(--blog-text-dim);
  margin-top: 3px;
  line-height: 1.45;
}
.blog-sidebar__link-item a:hover .hub-link-title { color: var(--blog-accent); }
.blog-sidebar__rec li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.blog-sidebar__rec li:last-child { border-bottom: none; }
.blog-sidebar__rec a {
  color: var(--blog-text-muted);
  text-decoration: none;
  font-size: 13px;
  line-height: 1.5;
}
.blog-sidebar__rec a:hover { color: var(--blog-accent); }
.blog-sidebar__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.blog-sidebar__tags a {
  background: rgba(255, 255, 255, 0.05);
  color: var(--blog-text-muted);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  text-decoration: none;
  border: 1px solid var(--blog-border);
}
.blog-sidebar__tags a:hover {
  border-color: rgba(74, 222, 128, 0.3);
  color: var(--blog-accent);
}
.blog-sidebar__contact-list li { margin-bottom: 8px; font-size: 13px; }
.blog-sidebar__contact-list a { color: var(--blog-accent); word-break: break-all; }
.blog-sidebar__qr {
  margin: 14px 0 0;
  text-align: center;
}
.blog-sidebar__qr img {
  display: block;
  margin: 0 auto;
  border-radius: 6px;
  border: 1px solid var(--blog-border);
  max-width: 100%;
  height: auto;
}
.blog-sidebar__qr figcaption {
  margin-top: 8px;
  font-size: 11px;
  color: var(--blog-text-dim);
}

.blog-post-nav { margin-top: 32px; }
.blog-post-nav__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: stretch;
}
.blog-post-nav__link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 6px;
  border: 1px solid var(--blog-border);
  background: var(--blog-panel);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, background 0.2s;
  min-height: 4.5rem;
}
.blog-post-nav__link:hover {
  border-color: rgba(74, 222, 128, 0.3);
  background: var(--blog-panel-hover);
}
.blog-post-nav__link--next { text-align: right; }
.blog-post-nav__link--empty {
  visibility: hidden;
  pointer-events: none;
  border: none;
  background: transparent;
  min-height: 0;
  padding: 0;
}
.blog-post-nav__hub {
  align-self: center;
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  color: var(--blog-text-muted);
  text-decoration: none;
  border: 1px solid var(--blog-border);
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}
.blog-post-nav__hub:hover {
  color: var(--blog-accent);
  border-color: rgba(74, 222, 128, 0.35);
}
.blog-post-nav__label {
  font-size: 11px;
  font-weight: 600;
  color: var(--blog-accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.blog-post-nav__title {
  font-size: 13px;
  line-height: 1.5;
  color: #f1f5f9;
  font-weight: 500;
}

/* 嵌入其他浅色页面时保持原卡片风格 */
.blog-embed-wrap .blog-grid {
  background: transparent;
  border: none;
  border-radius: 0;
  gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.blog-embed-wrap .blog-card {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
}
.blog-embed-wrap .blog-card__title a { color: #1e293b; }
.blog-embed-wrap .blog-card__title a:hover { color: #059669; }
.blog-embed-wrap .blog-card__excerpt { color: #64748b; }
.blog-embed-wrap .blog-card__cat { color: #64748b; }
.blog-embed-wrap .blog-card__footer { border-top-color: #f1f5f9; color: #94a3b8; }
.blog-embed-wrap .blog-card__read { color: #059669; }
.blog-embed-wrap .blog-list-loading,
.blog-embed-wrap .blog-list-empty {
  background: transparent;
  color: #64748b;
}

.blog-post-page #blog-post-root > p[style] {
  color: var(--blog-text-muted) !important;
}

@media (max-width: 960px) {
  .blog-post-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .blog-post-sidebar,
  .blog-post-main { grid-column: auto; }
  .blog-post-sidebar { position: static; order: 2; }
  .blog-post-main { order: 1; }
  .blog-post { padding: 24px 20px; }
  .blog-post__toc ul { columns: 1; }
}

@media (max-width: 768px) {
  .blog-post-nav__inner { grid-template-columns: 1fr; }
  .blog-post-nav__hub { order: -1; justify-content: center; margin-bottom: 4px; }
  .blog-post-nav__link--next { text-align: left; }
  .blog-post-nav__link--empty { display: none; }
}

@media (max-width: 768px) {
  .jw-title { font-size: 22px; }
  .match-hero__title, .summary-hero__title { font-size: 24px; }
  .journey-bar__inner { flex-direction: column; align-items: flex-start; }

  /* Blog 列表页 */
  .blog-page,
  .blog-post-page {
    padding-bottom: 56px;
    overflow-x: clip;
  }
  .blog-hero {
    padding: 32px 16px 24px;
    margin-bottom: 0;
  }
  .blog-hero__head {
    margin-bottom: 20px;
  }
  .blog-sector-banners {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .blog-sector-banner {
    min-height: 132px;
    padding: 14px 12px 12px;
  }
  .blog-sector-banner--all {
    grid-column: 1 / -1;
  }
  .blog-hero__title {
    font-size: 22px;
    line-height: 1.35;
  }
  .blog-hero__sub {
    font-size: 14px;
    line-height: 1.65;
  }
  .blog-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 20px 16px 0;
    margin: 0 auto 20px;
  }
  .blog-search {
    width: 100%;
    min-width: 0;
    font-size: 16px; /* 避免 iOS 输入框放大 */
  }
  .blog-cats {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 2px 0 6px;
    margin: 0;
  }
  .blog-cats::-webkit-scrollbar { display: none; }
  .blog-cat-btn {
    flex: 0 0 auto;
    padding: 7px 12px;
    font-size: 12px;
    white-space: nowrap;
  }
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 0 16px;
  }
  .blog-card__banner { height: 60px; font-size: 28px; }
  .blog-card__title {
    font-size: 16px;
    word-break: break-word;
  }
  .blog-card__excerpt {
    font-size: 13px;
  }
  .blog-pagination {
    padding: 0 16px;
    gap: 6px;
    margin-top: 24px;
  }
  .blog-pagination button {
    padding: 7px 11px;
    font-size: 13px;
    min-height: 40px;
  }
  .blog-pagination span {
    font-size: 12px;
    width: 100%;
    text-align: center;
    margin-top: 4px;
  }
  .blog-embed {
    padding: 32px 0;
  }
  .blog-embed[data-blog-mode="compact"] .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-more-link {
    padding: 0 16px;
    margin-top: 16px;
  }

  .blog-breadcrumb { padding: 12px 16px 0; font-size: 13px; }
  .blog-breadcrumb__current { max-width: 180px; }
  .blog-sidebar__block {
    padding: 16px;
  }
  .blog-post__title {
    font-size: 1.25rem;
    line-height: 1.35;
    word-break: break-word;
  }
  .blog-post__section h2 {
    font-size: 1.0625rem;
  }
  .blog-post__section p {
    font-size: 15px;
    line-height: 1.75;
  }
  .blog-post__cta {
    padding: 28px 18px;
  }
  .blog-post__cta-actions {
    flex-direction: column;
  }
  .blog-post__cta-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .blog-hero__title { font-size: 20px; }
  .blog-post__title { font-size: 20px; }
  .blog-pagination button {
    padding: 6px 9px;
    font-size: 12px;
    min-height: 38px;
  }
}
