/* ========================================================
   機種解析ビューア
   ホールで片手・暗所で使う前提。ダーク固定、文字は大きめ。
   ======================================================== */

:root {
  /* ホールで使う道具なので、端末やページ側の設定に関わらずダークで固定する。
     これを書いておくと、検索欄のカーソルやスクロールバーなど
     ブラウザが自前で描く部品も暗い側で描かれる。 */
  color-scheme: dark;

  --bg:        #0a0b10;
  --bg-raise:  #171a21;
  --bg-raise2: #1f232c;
  --line:      #2b3038;

  /* 背景の雰囲気。機種テーマで上書きされる（app.js が差し込む） */
  --glow-warm: rgba(190, 24, 42, .22);
  --glow-cool: rgba(74, 190, 220, .10);
  --bg-photo: none;
  --bg-photo-opacity: 0;
  --fg:        #e9ecf1;
  --fg-dim:    #99a1b0;
  /* 一番控えめな灰色。暗所で読める下限を守る（コントラスト比4.5以上）。
     これ以上暗くすると、件数や出典が読めなくなる */
  --fg-faint:  #8b95a6;

  --accent:    #5aa9ff;   /* 触れる場所 */
  --kohyo:     #4a9eff;   /* 公表値 */
  --jissoku:   #ffb020;   /* 実測値 */
  --suitei:    #b48bff;   /* 推定 */
  --warn:      #ff5d5d;   /* 要確認 */

  --r: 14px;
  --tap: 48px;            /* 指1本で確実に押せる最小サイズ */

  --safe-t: env(safe-area-inset-top, 0px);
  --safe-b: env(safe-area-inset-bottom, 0px);
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html, body {
  margin: 0;
  /* 地の色は html と body の両方に必ず塗る。
     ★body を透明にしてはいけない。
       このアプリは外枠を用意する場所（Artifactなど）にも置かれる。
       そこでは向こうの body に明るい地の色が入っていて、
       こちらが塗らないとその明るい地がそのまま出てしまい、
       白地に白文字になって何も読めなくなる。 */
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic UI",
               "Noto Sans JP", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  overscroll-behavior-y: none;
}

body { padding-bottom: var(--safe-b); }

.screen[hidden] { display: none; }

/* ---------- 背景 ----------
   ホールで使う道具なので、雰囲気より可読性が上。
   光も線も、文字のコントラストを一切下げない濃さで止めてある。 */

/* 重なりの順番は下から: body の地の色 → この層（光と線）→ 中身。
   マイナスの z-index にすると body の地の色より下に潜って見えなくなるので、
   0 に置いて、中身のほうを 1 に上げている。 */
.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.screen { position: relative; z-index: 1; }

/* 機種テーマで画像が指定されたときだけ出る層 */
.bg-photo {
  position: absolute;
  inset: 0;
  background: var(--bg-photo) center top / cover no-repeat;
  opacity: var(--bg-photo-opacity);
  filter: saturate(.7) contrast(.85);
}

/* 画像と文字のあいだに挟む幕。これが無いと絵の明るい部分で文字が消える */
.bg-veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(112% 58% at 86% -6%, var(--glow-warm), transparent 56%),
    radial-gradient(96% 48% at 2% 102%, var(--glow-cool), transparent 60%),
    linear-gradient(180deg, rgba(10, 11, 16, .70) 0%, rgba(10, 11, 16, .90) 42%, var(--bg) 100%);
}

/* オリジナルの線画（照準環）。権利の問題が無いのはこの層 */
.bg-art {
  position: absolute;
  top: 0; right: 0;
  width: min(560px, 132%);
  height: auto;
  fill: none;
  stroke-linecap: round;
}
/* 照準線はアイコンと同じライトグリーン（SAOのお約束の色） */
.bg-art .ring     { stroke: #86efac; stroke-width: 1; opacity: .24; }
.bg-art .ring-far { stroke-width: .8; opacity: .11; }

/* ---------- 見出し ----------
   スクロールすると流れていく。検索窓だけが上に残る。
   常に居座らせると、一覧を見るときに縦を食うため。 */

.apphead {
  padding: calc(var(--safe-t) + 14px) 14px 2px;
}
.apphead-title {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  text-wrap: balance;
}
.apphead-sub {
  margin: 4px 0 0;
  font-size: 11.5px;
  color: var(--fg-faint);
  letter-spacing: .02em;
}

/* 切り欠き（ノッチ）の帯。検索窓が上に貼り付いたとき、
   その上を文字が流れて見えるのを防ぐ。切り欠きが無い端末では高さ0。 */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--safe-t);
  background: var(--bg);
  z-index: 20;
}

/* ---------- 検索バー ---------- */

.searchbar {
  position: sticky;
  top: var(--safe-t);
  z-index: 10;
  padding: 6px 12px 10px;
  background: linear-gradient(var(--bg) 78%, transparent);
  backdrop-filter: blur(8px);
}

.searchbox {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-raise);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 0 10px;
  height: 54px;
}

.searchbox:focus-within { border-color: var(--accent); }

.icon-search {
  width: 20px; height: 20px; flex: 0 0 auto;
  fill: none; stroke: var(--fg-faint); stroke-width: 2; stroke-linecap: round;
}

#q {
  flex: 1 1 auto;
  min-width: 0;
  background: none;
  border: 0;
  outline: none;
  color: var(--fg);
  font-size: 19px;
  font-family: inherit;
  height: 100%;
}
#q::placeholder { color: var(--fg-faint); }
#q::-webkit-search-cancel-button { display: none; }

.clear {
  flex: 0 0 auto;
  width: 34px; height: 34px;
  border: 0; border-radius: 50%;
  background: var(--bg-raise2);
  color: var(--fg-dim);
  font-size: 22px; line-height: 1;
  cursor: pointer;
}

/* ---------- 検索結果 ---------- */

.results { padding: 4px 12px 32px; }

.section-label {
  font-size: 13px;
  color: var(--fg-faint);
  letter-spacing: .04em;
  margin: 18px 2px 8px;
}
.section-label:first-child { margin-top: 6px; }

.card {
  display: block;
  width: 100%;
  text-align: left;
  /* わずかに透かして、背景の光を回り込ませる。
     ぼかしは使わない（項目の数だけ処理が増えて、指の反応が鈍る） */
  background: rgba(23, 26, 33, .84);
  border: 1px solid var(--line);
  border-radius: var(--r);
  color: inherit;
  font: inherit;
  padding: 13px 14px;
  margin-bottom: 8px;
  cursor: pointer;
}
.card:active { background: var(--bg-raise2); }

.card-name {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-top: 7px;
}

/* カテゴリのタイル（検索が空のとき） */
.cats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.cat {
  background: rgba(23, 26, 33, .84);
  border: 1px solid var(--line);
  border-radius: var(--r);
  color: inherit;
  font: inherit;
  padding: 16px 14px;
  text-align: left;
  cursor: pointer;
  min-height: 76px;
}
.cat:active { background: var(--bg-raise2); }
.cat-name { font-size: 16px; font-weight: 600; }
.cat-count { font-size: 12px; color: var(--fg-faint); margin-top: 3px; }

.empty {
  text-align: center;
  color: var(--fg-faint);
  padding: 48px 20px;
  font-size: 15px;
}

/* ---------- ラベル・バッジ ---------- */

.tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1;
  padding: 5px 8px;
  border-radius: 6px;
  white-space: nowrap;
}
.tag-cat   { background: var(--bg-raise2); color: var(--fg-dim); }
.tag-kohyo    { background: rgba(74,158,255,.16);  color: var(--kohyo); }
.tag-jissoku  { background: rgba(255,176,32,.16);  color: var(--jissoku); }
.tag-suitei   { background: rgba(180,139,255,.16); color: var(--suitei); }
.tag-konzai   { background: rgba(150,160,175,.16); color: var(--fg-dim); }
.tag-warn  { background: rgba(255,93,93,.16); color: var(--warn); }

/* ---------- 詳細画面 ---------- */

.detailbar {
  position: sticky; top: 0; z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: calc(var(--safe-t) + 6px) 10px 6px 6px;
  background: linear-gradient(var(--bg) 80%, transparent);
  backdrop-filter: blur(8px);
}

/* ピン留め。暗いホールで片手で押すので、指1本分の大きさを確保する */
.pin {
  display: inline-flex; align-items: center; gap: 6px;
  height: var(--tap); padding: 0 14px;
  border: 1px solid var(--line); border-radius: 999px;
  background: var(--bg-raise); color: var(--fg-dim);
  font: inherit; font-size: 14px; cursor: pointer;
  white-space: nowrap;
}
.pin svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linejoin: round; }
.pin[aria-pressed="true"] {
  background: rgba(255,176,32,.14);
  border-color: rgba(255,176,32,.45);
  color: var(--jissoku);
}
.pin[aria-pressed="true"] svg { fill: currentColor; stroke: currentColor; }
.back {
  display: inline-flex; align-items: center; gap: 2px;
  height: var(--tap); padding: 0 14px 0 6px;
  background: none; border: 0; color: var(--accent);
  font: inherit; font-size: 17px; cursor: pointer;
}
.back svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

.detail { padding: 0 14px 48px; }

.d-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
  margin: 4px 0 10px;
}
.d-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }

.d-block { margin-bottom: 20px; }
.d-head {
  font-size: 12.5px;
  color: var(--fg-faint);
  letter-spacing: .06em;
  margin-bottom: 7px;
}

/* 設定1〜6のカード */
.setgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
/* 「1/18091.8」のような桁数の多い値は、3列だと潰れて読めない。
   そういう項目だけ2列にして、1マスを広く使う。 */
.setgrid.wide { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 359px) { .setgrid { grid-template-columns: repeat(2, 1fr); } }

.setcard {
  background: var(--bg-raise);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 8px 12px;
  text-align: center;
}
.setcard-n {
  font-size: 12px;
  /* どのマスがどの設定かは機能情報。暗いホールで読めないと成立しないので、
     控えめな灰色ではなく、コントラストの取れる灰色を使う */
  color: var(--fg-dim);
  letter-spacing: .08em;
}
.setcard-v {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.15;
  margin-top: 4px;
  font-variant-numeric: tabular-nums;
  /* 数値の途中では絶対に折らない。「1/181」「91.8」に割れたら読めない */
  white-space: nowrap;
}
/* 桁数に応じて字を落とす。値の長さはJS側で見て付ける */
.setgrid.wide .setcard-v { font-size: 22px; }
.setcard-v.mid { font-size: 21px; }
/* 数値が無いものは、空欄にせず理由を小さく灰色で出す */
.setcard.na .setcard-v { font-size: 15px; font-weight: 600; color: var(--fg-faint); }

/* 表 */
.tablewrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-raise);
}
/* 表は画面幅に押し込めない。押し込めると、長い文の列が
   1文字ずつ改行される潰れ方をする。内容ぶんの幅を取らせて、
   はみ出したぶんは .tablewrap の横スクロールに預ける。 */
table {
  border-collapse: collapse;
  width: max-content;
  min-width: 100%;
  font-size: 15px;
}
th, td {
  padding: 11px 12px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  /* 1つの列が際限なく横に伸びないための上限。
     文字数だけで決めると、列が少ない表でも画面からはみ出して
     肝心の内容が最初から見えない。画面幅にも連動させる。 */
  max-width: min(21ch, 62vw);
  min-width: 3.5em;
}
thead th {
  font-size: 12px;
  color: var(--fg-faint);
  font-weight: 600;
  white-space: nowrap;
  background: var(--bg-raise2);
}
tbody tr:last-child td { border-bottom: 0; }
/* 1列目は見出し役なので太字にするだけ。ここで折り返しを禁止すると、
   長い項目名が横幅を独占して他の列を潰す。 */
tbody td:first-child { font-weight: 600; }
td.num { font-variant-numeric: tabular-nums; }
td.nw  { white-space: nowrap; }
.rowsrc {
  display: block;
  font-size: 11px;
  color: var(--fg-faint);
  margin-top: 3px;
  font-weight: 400;
  white-space: normal;
}

/* ---------- 画面に収まらない表の扱い ---------- */

.tblbox { position: relative; }

/* 案内は、横スクロールが実際に必要なときだけ出す */
.scrollhint {
  display: none;
  margin: 7px 2px 0;
  font-size: 12px;
  color: var(--jissoku);
}
.tblbox.scrollable .scrollhint { display: block; }
.tblbox.scrollable.at-end .scrollhint { display: none; }

/* 右端をぼかして「まだ続きがある」ことを目でも伝える */
.tblbox.scrollable::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 34px;
  border-radius: 0 12px 12px 0;
  background: linear-gradient(90deg, transparent, rgba(10, 11, 16, .9));
  pointer-events: none;
  transition: opacity .15s;
}
.tblbox.scrollable.at-end::after { opacity: 0; }

/* 収まらない表は、横並びをやめて行ごとに縦へ積む。
   スマホで横スクロールを強いると、右側の列が一生読まれない。 */
.tblbox.stacked .tablewrap { overflow-x: visible; }
.tblbox.stacked table,
.tblbox.stacked tbody,
.tblbox.stacked tr,
.tblbox.stacked td { display: block; width: auto; min-width: 0; max-width: none; }
.tblbox.stacked thead { display: none; }

.tblbox.stacked tr {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
}
.tblbox.stacked tr:last-child { border-bottom: 0; }

.tblbox.stacked td {
  padding: 0;
  border: 0;
  white-space: normal;
}
.tblbox.stacked td:first-child {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}
.tblbox.stacked td:not(:first-child) {
  margin-top: 4px;
  color: var(--fg);
}
/* 横並びのときのヘッダ名を、各行の見出しとして復活させる */
.tblbox.stacked td:not(:first-child)::before {
  content: attr(data-label) '　';
  color: var(--fg-faint);
  font-size: 12px;
  font-weight: 600;
}
.tblbox.stacked td:empty,
.tblbox.stacked td.blank { display: none; }

/* 箇条書き */
.d-list { margin: 0; padding-left: 1.1em; }
.d-list li { margin-bottom: 8px; }

/* 補足・出典 */
.d-note {
  background: var(--bg-raise);
  border: 1px solid var(--line);
  border-left: 3px solid var(--fg-faint);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14.5px;
  color: var(--fg-dim);
  white-space: pre-wrap;
}
.d-source {
  font-size: 13px;
  color: var(--fg-dim);
  background: var(--bg-raise);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 11px 14px;
}

/* 画像 */
.shots { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.shots img {
  width: 100%; height: auto; display: block;
  border-radius: 10px; border: 1px solid var(--line);
  cursor: zoom-in;
}

.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(0,0,0,.92);
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 100%; max-height: 100%; border-radius: 8px; }

/* 更新のお知らせ。
   勝手に画面を作り直すと、数値を見ている最中に消えて邪魔になる。
   出すだけ出して、切り替えるかどうかは指で決めてもらう。 */
.updatebar {
  position: fixed;
  left: 12px; right: 12px;
  bottom: calc(var(--safe-b) + 12px);
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 10px 10px 18px;
  background: var(--bg-raise2);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .55);
  font-size: 15px;
  animation: rise .22s ease-out;
}
.updatebar[hidden] { display: none; }
.updatebar button {
  flex: 0 0 auto;
  height: 40px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #08131f;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .updatebar { animation: none; }
}

/* ---------- 下のタブ ----------
   ホールで親指が届くのは画面の下。上に置くと片手で切り替えられない。 */
.tabbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 30;
  display: flex;
  padding-bottom: var(--safe-b);
  background: rgba(12, 14, 20, .94);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.tabbar[hidden] { display: none; }
.tabbar .tab {
  flex: 1 1 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px;
  min-height: 56px;
  border: 0; background: none;
  color: var(--fg-faint);
  font: inherit; font-size: 11px; font-weight: 600;
  cursor: pointer;
}
.tabbar .tab svg {
  width: 22px; height: 22px;
  fill: none; stroke: currentColor; stroke-width: 1.9;
  stroke-linecap: round; stroke-linejoin: round;
}
.tabbar .tab[aria-current="true"] { color: var(--accent); }

/* タブのぶん、中身の下に余白を作る */
.results, .counter { padding-bottom: calc(72px + var(--safe-b)); }

/* ---------- カウンター ---------- */

.counter { padding: 4px 12px 0; }

/* 台の前で使う画面。縦を食うものを徹底的に削って、
   1画面に入る「押せる場所」の数を増やす。
   説明は畳んでおいて、読みたいときだけ開く。 */
.cnt-card {
  background: rgba(23, 26, 33, .88);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 9px 12px 11px;
  margin-bottom: 8px;
}
.cnt-head { display: flex; align-items: center; gap: 8px; }
.cnt-name { flex: 1 1 auto; font-size: 15px; font-weight: 700; line-height: 1.35; }
.cnt-toggle {
  flex: 0 0 auto;
  width: 28px; height: 28px;
  border: 1px solid var(--line); border-radius: 50%;
  background: none; color: var(--fg-faint);
  font: inherit; font-size: 13px; font-weight: 700; line-height: 1; cursor: pointer;
}
.cnt-toggle[aria-expanded="true"] { color: var(--accent); border-color: var(--accent); }

/* 数える行。率は行の中に置いて、専用の段を作らない */
.cnt-row {
  display: flex; align-items: center; gap: 8px;
  margin-top: 7px;
}
.cnt-label {
  flex: 1 1 auto; min-width: 0;
  font-size: 13.5px; color: var(--fg-dim); line-height: 1.35;
}
.cnt-rate {
  flex: 0 0 auto;
  min-width: 56px; text-align: right;
  font-size: 15px; font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.cnt-rate.dim { color: var(--fg-faint); }
.cnt-rate.thin { color: var(--jissoku); }
.cnt-rate.none { min-width: 56px; }

.stepper { display: flex; align-items: center; gap: 6px; flex: 0 0 auto; }
.stepper button {
  width: 44px; height: 44px;
  border-radius: 11px; border: 1px solid var(--line);
  background: var(--bg-raise2); color: var(--fg);
  font: inherit; font-size: 21px; line-height: 1; cursor: pointer;
}
.stepper button.plus {
  background: rgba(134, 239, 172, .16);
  border-color: rgba(134, 239, 172, .45);
  color: #86efac; font-weight: 700;
}
.stepper button:active { opacity: .7; }
.stepper .val {
  min-width: 36px; text-align: center;
  font-size: 20px; font-weight: 700;
  font-variant-numeric: tabular-nums;
}

/* 畳んである補足 */
.cnt-more {
  margin-top: 10px; padding-top: 9px;
  border-top: 1px solid var(--line);
}
.cnt-more[hidden] { display: none; }
.cnt-more-note { margin: 0 0 6px; font-size: 12.5px; color: var(--fg-dim); line-height: 1.65; }
.cnt-more-block { margin-top: 9px; }
.cnt-more-block > b { font-size: 12px; color: var(--fg-faint); font-weight: 600; }

.cnt-theory {
  margin-top: 4px;
  display: flex; flex-wrap: wrap; gap: 3px 9px;
  font-size: 12px; color: var(--fg-faint);
  font-variant-numeric: tabular-nums;
}
.cnt-theory b { color: var(--fg-dim); font-weight: 600; }

/* 確定系のチェック。1行に収めて高さを半分にする */
.flag-list { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.flag {
  display: inline-flex; align-items: baseline; gap: 5px;
  min-height: 40px; padding: 0 12px;
  border: 1px solid var(--line); border-radius: 999px;
  background: var(--bg-raise2); color: var(--fg-dim);
  font: inherit; font-size: 13.5px; font-weight: 700; cursor: pointer;
}
.flag em { font-style: normal; font-size: 10.5px; font-weight: 400; color: var(--fg-faint); }
.flag[aria-pressed="true"] {
  background: rgba(134, 239, 172, .16);
  border-color: rgba(134, 239, 172, .5);
  color: #86efac;
}
.flag[aria-pressed="true"] em { color: rgba(134, 239, 172, .75); }

.cnt-reset {
  width: 100%; min-height: var(--tap);
  margin: 18px 0 8px;
  border: 1px solid var(--line); border-radius: 12px;
  background: none; color: var(--warn);
  font: inherit; font-size: 15px; cursor: pointer;
}

/* 無料版の下に置く導線。道具の邪魔をしない位置と濃さ */
.cnt-cta {
  display: block;
  margin: 14px 0 4px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--fg-dim);
  font-size: 13px;
  text-align: center;
  text-decoration: none;
}
.cnt-cta:active { background: var(--bg-raise2); }

.section-head {
  font-size: 13px; color: var(--fg-faint);
  letter-spacing: .04em; margin: 20px 2px 8px;
}
.section-head:first-child { margin-top: 6px; }

/* フッタ */
.foot {
  margin-top: 26px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 11.5px;
  color: var(--fg-faint);
  line-height: 1.7;
}
