/* ==========================================================================
   聚鑫汇官网 style.css
   财富管理AI / 家庭财富管理 / 资产配置 / 现金流 / 退休规划 / AI财务代理
   ========================================================================== */

:root {
  --c-bg: #F8F6F0;
  --c-bg-soft: #F1EAD9;
  --c-surface: #FFFFFF;
  --c-navy: #16233F;
  --c-navy-2: #223564;
  --c-teal: #1E6E63;
  --c-teal-soft: #E4F0EC;
  --c-cash: #14748A;
  --c-cash-soft: #E2F0F1;
  --c-gold: #AD8A2E;
  --c-gold-soft: #F5EDD8;
  --c-graphite: #3A3F46;
  --c-text: #23262B;
  --c-text-soft: #5A6169;
  --c-text-faint: #868D96;
  --c-border: #E2DCCC;
  --c-border-soft: #ECE6D8;
  --c-danger-quiet: #8A4B3A;
  --radius-s: 8px;
  --radius-m: 14px;
  --radius-l: 22px;
  --shadow-card: 0 2px 18px rgba(22, 35, 63, 0.07);
  --shadow-pop: 0 10px 34px rgba(22, 35, 63, 0.14);
  --max-width: 1160px;
  --font-base: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; }
li { list-style: none; }
h1, h2, h3, h4, p, figure { margin: 0; }
button { font-family: inherit; cursor: pointer; }
table { border-collapse: collapse; width: 100%; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--c-navy);
  color: #fff;
  padding: 10px 18px;
  z-index: 999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------------------------------- 顶部导航 ---------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 246, 240, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--c-border-soft);
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  color: var(--c-navy);
  letter-spacing: 0.5px;
}
.brand .brand-logo { width: 34px; height: 34px; }
.brand .brand-sub {
  font-size: 12px;
  font-weight: 400;
  color: var(--c-text-faint);
  letter-spacing: 1px;
  margin-left: 4px;
}
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-s);
  background: var(--c-surface);
  position: relative;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: "";
  position: absolute;
  left: 9px; right: 9px;
  height: 2px;
  background: var(--c-navy);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle::before { top: 13px; }
.nav-toggle span { top: 19px; }
.nav-toggle::after { top: 25px; }
.nav-toggle.is-active::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-active::after { transform: translateY(-6px) rotate(-45deg); }
.nav-toggle.is-active span { opacity: 0; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
  display: inline-block;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 15px;
  color: var(--c-graphite);
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-link:hover { background: var(--c-teal-soft); color: var(--c-teal); }
.nav-link.is-active { background: var(--c-navy); color: #fff; }
.nav-link.nav-cta { background: var(--c-gold); color: #fff; }
.nav-link.nav-cta:hover { background: #96772A; color: #fff; }

@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .nav-list {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--c-surface);
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 10px 16px 22px;
    border-bottom: 1px solid var(--c-border);
    box-shadow: var(--shadow-pop);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
    max-height: 80vh;
    overflow-y: auto;
  }
  .nav-list.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-link { padding: 12px 14px; border-radius: var(--radius-s); }
}

/* ---------------------------------- Hero ---------------------------------- */
.hero {
  padding: 56px 0 48px;
  background: linear-gradient(180deg, #F8F6F0 0%, #F1EAD9 100%);
  border-bottom: 1px solid var(--c-border-soft);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--c-teal);
  background: var(--c-teal-soft);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.hero-title {
  font-size: 36px;
  line-height: 1.4;
  color: var(--c-navy);
  font-weight: 800;
  margin-bottom: 18px;
}
.hero-lead {
  font-size: 16px;
  color: var(--c-text-soft);
  line-height: 1.9;
  margin-bottom: 26px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.hero-tag {
  font-size: 12.5px;
  color: var(--c-text-soft);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  padding: 5px 11px;
  border-radius: 999px;
}
.hero-visual {
  background: var(--c-surface);
  border-radius: var(--radius-l);
  padding: 18px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--c-border-soft);
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 27px; }
}

/* ---------------------------------- 按钮 ---------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--c-navy); color: #fff; }
.btn-primary:hover { background: var(--c-navy-2); box-shadow: var(--shadow-card); }
.btn-outline { background: transparent; color: var(--c-navy); border-color: var(--c-navy); }
.btn-outline:hover { background: var(--c-navy); color: #fff; }
.btn-gold { background: var(--c-gold); color: #fff; }
.btn-gold:hover { background: #96772A; }
.btn-ghost { background: var(--c-surface); color: var(--c-teal); border-color: var(--c-border); }

/* ---------------------------------- Section 通用 ---------------------------------- */
.section { padding: 64px 0; }
.section-alt { background: var(--c-surface); border-top: 1px solid var(--c-border-soft); border-bottom: 1px solid var(--c-border-soft); }
.section-soft { background: var(--c-bg-soft); }
.section-head { max-width: 760px; margin: 0 0 36px; }
.section-eyebrow {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-cash);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.section-title {
  font-size: 27px;
  color: var(--c-navy);
  font-weight: 800;
  line-height: 1.5;
}
.section-lead {
  font-size: 15.5px;
  color: var(--c-text-soft);
  margin-top: 12px;
  line-height: 1.85;
}
h1.page-title {
  font-size: 30px;
  color: var(--c-navy);
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 14px;
}

.breadcrumb {
  font-size: 13px;
  color: var(--c-text-faint);
  padding: 16px 0;
}
.breadcrumb a:hover { color: var(--c-teal); }
.breadcrumb .sep { margin: 0 6px; }

/* ---------------------------------- 家庭财富规划链 ---------------------------------- */
.chain-wrap {
  background: var(--c-surface);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius-l);
  padding: 26px;
  box-shadow: var(--shadow-card);
}
.chain-figure { margin: 0; }
.chain-caption {
  font-size: 13px;
  color: var(--c-text-faint);
  margin-top: 14px;
  line-height: 1.7;
}

/* ---------------------------------- 重点长文章 ---------------------------------- */
.feature-article {
  background: var(--c-surface);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius-l);
  padding: 34px;
  margin-bottom: 26px;
  box-shadow: var(--shadow-card);
}
.feature-article + .feature-article { margin-top: 0; }
.article-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--c-text-faint);
  margin-bottom: 14px;
}
.article-cat {
  color: var(--c-teal);
  background: var(--c-teal-soft);
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 600;
}
.article-title {
  font-size: 21px;
  color: var(--c-navy);
  font-weight: 800;
  line-height: 1.55;
  margin-bottom: 16px;
}
.article-body p {
  margin-bottom: 15px;
  color: var(--c-text);
  font-size: 15.5px;
}
.article-body p:last-child { margin-bottom: 0; }
.article-diagram {
  margin: 22px 0;
  padding: 20px;
  background: var(--c-bg-soft);
  border-radius: var(--radius-m);
  border: 1px solid var(--c-border-soft);
}
.article-diagram figcaption {
  font-size: 13px;
  color: var(--c-text-faint);
  margin-top: 12px;
  line-height: 1.7;
}
.article-case {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 18px 0;
}
.case-box {
  background: var(--c-bg-soft);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius-m);
  padding: 16px 18px;
}
.case-box h4 { font-size: 14.5px; color: var(--c-navy); margin-bottom: 8px; font-weight: 700; }
.case-box p { font-size: 14px; color: var(--c-text-soft); margin: 0; }
@media (max-width: 700px) { .article-case { grid-template-columns: 1fr; } }

.pull-quote {
  border-left: 3px solid var(--c-gold);
  padding: 4px 0 4px 18px;
  color: var(--c-navy);
  font-size: 15.5px;
  font-weight: 600;
  margin: 20px 0;
  line-height: 1.8;
}

/* ---------------------------------- 卡片网格（观察 / 摘要） ---------------------------------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .card-grid, .card-grid.cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .card-grid, .card-grid.cols-2, .card-grid.cols-4 { grid-template-columns: 1fr; } }

.obs-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius-m);
  padding: 24px;
  box-shadow: var(--shadow-card);
}
.obs-card .article-title { font-size: 17.5px; }
.obs-card .article-body p { font-size: 14.5px; }

.summary-item {
  background: var(--c-surface);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius-m);
  padding: 20px 22px;
}
.summary-item h4 {
  font-size: 16px;
  color: var(--c-navy);
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.55;
}
.summary-item p { font-size: 14px; color: var(--c-text-soft); margin-bottom: 10px; }
.summary-item .read-link { font-size: 13.5px; color: var(--c-teal); font-weight: 600; }
.summary-item .read-link:hover { text-decoration: underline; }

.hub-block { margin-bottom: 30px; }
.hub-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 8px;
}
.hub-head h3 { font-size: 19px; color: var(--c-navy); font-weight: 800; }
.hub-head .hub-link { font-size: 13.5px; color: var(--c-cash); font-weight: 600; }
.hub-head .hub-link:hover { text-decoration: underline; }

/* ---------------------------------- 概念问答 ---------------------------------- */
.concept-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 760px) { .concept-grid { grid-template-columns: 1fr; } }
.concept-item {
  background: var(--c-surface);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius-m);
  padding: 18px 20px;
}
.concept-item dt {
  font-weight: 700;
  color: var(--c-navy);
  font-size: 15px;
  margin-bottom: 6px;
}
.concept-item dd {
  margin: 0;
  font-size: 14px;
  color: var(--c-text-soft);
  line-height: 1.8;
}

/* ---------------------------------- 表格 ---------------------------------- */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius-m);
  background: var(--c-surface);
  margin: 20px 0;
}
.data-table { min-width: 560px; }
.data-table th, .data-table td {
  padding: 12px 16px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--c-border-soft);
}
.data-table th {
  background: var(--c-bg-soft);
  color: var(--c-navy);
  font-weight: 700;
}
.data-table tr:last-child td { border-bottom: none; }

/* ---------------------------------- FAQ ---------------------------------- */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--c-surface);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius-m);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: transparent;
  border: none;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--c-navy);
  text-align: left;
}
.faq-question .icon {
  flex-shrink: 0;
  width: 20px; height: 20px;
  position: relative;
}
.faq-question .icon::before, .faq-question .icon::after {
  content: "";
  position: absolute;
  background: var(--c-teal);
  transition: transform 0.2s ease;
}
.faq-question .icon::before { top: 9px; left: 2px; right: 2px; height: 2px; }
.faq-question .icon::after { left: 9px; top: 2px; bottom: 2px; width: 2px; }
.faq-item.is-open .icon::after { transform: rotate(90deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-answer-inner {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--c-text-soft);
  line-height: 1.85;
}
.faq-item.is-open .faq-answer { max-height: 600px; }

/* ---------------------------------- Risk / Permission 等阶梯与时间线 ---------------------------------- */
.ladder {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ladder-step {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  padding: 16px 0;
  position: relative;
}
.ladder-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 22px; top: 46px; bottom: -4px;
  width: 2px;
  background: var(--c-border);
}
.ladder-num {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--c-navy);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 15px;
  z-index: 1;
}
.ladder-step.is-approval .ladder-num { background: var(--c-gold); }
.ladder-body h4 { font-size: 15.5px; color: var(--c-navy); font-weight: 700; margin-bottom: 4px; }
.ladder-body p { font-size: 14px; color: var(--c-text-soft); margin: 0; }
.ladder-tag {
  display: inline-block;
  font-size: 12px;
  padding: 2px 9px;
  border-radius: 999px;
  margin-left: 8px;
  background: var(--c-teal-soft);
  color: var(--c-teal);
  font-weight: 600;
  vertical-align: middle;
}
.ladder-step.is-approval .ladder-tag { background: var(--c-gold-soft); color: var(--c-gold); }

/* ---------------------------------- 提示 / 声明框 ---------------------------------- */
.notice-box {
  border: 1px solid var(--c-border);
  background: var(--c-bg-soft);
  border-radius: var(--radius-m);
  padding: 20px 22px;
  margin: 18px 0;
}
.notice-box.is-quiet { border-left: 3px solid var(--c-cash); }
.notice-box p { font-size: 13.5px; color: var(--c-text-soft); line-height: 1.85; margin-bottom: 10px; }
.notice-box p:last-child { margin-bottom: 0; }
.notice-box h4 { font-size: 14.5px; color: var(--c-navy); margin-bottom: 8px; font-weight: 700; }

/* ---------------------------------- 权限 / App 功能网格 ---------------------------------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 960px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .feature-grid { grid-template-columns: 1fr; } }
.feature-tile {
  background: var(--c-surface);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius-m);
  padding: 20px;
  text-align: left;
}
.feature-tile .tile-icon { width: 40px; height: 40px; margin-bottom: 12px; }
.feature-tile h4 { font-size: 15px; color: var(--c-navy); font-weight: 700; margin-bottom: 6px; }
.feature-tile p { font-size: 13.5px; color: var(--c-text-soft); margin: 0; }

/* ---------------------------------- AI 助手示例 ---------------------------------- */
.assistant-panel {
  background: var(--c-navy);
  color: #fff;
  border-radius: var(--radius-l);
  padding: 28px;
}
.assistant-panel .section-eyebrow { color: #9FCCC2; }
.assistant-panel .section-title { color: #fff; }
.assistant-panel .section-lead { color: #C7CEDC; }
.assistant-chat {
  margin-top: 20px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-m);
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.12);
}
.assistant-qlist {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.assistant-q {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: #E9EDF5;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 999px;
}
.assistant-q:hover, .assistant-q.is-active { background: var(--c-gold); border-color: var(--c-gold); color: #fff; }
.assistant-answer {
  background: #fff;
  color: var(--c-text);
  border-radius: var(--radius-m);
  padding: 16px 18px;
  font-size: 14px;
  line-height: 1.85;
  min-height: 92px;
}
.assistant-answer .tag-permission {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  color: var(--c-cash);
  background: var(--c-cash-soft);
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 600;
}

/* ---------------------------------- 场景切换（漂移 / 情景） ---------------------------------- */
.scenario-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.scenario-tab {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--c-border);
  background: var(--c-surface);
  font-size: 13.5px;
  color: var(--c-text-soft);
  font-weight: 600;
}
.scenario-tab.is-active { background: var(--c-teal); border-color: var(--c-teal); color: #fff; }
.scenario-panel { display: none; }
.scenario-panel.is-active { display: block; }

/* ---------------------------------- 公司介绍 ---------------------------------- */
.company-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}
@media (max-width: 860px) { .company-block { grid-template-columns: 1fr; } }
.company-facts { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.company-fact { display: flex; gap: 10px; font-size: 14px; }
.company-fact dt { color: var(--c-text-faint); min-width: 84px; }
.company-fact dd { margin: 0; color: var(--c-text); font-weight: 600; }

/* ---------------------------------- Footer ---------------------------------- */
.site-footer {
  background: var(--c-navy);
  color: #C7CEDC;
  padding: 52px 0 24px;
  margin-top: 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 10px; color: #fff; font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.footer-brand svg { width: 30px; height: 30px; }
.footer-desc { font-size: 13.5px; line-height: 1.85; color: #A7B1C5; max-width: 320px; }
.footer-col h5 { color: #fff; font-size: 14px; margin-bottom: 14px; font-weight: 700; }
.footer-col a { display: block; font-size: 13.5px; color: #A7B1C5; margin-bottom: 10px; }
.footer-col a:hover { color: #fff; }
.footer-legal {
  padding-top: 20px;
  font-size: 12.5px;
  color: #8590A6;
  line-height: 2;
}
.footer-legal .beian { min-height: 18px; }
.footer-bottom-row { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }

/* ---------------------------------- 返回顶部 ---------------------------------- */
.back-to-top {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--c-navy);
  color: #fff;
  border: none;
  box-shadow: var(--shadow-pop);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 90;
  display: flex; align-items: center; justify-content: center;
}
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* ---------------------------------- 通用工具 ---------------------------------- */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.stack-24 > * + * { margin-top: 24px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 760px) { .grid-2 { grid-template-columns: 1fr; } }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 860px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .grid-3 { grid-template-columns: 1fr; } }

.svg-icon-sm { width: 28px; height: 28px; }
.svg-icon-md { width: 40px; height: 40px; }

@media (max-width: 600px) {
  .section { padding: 44px 0; }
  .feature-article { padding: 22px; }
  .article-title { font-size: 18.5px; }
  .section-title { font-size: 22px; }
  h1.page-title { font-size: 24px; }
}
