/* 色・角丸・影・書体は日誌アプリ側 drone_logbook/site/assets/site.css と同一トークン。
   本番CBTの「画面の作り」は再現するが、色はヒコログ1ブランドに統一する（2026-07-26）。
   学科側のアクセントは 正解=success／不正解=danger／進捗・現在地=navy の3つだけ。
   「後で見直す」フラグは色を増やさず --ink の輪郭で表す。 */
:root {
  --navy: #124E78;
  --navy-dark: #0F1728;
  --navy-deep: #0E3F61;
  --blue: #124E78;
  --blue-light: rgba(18, 78, 120, 0.08);
  --bg: #F7F8FA;
  --card: #ffffff;
  --ink: #0F1728;
  --muted: #667085;
  --faint: #98A2B3;
  --line: #E4E7EC;
  --green: #1B7A2F;
  --green-light: rgba(27, 122, 47, 0.10);
  --red: #B42318;
  --red-light: rgba(180, 35, 24, 0.08);
  --orange: #B42318;
  --amber: #0F1728;
  --shadow: 0 1px 2px rgba(15, 23, 40, 0.05), 0 6px 20px rgba(15, 23, 40, 0.06);
  --font: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN",
    "Yu Gothic UI", "Segoe UI", Meiryo, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  /* height:100% だと body が視窓高さに固定され、nav.js の共通フッタ
     （#gcnav-foot）が本文に重なる。各画面は .screen{min-height:100vh} /
     #screen-exam{height:100vh} で足りるため min-height に緩める。 */
  min-height: 100%;
  font-family: var(--font);
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

.screen { min-height: 100vh; }
.hidden { display: none !important; }

/* ===== Buttons ===== */
.btn {
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  padding: 13px 22px;
  min-height: 48px;
  cursor: pointer;
  transition: background 0.15s, opacity 0.15s, transform 0.05s;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-deep); }
.btn-outline { background: #fff; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline:hover { background: var(--blue-light); }
.btn-ghost { background: var(--bg); color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--navy); color: var(--navy); }
.btn-ghost:disabled { opacity: 0.4; cursor: not-allowed; }
.btn-finish { background: var(--red); color: #fff; }
.btn-finish:hover { background: #8F1B12; }
.btn-lg { font-size: 17px; padding: 15px 28px; }
.btn-block { display: block; width: 100%; box-sizing: border-box; text-align: center; text-decoration: none; }

/* ===== Intro ===== */
#screen-intro {
  display: flex; align-items: center; justify-content: center;
  padding: 32px 16px;
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 100%);
}
.intro-card {
  background: var(--card);
  max-width: 680px; width: 100%;
  border-radius: 16px;
  padding: 36px 34px;
  box-shadow: var(--shadow);
}
.intro-badge {
  display: inline-block;
  background: var(--blue-light); color: var(--navy);
  font-size: 12px; font-weight: 700;
  padding: 5px 12px; border-radius: 20px; margin-bottom: 14px;
}
.intro-title { font-size: 30px; font-weight: 800; letter-spacing: 1px; }
.intro-sub { color: var(--muted); margin-top: 8px; font-size: 15px; }
.intro-spec {
  display: flex; align-items: stretch; justify-content: space-around;
  background: var(--bg); border: 1px solid var(--line);
  border-radius: 14px; padding: 18px 8px; margin: 24px 0;
}
.spec-item { display: flex; flex-direction: column; align-items: center; flex: 1; }
.spec-num { font-size: 30px; font-weight: 800; color: var(--navy); line-height: 1.1; }
.spec-label { font-size: 12px; color: var(--muted); margin-top: 4px; }
.spec-sep { width: 1px; background: var(--line); }
.intro-notes h2 { font-size: 15px; color: var(--navy); margin-bottom: 10px; }
.intro-notes ul { list-style: none; }
.intro-notes li {
  position: relative; padding-left: 22px; margin-bottom: 9px;
  font-size: 13.5px; color: var(--ink);
}
.intro-notes li::before {
  content: ""; position: absolute; left: 4px; top: 9px;
  width: 7px; height: 7px; border-radius: 50%; background: var(--blue);
}
.intro-disclaimer { font-size: 12px; color: var(--muted); margin-top: 12px; line-height: 1.7; }

/* ===== 教則第5版対応（2026-07 改訂告知） ===== */
.v5-banner {
  background: var(--blue-light); color: var(--navy);
  border: 1px solid rgba(18,78,120,.25); border-radius: 12px;
  font-size: 13px; line-height: 1.7;
  padding: 10px 14px; margin: 14px 0 4px;
}
.v5-details { margin: 10px 0 4px; }
.v5-details summary {
  cursor: pointer; font-size: 13px; font-weight: 700; color: var(--navy);
  padding: 4px 0;
}
.v5-details ol { margin: 8px 0 4px 20px; }
.v5-details li { font-size: 12.5px; color: var(--ink); margin-bottom: 8px; line-height: 1.7; }
.q-v5 {
  font-size: 11px; font-weight: 700; color: var(--navy);
  background: var(--blue-light); border: 1px solid rgba(18,78,120,.25);
  padding: 2px 8px; border-radius: 20px; white-space: nowrap;
}
#btn-start { width: 100%; margin-top: 24px; }
.intro-foot { text-align: center; font-size: 12px; color: var(--muted); margin-top: 14px; }

/* ===== Exam ===== */
#screen-exam { display: flex; flex-direction: column; height: 100vh; }
.exam-header {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--navy-dark); color: #fff;
  padding: 0 18px; height: 58px; flex-shrink: 0;
}
.exam-name { font-size: 14px; font-weight: 700; opacity: 0.95; }
.exam-header-left, .exam-header-right { flex: 1; }
.exam-header-right { text-align: right; }
.exam-progress { font-size: 15px; font-weight: 700; font-variant-numeric: tabular-nums; }
.exam-timer {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, 0.12); padding: 6px 16px; border-radius: 10px;
}
.timer-label { font-size: 11px; opacity: 0.8; }
.timer-value {
  font-size: 20px; font-weight: 800;
  font-variant-numeric: tabular-nums; letter-spacing: 1px;
}
.exam-timer.warn { background: var(--red); animation: pulse 1s infinite; }
@keyframes pulse { 50% { opacity: 0.75; } }

.exam-main { flex: 1; overflow-y: auto; padding: 22px 18px 30px; }
.q-wrap { max-width: 760px; margin: 0 auto; }
.q-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.q-no { font-size: 15px; font-weight: 800; color: var(--navy); }
.q-cat {
  font-size: 12px; color: var(--navy); background: var(--blue-light);
  padding: 3px 10px; border-radius: 20px; font-weight: 600;
}
.q-text {
  background: #fff; border-radius: 14px; padding: 20px;
  font-size: 16.5px; font-weight: 500; line-height: 1.8;
  box-shadow: var(--shadow); margin-bottom: 16px;
}
.options { list-style: none; }
.option {
  display: flex; align-items: flex-start; gap: 13px;
  background: #fff; border: 2px solid var(--line); border-radius: 12px;
  padding: 15px 16px; margin-bottom: 11px; cursor: pointer;
  transition: border-color 0.12s, background 0.12s;
}
.option:hover { border-color: var(--navy); }
.option.selected { border-color: var(--navy); background: var(--blue-light); }
.option-num {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg); color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
}
.option.selected .option-num { background: var(--navy); color: #fff; }
.option-text { font-size: 14.5px; line-height: 1.65; padding-top: 2px; }

.exam-footer {
  flex-shrink: 0; background: #fff; border-top: 1px solid var(--line);
  padding: 12px 18px; display: flex; align-items: center;
  justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.flag-toggle { display: flex; align-items: center; gap: 8px; cursor: pointer; user-select: none; }
.flag-toggle input { display: none; }
.flag-box {
  width: 22px; height: 22px; border: 2px solid var(--faint); border-radius: 6px;
  display: inline-block; position: relative; transition: all 0.12s;
}
.flag-toggle input:checked + .flag-box { background: var(--ink); border-color: var(--ink); }
.flag-toggle input:checked + .flag-box::after {
  content: "✓"; color: #fff; font-size: 14px; font-weight: 900;
  position: absolute; left: 3px; top: -2px;
}
.flag-label { font-size: 13.5px; color: var(--ink); font-weight: 700; }
.footer-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.lbl-short { display: none; }

/* ===== Overlays ===== */
.overlay {
  position: fixed; inset: 0; background: rgba(15, 23, 40, 0.55);
  display: flex; align-items: center; justify-content: center; z-index: 50;
  padding: 16px;
}
.overlay-panel {
  background: #fff; border-radius: 16px; width: 100%; max-width: 560px;
  max-height: 86vh; display: flex; flex-direction: column; overflow: hidden;
}
.overlay-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid var(--line);
}
.overlay-head h2 { font-size: 17px; }
.icon-btn {
  border: 1px solid var(--line); background: var(--card); width: 44px; height: 44px; border-radius: 10px;
  font-size: 20px; cursor: pointer; color: var(--muted); line-height: 1;
}
.nav-legend {
  display: flex; flex-wrap: wrap; gap: 14px; padding: 12px 20px;
  font-size: 12px; color: var(--muted);
}
.nav-legend span { display: flex; align-items: center; gap: 5px; }
.dot { width: 14px; height: 14px; border-radius: 4px; display: inline-block; }
.dot-answered { background: var(--navy); }
.dot-unanswered { background: var(--bg); border: 1px solid var(--line); }
.dot-flag { background: #fff; border: 2.5px solid var(--ink); }
.dot-current { background: #fff; border: 2px solid var(--green); }
.nav-grid {
  display: grid; grid-template-columns: repeat(8, 1fr); gap: 8px;
  padding: 8px 20px 16px; overflow-y: auto;
}
.nav-cell {
  aspect-ratio: 1; border-radius: 8px; border: none; cursor: pointer;
  background: var(--bg); color: var(--muted); font-weight: 700; font-size: 13px;
  display: flex; align-items: center; justify-content: center; position: relative;
}
.nav-cell.answered { background: var(--navy); color: #fff; }
.nav-cell.flag { box-shadow: inset 0 0 0 2.5px var(--amber); }
.nav-cell.current { box-shadow: inset 0 0 0 2.5px var(--green); }
.nav-cell.answered.flag { box-shadow: inset 0 0 0 2.5px #FFFFFF; }
.overlay-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; border-top: 1px solid var(--line); gap: 12px;
}
.nav-summary { font-size: 13px; color: var(--muted); }

.modal {
  background: #fff; border-radius: 16px; padding: 26px; max-width: 420px; width: 100%;
}
.modal h2 { font-size: 19px; margin-bottom: 10px; }
.modal p { color: var(--ink); font-size: 14px; margin-bottom: 20px; line-height: 1.7; }
.modal-btns { display: flex; gap: 12px; }
.modal-btns .btn { flex: 1; }

/* ===== Result ===== */
#screen-result { padding: 28px 16px 50px; }
.result-wrap { max-width: 700px; margin: 0 auto; }
.result-card {
  background: #fff; border-radius: 16px; padding: 30px 24px; text-align: center;
  box-shadow: var(--shadow);
}
.result-badge {
  display: inline-block; padding: 6px 22px; border-radius: 30px;
  font-weight: 800; font-size: 15px; margin-bottom: 14px;
}
.result-card.pass .result-badge { background: var(--green-light); color: var(--green); }
.result-card.fail .result-badge { background: var(--red-light); color: var(--red); }
.result-score { display: flex; align-items: baseline; justify-content: center; gap: 4px; }
.score-num { font-size: 68px; font-weight: 800; line-height: 1; }
.result-card.pass .score-num { color: var(--green); }
.result-card.fail .score-num { color: var(--red); }
.score-unit { font-size: 22px; font-weight: 700; color: var(--muted); }
.score-detail { color: var(--muted); margin-top: 8px; font-size: 15px; }
.score-bar {
  position: relative; height: 16px; background: var(--line); border-radius: 8px;
  margin: 20px 0 6px; overflow: visible;
}
.score-bar-fill { height: 100%; border-radius: 8px; transition: width 0.6s ease; }
.result-card.pass .score-bar-fill { background: var(--green); }
.result-card.fail .score-bar-fill { background: var(--red); }
.score-bar-line {
  position: absolute; top: -3px; bottom: -3px; left: 60%; width: 2px; background: var(--navy);
}
.score-line-label { font-size: 11px; color: var(--navy); text-align: right; margin-right: 38%; }
.result-time { font-size: 13px; color: var(--muted); margin-top: 12px; }

.result-cats {
  background: #fff; border-radius: 16px; padding: 18px 20px; margin-top: 16px;
  box-shadow: var(--shadow);
}
.result-cats h3 { font-size: 15px; color: var(--navy); margin-bottom: 14px; }
.cat-row { margin-bottom: 12px; }
.cat-row-top { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 4px; }
.cat-bar { height: 8px; background: var(--line); border-radius: 4px; overflow: hidden; }
.cat-bar-fill { height: 100%; border-radius: 4px; }

.result-actions { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }

.review-list { margin-top: 18px; }
.review-item {
  background: #fff; border-radius: 14px; padding: 16px 18px; margin-bottom: 12px;
  box-shadow: var(--shadow); border-left: 5px solid var(--green);
}
.review-item.wrong { border-left-color: var(--red); }
.review-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.review-badge { font-size: 12px; font-weight: 800; padding: 2px 10px; border-radius: 6px; }
.review-badge.ok { background: var(--green-light); color: var(--green); }
.review-badge.ng { background: var(--red-light); color: var(--red); }
.review-cat { font-size: 11px; color: var(--muted); }
.review-q { font-size: 14.5px; font-weight: 600; line-height: 1.7; margin-bottom: 10px; }
.review-opt {
  font-size: 13.5px; line-height: 1.6; padding: 7px 10px; border-radius: 8px;
  margin-bottom: 6px; display: flex; gap: 8px;
}
.review-opt.correct { background: var(--green-light); }
.review-opt.your-wrong { background: var(--red-light); }
.review-opt .mark { font-weight: 800; flex-shrink: 0; }
.review-exp {
  font-size: 12.5px; line-height: 1.7; color: var(--ink); background: var(--bg);
  border-radius: 10px; padding: 12px; margin-top: 8px;
}
.review-exp .exp-line { margin-bottom: 6px; }
.review-src { font-size: 11.5px; color: var(--muted); margin-top: 8px; }

@media (max-width: 560px) {
  .exam-name { display: none; }
  .exam-header-left { flex: 0; }
  .nav-grid { grid-template-columns: repeat(6, 1fr); }
  .exam-footer { padding: 10px 12px; gap: 8px; }
  .footer-btns { width: 100%; gap: 7px; }
  .footer-btns .btn { flex: 1; padding: 12px 4px; font-size: 14px; white-space: nowrap; }
  .lbl-full { display: none; }
  .lbl-short { display: inline; }
  .intro-card { padding: 26px 20px; }
  .score-line-label { margin-right: 34%; }
  .level-cards { grid-template-columns: 1fr !important; }
}

/* ===== ドローンLP（資格選択） ===== */
.intro-wide { max-width: 760px; }
.lp-points { margin: 22px 0 8px; display: flex; flex-direction: column; gap: 10px; }
.lp-point {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--bg); border: 1px solid var(--line); border-radius: 12px;
  padding: 12px 14px; font-size: 13.5px; color: var(--ink); line-height: 1.6;
}
.lp-ico { font-size: 20px; line-height: 1.3; }
.lp-choose { font-size: 15px; color: var(--navy); margin-top: 24px; margin-bottom: 12px; }
.level-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.level-card {
  font-family: inherit; text-align: left; cursor: pointer;
  background: #fff; border: 2px solid var(--line); border-radius: 16px;
  padding: 18px 18px 16px; transition: border-color 0.15s, transform 0.05s, box-shadow 0.15s;
}
.level-card:hover { border-color: var(--navy); box-shadow: var(--shadow); }
.level-card:active { transform: translateY(1px); }
.level-name { font-size: 26px; font-weight: 800; color: var(--navy); line-height: 1.1; }
.level-sub { font-size: 12px; color: var(--muted); margin-top: 2px; }
.level-spec { font-size: 13.5px; color: var(--ink); margin-top: 12px; }
.level-spec b { color: var(--navy); }
.level-go { font-size: 12.5px; font-weight: 700; color: var(--blue); margin-top: 12px; }

/* ===== 合言葉ゲート ===== */
#screen-gate {
  display: flex; align-items: center; justify-content: center;
  padding: 32px 16px; background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 100%);
}
.gate-card {
  background: var(--card); max-width: 420px; width: 100%;
  border-radius: 16px; padding: 34px 30px; text-align: center;
  box-shadow: var(--shadow);
}
.gate-title { font-size: 26px; font-weight: 800; letter-spacing: 1px; margin-top: 12px; }
.gate-sub { color: var(--muted); margin-top: 8px; font-size: 13.5px; }
.gate-form { margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
.gate-label { text-align: left; font-size: 13px; font-weight: 700; color: var(--navy); }
.gate-input {
  font-family: inherit; font-size: 16px; padding: 13px 14px;
  border: 1.5px solid var(--line); border-radius: 12px; outline: none; transition: border-color 0.15s;
}
.gate-input:focus { border-color: var(--navy); }
.gate-error { color: var(--red); font-size: 13px; font-weight: 700; margin: 2px 0 0; }
.gate-note { margin-top: 18px; font-size: 11.5px; color: var(--muted); line-height: 1.7; }

/* ===== 直前ポイント ===== */
.points-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.points-btn { width: 100%; }
#screen-points { min-height: 100vh; }
.points-header {
  display: flex; align-items: center; gap: 10px;
  background: var(--navy-dark); color: #fff; padding: 0 16px; height: 56px;
  position: sticky; top: 0; z-index: 10;
}
.points-title { font-size: 16px; font-weight: 700; }
.points-header .icon-btn { background: rgba(255,255,255,0.14); color: #fff; }
.points-main { max-width: 760px; margin: 0 auto; padding: 20px 16px 40px; }
.points-lead { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.point-card {
  background: #fff; border-radius: 14px; padding: 16px 18px; margin-bottom: 14px; box-shadow: var(--shadow);
}
.point-cat {
  font-size: 15px; color: var(--navy); font-weight: 800; margin-bottom: 10px;
  padding-bottom: 8px; border-bottom: 2px solid var(--blue-light);
}
.point-sub { font-size: 11.5px; font-weight: 700; color: var(--muted); margin: 10px 0 6px; }
.point-trap {
  font-size: 13px; color: var(--ink); line-height: 1.6; padding-left: 20px; position: relative; margin-bottom: 5px;
}
.point-trap::before { content: "⚠"; position: absolute; left: 0; color: var(--orange); font-size: 12px; }
.point-nums { display: flex; flex-wrap: wrap; gap: 6px; }
.point-num {
  font-size: 12px; color: var(--navy); background: var(--blue-light);
  border-radius: 8px; padding: 4px 9px; line-height: 1.5;
}
.points-foot { text-align: center; font-size: 11px; color: var(--muted); margin-top: 8px; }

@media (max-width: 560px) {
  .points-btns { grid-template-columns: 1fr; }
}

/* ===== 分野別練習 ===== */
.practice-cats { display: flex; flex-direction: column; gap: 10px; }
.practice-tile {
  font-family: inherit; text-align: left; cursor: pointer;
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1.5px solid var(--line); border-radius: 12px;
  padding: 15px 16px; transition: border-color 0.15s, box-shadow 0.15s;
}
.practice-tile:hover { border-color: var(--navy); box-shadow: var(--shadow); }
.pt-label { flex: 1; font-size: 15px; font-weight: 700; color: var(--ink); }
.pt-count { font-size: 12.5px; color: var(--muted); }
.pt-go { color: var(--blue); font-weight: 800; }
.option.answered { cursor: default; }
.option.opt-correct { border-color: var(--green) !important; background: var(--green-light) !important; }
.option.opt-correct .option-num { background: var(--green); color: #fff; }
.option.opt-wrong { border-color: var(--red) !important; background: var(--red-light) !important; }
.option.opt-wrong .option-num { background: var(--red); color: #fff; }
.p-explain {
  margin-top: 6px; background: var(--bg); border: 1px solid var(--line);
  border-radius: 12px; padding: 14px 16px;
}
.p-verdict { font-size: 15px; font-weight: 800; margin-bottom: 8px; }
.p-verdict.ok { color: var(--green); }
.p-verdict.ng { color: var(--red); }
.p-exp-title { font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.p-exp-line { font-size: 12.5px; line-height: 1.7; color: var(--ink); margin-bottom: 6px; display: flex; gap: 6px; }
.p-exp-line.c { color: var(--green); font-weight: 600; }
.p-exp-line b { flex-shrink: 0; }
.p-src { font-size: 11.5px; color: var(--muted); margin-top: 8px; }

/* ===== お試し（合言葉なし・無料10問） ===== */
.gate-or { display: flex; align-items: center; gap: 10px; margin: 20px 0 12px; color: var(--muted); font-size: 12px; }
.gate-or::before, .gate-or::after { content: ''; flex: 1; height: 1px; background: var(--line); }
.btn-trial { background: #fff; color: var(--navy); border: 1.5px solid var(--navy); width: 100%; }
.btn-trial:hover { background: var(--blue-light); }
.btn-trial:disabled { opacity: 0.5; cursor: not-allowed; }
.gate-trial-note { margin-top: 10px; font-size: 12px; color: var(--muted); line-height: 1.7; }
.trial-badge { background: var(--green-light) !important; color: var(--green) !important; }
.trial-cta { margin: 4px 0 16px; padding: 16px 16px 6px; border: 1px solid var(--line); border-left: 4px solid var(--navy); border-radius: 16px; background: var(--bg); }
.trial-cta-title { font-weight: 800; font-size: 16px; color: var(--ink); margin-bottom: 6px; }
.trial-cta-sub { font-size: 13px; color: var(--ink); line-height: 1.7; margin-bottom: 12px; }
.trial-cta .btn { margin-top: 8px; }

/* ===== 学科 → 日誌アプリ（ヒコログ本体）への送客（結果画面・2026-07-26） ===== */
.next-cta {
  background: var(--card); border: 1px solid var(--line); border-left: 4px solid var(--navy);
  border-radius: 16px; padding: 20px 20px 18px; margin-top: 16px; box-shadow: var(--shadow);
}
.next-cta-title { font-size: 15.5px; font-weight: 800; color: var(--ink); }
.next-cta-sub { font-size: 13.5px; color: var(--muted); line-height: 1.8; margin-top: 8px; }
.next-cta .btn { margin-top: 14px; }
.next-cta-note { font-size: 12.5px; color: var(--muted); text-align: center; margin-top: 8px; }
