/* ============================================================
   嚕發票 — 貼紙風格 (Sticker / Neo-brutalism)
   厚墨線描邊 + 實體位移陰影 + 大圓角 + 微傾斜貼紙
   白紙底 · 深藍(navy)墨線 · 橘色主 CTA · 薄荷點綴
   ============================================================ */
:root {
    --paper:    #fbf7ee;   /* 紙感底 */
    --card:     #ffffff;   /* 白卡 */
    --ink:      #14213d;   /* 深藍墨線：描邊 + 實體陰影 + 標題 */
    --ink-2:    #35476b;   /* 次要文字 */
    --muted:    #6c7793;   /* 輔助文字 */
    --orange:   #fca311;   /* 主 CTA / 重點 */
    --orange-d: #e08a00;   /* 橘 hover */
    --mint:     #2fbf87;   /* 薄荷：成功/發票點綴 */
    --sky:      #6aa9f4;   /* 天藍點綴 */
    --red:      #e5484d;

    --bd:       3px solid var(--ink);
    --bd-2:     2px solid var(--ink);
    --sh-sm:    3px 3px 0 var(--ink);
    --sh:       5px 5px 0 var(--ink);
    --sh-lg:    8px 8px 0 var(--ink);
    --sh-orange:5px 5px 0 var(--orange-d);

    --r:     18px;
    --r-lg:  28px;
    --r-pill:999px;

    --display: "Fredoka", "Noto Sans TC", -apple-system, "PingFang TC", "Microsoft JhengHei", system-ui, sans-serif;
    --body:    "Noto Sans TC", -apple-system, "PingFang TC", "Microsoft JhengHei", system-ui, sans-serif;

    font-family: var(--body);
    color-scheme: light;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

html { scrollbar-gutter: stable; } /* 永遠保留捲軸空間，避免有無捲軸時置中內容左右位移 */
body {
    margin: 0;
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink-2);
    background-color: var(--paper);
    background-image: radial-gradient(var(--ink) 1.1px, transparent 1.1px);
    background-size: 26px 26px;
    background-position: -13px -13px;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}
/* 給圓點紙一層淡化，避免太吵 */
body::before {
    content: ""; position: fixed; inset: 0; z-index: -1;
    background: linear-gradient(var(--paper), transparent 30%), rgba(251,247,238,.72);
    pointer-events: none;
}

h1, h2, h3 { font-family: var(--display); color: var(--ink); margin: 0; }
a { color: var(--ink); }

/* ---------------- Nav ---------------- */
.nav {
    max-width: 1120px;
    margin: 0 auto;
    padding: 20px 20px 0;
    /* gap 與 app-nav 一致（8px），讓分頁與 app 頁對齊、切換不位移 */
    display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-badge {
    display: grid; place-items: center;
    width: 44px; height: 44px;
    background: var(--orange); border: var(--bd); border-radius: 14px;
    box-shadow: var(--sh-sm); font-size: 22px;
    transform: rotate(-6deg);
}
.brand-text { font-family: var(--display); font-weight: 700; font-size: 24px; color: var(--ink); }
.brand-text .lu { color: var(--orange-d); }
.nav-links { display: flex; gap: 8px; flex-wrap: wrap; }
.nav-links a {
    /* 度量與 app-nav a.tab 一致（padding 15、border 3px），跨頁分頁不位移 */
    text-decoration: none; color: var(--ink); font-weight: 600; font-size: 14.5px;
    padding: 8px 15px; border-radius: var(--r-pill); border: 3px solid transparent;
    transition: background .12s, border-color .12s, transform .06s;
}
.nav-links a:hover { background: #fff; border: var(--bd); box-shadow: var(--sh-sm); }
.nav-links a:active { transform: translate(1px,1px); }
.auth-bar { margin-left: auto; display: flex; align-items: center; gap: 10px; }

/* 手機：品牌＋登入同一列，導覽連結改成整列平分 */
@media (max-width: 760px) {
    .nav { padding: 14px 16px 0; gap: 10px; row-gap: 12px; }
    .nav .brand { margin-right: auto; }
    .nav .auth-bar { margin-left: 0; }
    .nav .nav-links { order: 3; flex: 1 1 100%; justify-content: space-between; gap: 6px; }
    .nav .nav-links a { flex: 1 1 auto; text-align: center; padding: 9px 10px; }
}

/* Google 按鈕 / 使用者 chip */
.google-btn {
    display: inline-flex; align-items: center; gap: 9px;
    background: #fff; color: var(--ink);
    border: var(--bd); border-radius: var(--r-pill);
    padding: 9px 18px; font-size: 14px; font-weight: 700; cursor: pointer;
    box-shadow: var(--sh-sm); font-family: var(--body);
    transition: transform .06s, box-shadow .12s;
}
.google-btn:hover { box-shadow: var(--sh); transform: translate(-1px,-1px); }
.google-btn:active { box-shadow: 1px 1px 0 var(--ink); transform: translate(3px,3px); }
.google-btn:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }
.g-icon { flex: 0 0 auto; }
.user-chip {
    display: inline-flex; align-items: center; gap: 9px;
    background: #fff; border: var(--bd); border-radius: var(--r-pill);
    padding: 5px 8px 5px 5px; box-shadow: var(--sh-sm);
}
.user-chip img, .user-chip .ava-fallback { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; display: grid; place-items: center; background: var(--sky); }
.user-chip .uname { font-size: 14px; font-weight: 700; color: var(--ink); max-width: 130px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.logout-btn {
    background: #fff; border: var(--bd-2); color: var(--muted);
    border-radius: var(--r-pill); padding: 6px 13px; font-size: 13px; font-weight: 600; cursor: pointer;
}
.logout-btn:hover { border-color: var(--red); color: var(--red); }

/* ---------------- Hero ---------------- */
.hero {
    max-width: 1120px; margin: 0 auto;
    padding: 40px 20px 20px;
    display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center;
}
@media (max-width: 900px) { .hero { grid-template-columns: 1fr; gap: 12px; } }

.eyebrow {
    display: inline-block; font-family: var(--display); font-weight: 600; font-size: 13.5px;
    color: var(--ink); background: var(--mint);
    border: var(--bd-2); border-radius: var(--r-pill); box-shadow: var(--sh-sm);
    padding: 6px 14px; transform: rotate(-1.5deg);
}
.hero h1 {
    font-size: clamp(34px, 6vw, 56px); font-weight: 700; line-height: 1.12;
    margin: 20px 0 0; letter-spacing: -.5px;
}
.hero h1 .hl {
    color: var(--ink); background: var(--orange);
    padding: 0 12px; margin: 0 10px; border-radius: 12px; border: var(--bd);
    box-shadow: var(--sh-sm); display: inline-block; transform: rotate(-2deg);
}
.lede { font-size: 17px; line-height: 1.7; color: var(--ink-2); margin: 22px 0 0; max-width: 30em; }
.lede b { color: var(--ink); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0 0; }

.btn-solid, .btn-ghost {
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--display); font-weight: 700; font-size: 16px; text-decoration: none;
    padding: 14px 26px; border-radius: var(--r-pill); border: var(--bd); cursor: pointer;
    transition: transform .07s, box-shadow .12s;
}
.btn-solid { background: var(--orange); color: var(--ink); box-shadow: var(--sh); }
.btn-solid:hover { transform: translate(-1px,-1px); box-shadow: 7px 7px 0 var(--ink); }
.btn-solid:active { transform: translate(4px,4px); box-shadow: 1px 1px 0 var(--ink); }
.btn-ghost { background: #fff; color: var(--ink); box-shadow: var(--sh-sm); }
.btn-ghost:hover { transform: translate(-1px,-1px); box-shadow: var(--sh); }
.btn-ghost:active { transform: translate(3px,3px); box-shadow: 1px 1px 0 var(--ink); }
.btn-solid:focus-visible, .btn-ghost:focus-visible { outline: 3px solid var(--sky); outline-offset: 3px; }
.trust { font-size: 13px; color: var(--muted); margin: 20px 0 0; }

/* Hero 貼紙藝術 */
.hero-art { position: relative; min-height: 380px; display: grid; place-items: center; }
/* ★貼紙群錨定在固定 280px 容器，硬幣/標籤永遠貼著發票，不隨螢幕寬度散開 */
.sticker-stack { position: relative; width: 280px; }
.sticker { border: var(--bd); box-shadow: var(--sh); background: #fff; }
.receipt {
    width: 280px; border-radius: 20px; padding: 22px 22px 26px; transform: rotate(3deg);
    position: relative; z-index: 2;
}
.receipt-top { font-size: 12px; color: var(--muted); letter-spacing: 1px; }
.receipt-no {
    font-family: var(--display); font-weight: 700; font-size: 30px; color: var(--ink);
    letter-spacing: 2px; margin: 4px 0 16px;
}
.receipt-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--ink-2); padding: 5px 0; }
.receipt-row.total { font-weight: 700; color: var(--ink); font-size: 16px; }
.receipt-dash { border-top: 2px dashed var(--ink); margin: 12px 0; opacity: .5; }
.receipt-barcode {
    height: 42px; margin-top: 16px; border-radius: 6px;
    background: repeating-linear-gradient(90deg, var(--ink) 0 3px, transparent 3px 6px, var(--ink) 6px 8px, transparent 8px 13px);
}
.coin {
    width: 62px; height: 62px; border-radius: 50%;
    display: grid; place-items: center; font-size: 30px; font-weight: 700; color: var(--ink);
    position: absolute; z-index: 3;
}
.coin svg { width: 34px; height: 34px; }
.coin-btc { background: var(--orange); top: -28px; left: -30px; transform: rotate(-10deg); }
.coin-eth { background: var(--sky); bottom: 34px; right: -30px; transform: rotate(12deg); }
.tag {
    position: absolute; z-index: 3; bottom: -16px; left: 8px;
    background: var(--mint); color: var(--ink); font-family: var(--display); font-weight: 700;
    padding: 8px 16px; border-radius: var(--r-pill); font-size: 15px; transform: rotate(-4deg);
}

/* ---------------- 區塊標題 ---------------- */
.section-title {
    font-size: clamp(26px, 4vw, 34px); font-weight: 700; text-align: center;
}

/* ---------------- 三步 ---------------- */
.how { max-width: 1120px; margin: 40px auto 0; padding: 24px 20px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 28px; }
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }
.step-card {
    background: #fff; border: var(--bd); border-radius: var(--r-lg);
    box-shadow: var(--sh); padding: 26px 24px; position: relative;
    transition: transform .1s, box-shadow .12s;
}
.step-card:hover { transform: translate(-2px,-2px); box-shadow: var(--sh-lg); }
.step-card h3 { font-size: 21px; margin: 14px 0 8px; }
.step-card p { font-size: 14.5px; color: var(--ink-2); margin: 0; line-height: 1.7; }
.step-no {
    display: grid; place-items: center; width: 46px; height: 46px;
    font-family: var(--display); font-weight: 700; font-size: 24px; color: var(--ink);
    border: var(--bd); border-radius: 14px; box-shadow: var(--sh-sm);
}
.s1 .step-no { background: var(--orange); transform: rotate(-6deg); }
.s2 .step-no { background: var(--sky); transform: rotate(4deg); }
.s3 .step-no { background: var(--mint); transform: rotate(-3deg); }

/* ---------------- 排行榜 ---------------- */
.leaderboard-section {
    max-width: 820px; margin: 44px auto 0; padding: 26px 24px 30px;
    background: #fff; border: var(--bd); border-radius: var(--r-lg); box-shadow: var(--sh-lg);
}
.lb-head { text-align: center; margin-bottom: 18px; }
.lb-head .section-title { text-align: center; }
.lb-sub { display: block; color: var(--muted); font-size: 14px; margin-top: 4px; }
.lb-list { display: flex; flex-direction: column; gap: 10px; }
.lb-row {
    display: flex; align-items: center; gap: 14px;
    background: var(--paper); border: var(--bd-2); border-radius: 16px;
    padding: 12px 16px;
}
.lb-row.top { background: #fff; box-shadow: var(--sh-sm); border: var(--bd); }
.lb-rank { width: 42px; text-align: center; font-family: var(--display); font-weight: 700; font-size: 20px; color: var(--ink); }
.lb-ava { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; border: var(--bd-2); background: var(--sky); display: grid; place-items: center; font-size: 20px; }
.lb-name { flex: 1; min-width: 0; font-weight: 700; color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lb-count { color: var(--muted); font-size: 13px; font-variant-numeric: tabular-nums; }
.lb-twd {
    flex: 0 0 auto; white-space: nowrap;
    font-family: var(--display); font-weight: 700; font-size: 18px; color: var(--ink);
    background: var(--orange); border: var(--bd-2); border-radius: var(--r-pill);
    padding: 3px 14px; font-variant-numeric: tabular-nums; box-shadow: 2px 2px 0 var(--ink);
}
.lb-empty { text-align: center; color: var(--muted); padding: 30px 10px; }
/* 手機：排行榜列收窄，名稱不換行、徽章縮小 */
@media (max-width: 520px) {
    .lb-row { gap: 9px; padding: 10px 12px; }
    .lb-rank { width: 26px; font-size: 16px; }
    .lb-ava { width: 32px; height: 32px; font-size: 17px; }
    .lb-twd { font-size: 15px; padding: 3px 10px; }
}

/* ---------------- Footer ---------------- */
.site-footer { max-width: 820px; margin: 48px auto 0; padding: 30px 20px 50px; text-align: center; color: var(--muted); }
.site-footer b { color: var(--ink); font-family: var(--display); }
.site-footer .fine { font-size: 12.5px; margin-top: 8px; line-height: 1.7; }

/* ---------------- Toast ---------------- */
.toast {
    position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
    background: #fff; border: var(--bd); border-radius: 16px;
    padding: 13px 22px; z-index: 200; box-shadow: var(--sh);
    color: var(--ink); font-weight: 700; font-size: 14px;
}
.toast.err { background: #ffecec; }
/* toast 前綴 icon 見下方「平面 icon 系統」（SVG，取代 emoji） */

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ---- 頭像可點擊編輯暱稱 ---- */
.user-chip { cursor: pointer; transition: transform .07s, box-shadow .12s; }
.user-chip:hover { transform: translate(-1px,-1px); box-shadow: var(--sh); }
.user-chip:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }
.user-chip .edit-pen { font-size: 12px; color: var(--muted); margin-left: 1px; }

/* ---- 暱稱編輯小視窗 ---- */
.nick-backdrop {
    position: fixed; inset: 0; z-index: 2000;
    background: rgba(20,33,61,.4);
    display: flex; align-items: center; justify-content: center; padding: 20px;
}
.nick-modal {
    width: 100%; max-width: 380px; background: var(--card, #fff);
    border: var(--bd); border-radius: var(--r-lg); box-shadow: var(--sh-lg); padding: 24px 26px;
}
.nick-modal h3 { font-family: var(--display); font-size: 20px; color: var(--ink); margin: 0 0 8px; }
.nick-hint { font-size: 13px; color: var(--ink-2); line-height: 1.6; margin: 0 0 16px; }
.nick-input {
    width: 100%; box-sizing: border-box; background: #fff; color: var(--ink);
    border: var(--bd-2); border-radius: 14px; padding: 12px 14px; font-size: 15px;
    outline: none; font-family: inherit;
}
.nick-input:focus { border-color: var(--ink); box-shadow: var(--sh-sm); }
.nick-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 18px; }
.nick-btn {
    background: var(--orange); color: var(--ink); border: var(--bd);
    border-radius: var(--r-pill); padding: 10px 22px;
    font-family: var(--display); font-weight: 700; font-size: 15px; cursor: pointer;
    box-shadow: var(--sh-sm); transition: transform .07s, box-shadow .12s;
}
.nick-btn:hover { transform: translate(-1px,-1px); box-shadow: var(--sh); }
.nick-btn:active { transform: translate(3px,3px); box-shadow: 1px 1px 0 var(--ink); }
.nick-btn.ghost { background: #fff; }

/* ---- 排行榜切換頁籤 ---- */
.lb-tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: 18px; flex-wrap: wrap; }
.lb-tab {
    background: #fff; color: var(--ink); border: var(--bd-2); border-radius: var(--r-pill);
    padding: 8px 18px; font-family: var(--display); font-weight: 700; font-size: 14.5px; cursor: pointer;
    transition: transform .07s, box-shadow .12s;
}
.lb-tab:hover { transform: translate(-1px,-1px); box-shadow: var(--sh-sm); }
.lb-tab.active { background: var(--orange); border: var(--bd); box-shadow: var(--sh-sm); }

/* ---- 頁尾連結 ---- */
.site-footer a { color: var(--orange-d); font-weight: 700; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }

/* ---- 法律頁（條款/免責/隱私） ---- */
.legal .card-box { padding: 22px 24px; }
.legal .card-box p { margin: 0 0 12px; line-height: 1.85; font-size: 15px; color: var(--ink-2); }
.legal .card-box p:last-child { margin-bottom: 0; }
.legal .card-box b { color: var(--ink); }
.legal-list { margin: 0 0 12px; padding-left: 22px; line-height: 1.85; font-size: 15px; color: var(--ink-2); }
.legal-list li { margin-bottom: 6px; }
.legal-list b { color: var(--ink); }
.card-box.legal-highlight { background: #fff8e9; }
.card-box.legal-highlight h3 { color: var(--orange-d); }
.card-box.legal-danger { background: #fff5f5; border-color: var(--red); }
.card-box.legal-danger h3 { color: var(--red); }
.legal-final {
    text-align: center; font-weight: 700; color: var(--ink);
    background: var(--paper); border: var(--bd-2); border-radius: 14px;
    padding: 16px; margin: 4px 0 10px; line-height: 1.7;
}

/* ---- 平面 icon 系統（取代 emoji） ---- */
.ic { width: 1em; height: 1em; display: inline-block; vertical-align: -0.14em; flex: 0 0 auto; }
.brand-badge svg { width: 24px; height: 24px; }
.trust-ico { width: 15px; height: 15px; vertical-align: -2px; margin-right: 4px; }

/* 排行榜名次徽章（金銀銅） */
.medal {
    display: inline-grid; place-items: center; width: 32px; height: 32px;
    border-radius: 50%; border: var(--bd-2); box-shadow: 2px 2px 0 var(--ink);
    font-family: var(--display); font-weight: 700; font-size: 15px; color: var(--ink);
}
.medal.m1 { background: #ffd23f; }
.medal.m2 { background: #d7dde3; }
.medal.m3 { background: #e6a763; }
.rank-n { font-family: var(--display); font-weight: 700; font-size: 18px; color: var(--muted); }

/* Toast 前綴 icon（改用 SVG，取代舊 emoji 前綴） */
.toast::before {
    content: ""; display: inline-block; width: 16px; height: 16px; vertical-align: -3px; margin-right: 6px;
    background: no-repeat center / contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232fbf87' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}
.toast.err::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e5484d' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3 22 20H2z'/%3E%3Cpath d='M12 10v4.2'/%3E%3Cpath d='M12 17.4v.2'/%3E%3C/svg%3E");
}
.ava-fallback svg { width: 20px; height: 20px; }
.lb-ava svg { width: 22px; height: 22px; }
.edit-pen { display: inline-flex; align-items: center; }
.edit-pen svg { width: 13px; height: 13px; }

/* 實心貼紙 icon（與「建立 API 金鑰時」鎖同風格：實色填充＋墨線描邊，放大更清楚） */
.ic2 { width: 1.25em; height: 1.25em; display: inline-block; vertical-align: -0.26em; flex: 0 0 auto; }
.brand-badge .brand-ic { width: 26px; height: 26px; }
.trust .ic2 { width: 17px; height: 17px; vertical-align: -4px; }
.ref-perk .ic2 { width: 18px; height: 18px; vertical-align: -4px; }
.lb-twd .ic2 { width: 20px; height: 20px; }
.edit-pen svg { width: 15px; height: 15px; }

/* ---- 首頁 hero 貼紙微動畫（活潑、非同步循環；reduced-motion 已於上方停用） ---- */
@keyframes float-receipt { 0%,100% { transform: rotate(3deg) translateY(0); } 50% { transform: rotate(2.2deg) translateY(-8px); } }
@keyframes bob-btc      { 0%,100% { transform: rotate(-10deg) translateY(0); } 50% { transform: rotate(-14deg) translateY(-9px); } }
@keyframes bob-eth      { 0%,100% { transform: rotate(12deg) translateY(0); } 50% { transform: rotate(16deg) translateY(-7px); } }
@keyframes wobble-tag   { 0%,100% { transform: rotate(-4deg); } 50% { transform: rotate(-9deg); } }
@keyframes sway-eyebrow { 0%,100% { transform: rotate(-1.5deg); } 50% { transform: rotate(1.6deg); } }
@keyframes pop-badge    { 0%,88%,100% { transform: rotate(-6deg) scale(1); } 94% { transform: rotate(-3deg) scale(1.08); } }

.hero-art .receipt { animation: float-receipt 5s ease-in-out infinite; }
.hero-art .coin-btc { animation: bob-btc 3.3s ease-in-out infinite; }
.hero-art .coin-eth { animation: bob-eth 3.9s ease-in-out .4s infinite; }
.hero-art .tag { animation: wobble-tag 4.2s ease-in-out infinite; }
.hero .eyebrow { animation: sway-eyebrow 5.5s ease-in-out infinite; transform-origin: left center; }
.brand-badge { animation: pop-badge 6s ease-in-out infinite; }

/* ---------------- 教學指南 teaser ---------------- */
.guide-teaser { max-width: 1120px; margin: 40px auto 0; padding: 24px 20px; }
.gt-head { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; justify-content: center; }
.gt-sub { color: var(--muted); font-size: 15px; font-weight: 500; }
.gt-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 18px; margin-top: 26px; }
@media (max-width: 800px) { .gt-grid { grid-template-columns: 1fr; } }
.gt-card {
    display: flex; flex-direction: column; gap: 10px;
    background: #fff; border: var(--bd); border-radius: var(--r-lg);
    box-shadow: var(--sh-sm); padding: 22px 22px; text-decoration: none;
    transition: transform .12s ease, box-shadow .12s ease;
}
.gt-card:hover { transform: translate(-3px, -3px); box-shadow: var(--sh); }
.gt-hub { background: #fff2d6; }
.gt-tag { font-size: 13px; font-weight: 800; color: var(--orange-d); }
.gt-title { font-size: 18px; font-weight: 700; color: var(--ink); line-height: 1.45; }
.gt-hub .gt-title { font-size: 20px; }
.gt-more { margin-top: auto; font-size: 14px; font-weight: 700; color: var(--ink-2); }
