/* ============================================================
   梁文韜．金門縣長參選 — 設計系統
   調性：學術嚴謹 × 閩南紅磚 —— 紙白底＋墨黑字＋金門紅磚點綴
   刻意避開藍／綠／白等政黨識別色，以金門古厝紅磚為主色
   閱讀最佳化：19px 基準、行高 2.0、單行 36em、長輩友善
   ============================================================ */
:root {
  --paper: #f7f5f0;        /* 紙白（頁面底） */
  --paper-2: #ece7dd;      /* 石灰（區塊底） */
  --white: #fffdfa;
  --ink: #1a1c20;          /* 墨黑（主文字） */
  --ink-soft: #4e5259;     /* 灰墨（輔助文字） */
  --brick: #a63f2b;        /* 金門紅磚（主強調色） */
  --brick-dark: #86301f;
  --brick-tint: #f3e3de;
  --granite: #6f7378;      /* 花崗岩灰 */
  --gold: #99793f;         /* 沉金（數據標示） */
  --shadow: 0 4px 20px rgba(26, 28, 32, .09);
  --shadow-lg: 0 12px 34px rgba(26, 28, 32, .14);
  --radius: 12px;
  --serif: "Noto Serif TC", "PMingLiU", serif;
  --sans: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  --maxw: 1180px;
  --readw: 36em;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  font-family: var(--sans); color: var(--ink); background: var(--paper);
  font-size: 19px; line-height: 2; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brick); text-decoration: none; }
a:hover { color: var(--brick-dark); }
ul, ol { list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--serif); font-weight: 700; line-height: 1.5;
  text-wrap: balance;                 /* 標題自動平衡斷行 */
  overflow-wrap: break-word;
}
p, li, dd, td, th { overflow-wrap: break-word; }
h1 { font-size: clamp(2rem, 4.4vw, 2.9rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.15rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.6rem); }
h4 { font-size: clamp(1.15rem, 2vw, 1.32rem); }

/* ── 按鈕 ── */
.btn {
  display: inline-block; padding: .72em 1.8em; border-radius: 4px;
  font-weight: 500; transition: all .25s; border: 2px solid transparent;
  text-align: center; white-space: nowrap; font-size: 1rem;
}
.btn-primary { background: var(--brick); color: var(--white); }
.btn-primary:hover { background: var(--brick-dark); color: var(--white); transform: translateY(-2px); }
.btn-ghost { border-color: var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-light { border-color: rgba(255,255,255,.75); color: #fff; }
.btn-light:hover { background: #fff; color: var(--ink); }

/* ── 閱讀進度條 ── */
.progress-bar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: var(--brick); z-index: 200; transition: width .1s linear;
}

/* ── Header ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247, 245, 240, .96); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(26, 28, 32, .1);
}
.header-inner {
  max-width: 1340px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; gap: 16px; height: 72px;
}
.brand { display: flex; align-items: baseline; gap: 10px; color: var(--ink); }
.brand strong { font-family: var(--serif); font-size: 1.4rem; letter-spacing: .1em; }
.brand small { font-size: .76rem; color: var(--ink-soft); letter-spacing: .12em; }
.main-nav { margin-left: auto; }
.main-nav > ul { display: flex; gap: 2px; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  display: flex; align-items: center; gap: 5px; white-space: nowrap;
  padding: 24px 13px; color: var(--ink); font-weight: 500; font-size: 1.04rem;
}
.main-nav > ul > li > a:hover, .main-nav a.active { color: var(--brick); }
.main-nav > ul > li > a.active::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 16px;
  height: 2px; background: var(--brick);
}
.caret { opacity: .5; transition: transform .25s; }
.has-sub:hover .caret { transform: rotate(180deg); }
.sub-menu {
  position: absolute; top: 100%; left: 0; min-width: 290px;
  background: var(--white); border-radius: 8px; box-shadow: var(--shadow-lg);
  padding: 8px; opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .25s; border: 1px solid rgba(26,28,32,.07);
  max-height: 72vh; overflow-y: auto;
}
.has-sub:hover .sub-menu, .has-sub:focus-within .sub-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.sub-menu a { display: block; padding: 11px 14px; border-radius: 6px; color: var(--ink); font-size: 1rem; }
.sub-menu a:hover { background: var(--paper-2); color: var(--brick); }
.nav-toggle { display: none; }

/* ── 麵包屑 ── */
.breadcrumb {
  max-width: var(--maxw); margin: 0 auto; padding: 16px 20px 0;
  font-size: .95rem; color: var(--ink-soft); display: flex; flex-wrap: wrap; gap: 6px;
}
.breadcrumb span { opacity: .45; }
.breadcrumb strong { color: var(--ink); font-weight: 500; }

/* ── Hero ── */
.hero {
  background: linear-gradient(150deg, #1a1c20 0%, #2f2723 62%, #4a2c22 100%);
  color: #fff; position: relative; overflow: hidden;
}
.hero-inner {
  max-width: var(--maxw); margin: 0 auto; padding: clamp(48px, 6vw, 76px) 20px;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 46px; align-items: center;
}
.hero .eyebrow {
  display: inline-block; font-size: .92rem; letter-spacing: .34em; color: #e0b892;
  border-bottom: 1px solid #a2643f; padding-bottom: 7px; margin-bottom: 20px;
}
.hero h1 { color: #fff; margin-bottom: 20px; line-height: 1.35; }
.hero p.lead { font-size: 1.16rem; color: rgba(255,255,255,.88); margin-bottom: 30px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-portrait {
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  border: 4px solid rgba(255,255,255,.12);
  width: 100%; height: auto; max-height: 560px; object-fit: contain;  /* 完整呈現，永不裁切 */
  background: rgba(255,255,255,.04);
}
/* 主視覺標語 */
.hero .slogan {
  font-family: var(--serif); font-size: clamp(1.5rem, 3.2vw, 2.15rem);
  font-weight: 900; color: #e0a878; letter-spacing: .28em;
  margin-bottom: 18px; line-height: 1.5;
}
/* 完整海報展示（about 頁） */
.poster-full {
  max-width: 900px; margin: 0 auto 8px; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); width: 100%; height: auto;
}
.poster-cap { text-align: center; font-size: .95rem; color: var(--ink-soft); margin-bottom: 8px; }
.hero.hero-sub { background: linear-gradient(150deg, #1a1c20 0%, #3a2b24 100%); }
.hero.hero-sub .hero-inner { grid-template-columns: 1fr; padding: clamp(40px, 5vw, 62px) 20px; }

/* 章節頁 hero */
.chapter-hero .ch-num {
  font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 3.4rem); color: #a2643f;
  line-height: 1; margin-bottom: 8px; display: block;
}
.chapter-hero h1 { max-width: 22em; }

/* ── 區塊 ── */
.section { max-width: var(--maxw); margin: 0 auto; padding: 76px 20px; }
.section-tint { background: var(--paper-2); }
.section-inner { max-width: var(--maxw); margin: 0 auto; padding: 76px 20px; }
.section-head { text-align: center; margin-bottom: 48px; }
.section-head .eyebrow {
  font-size: .9rem; letter-spacing: .32em; color: var(--gold);
  display: block; margin-bottom: 12px; font-weight: 500;
}
.section-head p { color: var(--ink-soft); max-width: 44em; margin: 12px auto 0; }
.rule { width: 54px; height: 3px; background: var(--brick); margin: 18px auto 0; }

/* ── 長文閱讀（核心）── */
.reading-layout {
  max-width: var(--maxw); margin: 0 auto; padding: 40px 20px 76px;
  display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 52px; align-items: start;
}
/* 無章內目錄時：單欄置中，內容不再被擠進側欄寬度 */
.reading-layout.no-toc { grid-template-columns: minmax(0, 1fr); }
.reading-layout.no-toc .reading-main,
.reading-layout.no-toc .prose,
.reading-layout.no-toc .prev-next { max-width: var(--readw); margin-left: auto; margin-right: auto; }
.reading-main { min-width: 0; }

.chapter-toc {
  position: sticky; top: 96px; font-size: .95rem;
  border-left: 3px solid var(--paper-2); padding-left: 18px;
  max-height: calc(100vh - 130px); overflow-y: auto;
}
.chapter-toc .toc-title {
  font-family: var(--serif); font-weight: 700; color: var(--ink);
  margin-bottom: 12px; font-size: 1.02rem;
}
.chapter-toc ul { display: flex; flex-direction: column; gap: 10px; }
.chapter-toc a { color: var(--ink-soft); line-height: 1.55; display: block; }
.chapter-toc a:hover, .chapter-toc a.current { color: var(--brick); }

.prose { max-width: var(--readw); font-size: 1.06rem; }
.prose p { margin-bottom: 1.5em; text-align: justify; }
.prose h2 { margin: 2.2em 0 .8em; padding-bottom: .3em; border-bottom: 2px solid var(--paper-2); }
.prose h3 {
  margin: 2em 0 .7em; color: var(--brick); padding-left: 14px;
  border-left: 5px solid var(--brick);
}
.prose h4 { margin: 1.7em 0 .6em; color: var(--ink); }
.prose h3:first-child, .prose h4:first-child { margin-top: 0; }
.prose strong { color: var(--ink); font-weight: 700; }

/* 重點摘要盒 */
.key-points {
  background: var(--brick-tint); border-left: 5px solid var(--brick);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 26px 30px; margin-bottom: 40px;
}
.key-points h2 {
  font-size: 1.2rem; color: var(--brick-dark); margin: 0 0 14px;
  border: 0; padding: 0; letter-spacing: .05em;
}
.key-points ul { display: flex; flex-direction: column; gap: 11px; }
.key-points li { padding-left: 1.6em; position: relative; font-size: 1.02rem; line-height: 1.85; }
.key-points li::before {
  content: "▍"; position: absolute; left: 0; color: var(--brick); opacity: .65;
}

/* 定義清單 */
.def-list { margin: 0 0 1.6em; display: flex; flex-direction: column; gap: 14px; }
.def-item {
  background: var(--white); border-radius: var(--radius); padding: 18px 22px;
  box-shadow: var(--shadow); border-left: 4px solid var(--gold);
}
.def-item dt { font-weight: 700; color: var(--ink); font-family: var(--serif); font-size: 1.08rem; margin-bottom: 4px; }
.def-item dd { color: var(--ink-soft); font-size: 1rem; line-height: 1.85; }

.bullet-list { margin: 0 0 1.6em; display: flex; flex-direction: column; gap: 10px; }
.bullet-list li { padding-left: 1.5em; position: relative; }
.bullet-list li::before { content: "◆"; position: absolute; left: 0; color: var(--brick); font-size: .72em; top: .55em; }
.list-label { font-weight: 700; color: var(--ink); margin-bottom: .6em !important; }

/* 資料表 */
.table-wrap { overflow-x: auto; margin: 0 0 1.8em; }
.data-table {
  width: 100%; border-collapse: collapse; background: var(--white);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); font-size: .98rem;
}
.data-table th, .data-table td {
  padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--paper-2); line-height: 1.7;
}
.data-table thead th { background: var(--ink); color: var(--paper); font-family: var(--serif); white-space: nowrap; }
.data-table tbody tr:last-child { background: var(--brick-tint); font-weight: 500; }
.data-table tbody tr:hover { background: var(--paper); }

/* 惡性循環圖 */
.cycle-diagram {
  margin: 0 0 1.8em; display: flex; flex-direction: column; gap: 12px;
  background: var(--ink); border-radius: var(--radius); padding: 24px;
}
.cyc-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.cyc-node {
  background: rgba(255,255,255,.09); color: #f0ece5; border-radius: 6px;
  padding: 8px 14px; font-size: .93rem; line-height: 1.6; flex: 1; min-width: 200px;
}
.cyc-arrow { color: #d08d63; font-size: .95rem; flex-shrink: 0; }

/* KPI 時程卡 */
.timeline-card {
  background: var(--white); border-radius: var(--radius); padding: 26px 30px;
  box-shadow: var(--shadow); margin-bottom: 22px; border-top: 4px solid var(--brick);
}
.timeline-card h3 {
  margin: 0 0 14px; color: var(--brick); border: 0; padding: 0; font-size: 1.3rem;
}
.timeline-card ul { display: flex; flex-direction: column; gap: 9px; margin-bottom: 16px; }
.timeline-card li { padding-left: 1.5em; position: relative; font-size: 1.02rem; }
.timeline-card li::before { content: "▸"; position: absolute; left: 0; color: var(--gold); }
.timeline-card .kpi {
  background: var(--paper-2); border-radius: 8px; padding: 14px 18px;
  font-size: .97rem; color: var(--ink-soft); margin: 0 !important; line-height: 1.8;
}
.timeline-card .kpi strong {
  display: inline-block; background: var(--brick); color: #fff; font-size: .78rem;
  padding: 1px 10px; border-radius: 3px; margin-right: 10px; letter-spacing: .1em;
}

/* 參考文獻 */
.refs .ref-list { counter-reset: r; display: flex; flex-direction: column; gap: 12px; margin-bottom: 2em; }
.refs .ref-list li {
  counter-increment: r; padding-left: 2.6em; position: relative;
  font-size: .97rem; line-height: 1.85; color: var(--ink-soft); word-break: break-word;
}
.refs .ref-list li::before {
  content: counter(r); position: absolute; left: 0; top: .35em;
  background: var(--paper-2); color: var(--ink-soft); font-size: .78rem;
  width: 2em; height: 2em; border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
}

/* 章節前後導覽 */
.prev-next {
  max-width: var(--readw); margin: 52px 0 0; display: flex; justify-content: space-between;
  gap: 16px; border-top: 2px solid var(--paper-2); padding-top: 26px; font-size: 1rem;
}
.prev-next a { font-weight: 500; }

/* ── 卡片網格 ── */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--white); border-radius: var(--radius); padding: 28px 26px;
  box-shadow: var(--shadow); transition: transform .3s, box-shadow .3s;
  display: flex; flex-direction: column; gap: 10px; border-top: 3px solid transparent;
}
a.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-top-color: var(--brick); }
.card .ch-label {
  font-family: var(--serif); font-size: .9rem; color: var(--gold); letter-spacing: .16em;
}
.card h3 { color: var(--ink); font-size: 1.24rem; line-height: 1.5; }
.card p { color: var(--ink-soft); font-size: .99rem; flex: 1; line-height: 1.8; }
.card .more { color: var(--brick); font-weight: 500; font-size: .98rem; }

/* 數據亮點 */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat {
  background: var(--white); border-radius: var(--radius); padding: 26px 22px;
  text-align: center; box-shadow: var(--shadow);
}
.stat .num {
  font-family: var(--serif); font-size: 2.5rem; font-weight: 900; color: var(--brick);
  line-height: 1.15; display: block;
}
.stat .num small { font-size: 1.1rem; font-weight: 400; }
.stat .label { font-size: 1rem; color: var(--ink); margin-top: 6px; font-weight: 500; }
.stat .note { font-size: .86rem; color: var(--ink-soft); margin-top: 4px; line-height: 1.6; }

/* CTA 帶 */
.cta-band { background: linear-gradient(120deg, #1a1c20 0%, #47291f 120%); color: var(--paper); text-align: center; }
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p { color: rgba(247,245,240,.8); margin-bottom: 28px; }
.cta-band .hero-actions { justify-content: center; }

/* ── Footer ── */
.site-footer { background: #16181c; color: #b9bcc2; }
.footer-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 60px 20px 40px;
  display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 44px;
}
.footer-brand strong { font-family: var(--serif); font-size: 1.35rem; color: #fff; display: block; margin-bottom: 8px; letter-spacing: .1em; }
.footer-brand p { font-size: 1rem; line-height: 1.9; }
.site-footer h3 { color: #d3a06f; font-size: 1rem; letter-spacing: .22em; margin-bottom: 16px; }
.site-footer ul { display: flex; flex-direction: column; gap: 11px; font-size: 1rem; }
.site-footer a { color: #b9bcc2; }
.site-footer a:hover { color: #fff; }
.footer-legal {
  border-top: 1px solid rgba(255,255,255,.08); padding: 22px 20px;
  text-align: center; font-size: .88rem; color: #7d818a; line-height: 1.9;
}

/* 回頂部 */
.back-top {
  position: fixed; right: 24px; bottom: 26px; z-index: 90;
  width: 54px; height: 54px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--brick); color: #fff; font-size: 1.1rem; box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .3s;
  display: flex; align-items: center; justify-content: center;
}
.back-top.show { opacity: 1; visibility: visible; transform: none; }
.back-top:hover { background: var(--brick-dark); }

/* ── 超寬螢幕（≥1600px）：放大版心、字級與側欄，善用大螢幕 ── */
@media (min-width: 1600px) {
  :root { --maxw: 1360px; --readw: 40em; }
  body { font-size: 20px; }
  .reading-layout { grid-template-columns: 300px minmax(0, 1fr); gap: 76px; padding-top: 52px; }
  .header-inner { max-width: 1520px; }
  .chapter-toc { font-size: 1rem; }
  .prose { font-size: 1.08rem; }
}

/* ── 中大型螢幕（1200–1599px）── */
@media (min-width: 1200px) and (max-width: 1599px) {
  .reading-layout { grid-template-columns: 264px minmax(0, 1fr); gap: 56px; }
}

/* ── RWD ── */
@media (max-width: 1199px) {
  .reading-layout { grid-template-columns: 1fr; gap: 0; }
  .chapter-toc {
    position: static; max-height: none; border-left: 0; padding: 20px 24px;
    background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 34px;
  }
  .chapter-toc ul { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 24px; }
  .chapter-toc a { padding: 2px 0; }
  .prose, .prev-next, .reading-main { max-width: 100%; }
  .reading-layout.no-toc .reading-main,
  .reading-layout.no-toc .prose,
  .reading-layout.no-toc .prev-next { max-width: 100%; }
  .hero-inner { grid-template-columns: 1fr; gap: 34px; }
  .hero-portrait { max-width: 340px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-toggle {
    display: flex; flex-direction: column; gap: 5px; margin-left: auto;
    background: none; border: none; cursor: pointer; padding: 10px;
  }
  .nav-toggle span { width: 26px; height: 2px; background: var(--ink); transition: all .3s; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav {
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0; background: var(--paper);
    overflow-y: auto; padding: 16px 22px 44px; transform: translateX(100%);
    transition: transform .3s; margin-left: 0;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav > ul { flex-direction: column; gap: 0; }
  .main-nav > ul > li > a { padding: 17px 4px; font-size: 1.14rem; border-bottom: 1px solid rgba(26,28,32,.08); }
  .main-nav > ul > li > a.active::after { display: none; }
  .sub-menu {
    position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    background: transparent; border: 0; padding: 0 0 6px 16px; display: none; max-height: none;
  }
  .has-sub.open .sub-menu { display: block; }
  .sub-menu a { font-size: 1.04rem; padding: 12px 10px; }
}
@media (max-width: 719px) {
  body { font-size: 18px; }
  .grid-2, .grid-3, .grid-4, .stat-grid { grid-template-columns: 1fr; }
  .chapter-toc ul { grid-template-columns: 1fr; }
  .section, .section-inner { padding: 52px 18px; }
  .reading-layout { padding: 28px 18px 56px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .prose p { text-align: left; }
  .key-points { padding: 22px 20px; border-radius: 0 10px 10px 0; }
  .key-points li { font-size: 1rem; }
  .prev-next { flex-direction: column; gap: 12px; }
  .prev-next a { padding: 10px 0; }        /* 觸控目標 */
  .timeline-card { padding: 22px 20px; }
  .def-item { padding: 16px 18px; }
  .cycle-diagram { padding: 18px 14px; }
  .cyc-node { min-width: 0; font-size: .95rem; }
  .cyc-row { flex-direction: column; align-items: stretch; gap: 6px; }
  .cyc-arrow { text-align: center; transform: rotate(90deg); }
  .data-table th, .data-table td { padding: 11px 12px; font-size: .95rem; }
  .refs .ref-list li { padding-left: 2.2em; font-size: .95rem; }
  .site-header { }
  .header-inner { height: 64px; }
  .main-nav { top: 64px; }
  .brand strong { font-size: 1.22rem; }
  .brand small { display: none; }
}

/* ── 社群連結（頁尾）── */
.social-links { gap: 10px !important; }
.soc {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 16px; border-radius: 999px; font-size: .96rem;
  transition: all .25s; border: 1px solid rgba(255,255,255,.16);
}
.soc-line { color: #7fe0a6; }
.soc-line:hover { background: #06c755; color: #fff; border-color: #06c755; }
.soc-fb { color: #9dc0f5; }
.soc-fb:hover { background: #1877f2; color: #fff; border-color: #1877f2; }

/* ── 閱讀人次計數器 ── */
.visit-counter {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 26px 20px 34px;
  display: flex; align-items: center; justify-content: center; gap: 34px;
  text-align: center;
}
.vc-item { text-align: center; }
.vc-item strong {
  display: block; font-family: var(--serif); font-size: 1.9rem; font-weight: 900;
  color: #d3a06f; line-height: 1.2; font-variant-numeric: tabular-nums;
}
.vc-item small { font-size: .86rem; color: #8b909b; letter-spacing: .1em; }
.vc-sep { width: 1px; height: 40px; background: rgba(255,255,255,.13); }
@media (max-width: 719px) {
  .visit-counter { gap: 22px; }
  .vc-item strong { font-size: 1.6rem; }
}
