  /* ─── MARGIN — coach pen + idle doodles ─── */
/* ══ margin — the coach's voice + idle-drawn doodles ═══════════════════════
   Additive to the .bs override layer (see the BROADSHEET comment block already
   in index.html). Nothing here sets an explicit width on .margin — it fills
   whatever grid/flex track the surrounding layout gives it, same as the
   approved mockup. */
.bs .margin{
  border-left:1px dashed var(--bs-rule);
  padding-left:20px;
  min-height:300px;
  position:relative;
}
.bs .margin-k{
  font-family:var(--bs-mono);
  font-size:8px;
  font-weight:500;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--bs-ink-3);
  margin-bottom:12px;
}

/* Coach speaks in red pen, hand-written, tipped off-axis like a real margin note */
.bs .note{
  font-family:var(--bs-hand);
  font-size:25px;
  line-height:1.16;
  color:var(--bs-pen);
  transform:rotate(-1.6deg);
  transform-origin:left top;
}
.bs .note .arrow{
  display:block;
  width:52px;
  height:30px;
  margin:5px 0 0 6px;
  overflow:visible;
}
.bs .note .arrow path{
  fill:none;
  stroke:var(--bs-pen);
  stroke-width:1.9;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.bs .note-sig{
  font-family:var(--bs-hand);
  font-size:17px;
  color:var(--bs-pen);
  opacity:.72;
  margin-top:7px;
  transform:rotate(-1deg);
}

/* Idle doodles — pencil, not ink. They draw themselves as if the student drifted. */
.bs .doodles{
  margin-top:26px;
}
.bs .doodle{
  display:block;
  margin-bottom:14px;
  max-width:100%;
  height:auto;
}
.bs .doodle path,
.bs .doodle circle,
.bs .doodle line,
.bs .doodle polyline{
  fill:none;
  stroke:var(--bs-graphite);
  stroke-width:1.7;
  stroke-linecap:round;
  stroke-linejoin:round;
  /* No opacity. On paper alpha does not mute, it erases: graphite is 3.14:1 on
     the stock, and at .62 it composited to #a5aaa0 — 1.93:1, a doodle nobody
     could see. Graphite's own tone is already secondary to ink. */
  stroke-dasharray:var(--len);
  stroke-dashoffset:var(--len);
  animation:bs-doodle-draw 1.4s ease-out forwards;
}
/* Mild internal stagger so multi-stroke doodles (grid, cube, flower, zzz)
   don't all snap on at once — still hand-drawn-feeling, still cheap. */
.bs .doodle path:nth-of-type(2),
.bs .doodle line:nth-of-type(2),
.bs .doodle circle:nth-of-type(2),
.bs .doodle polyline:nth-of-type(2){ animation-delay:.28s; }
.bs .doodle path:nth-of-type(3),
.bs .doodle line:nth-of-type(3),
.bs .doodle circle:nth-of-type(3){ animation-delay:.56s; }
.bs .doodle path:nth-of-type(4),
.bs .doodle line:nth-of-type(4){ animation-delay:.84s; }
.bs .doodle path:nth-of-type(5),
.bs .doodle line:nth-of-type(5){ animation-delay:1.05s; }
@keyframes bs-doodle-draw{ to{ stroke-dashoffset:0; } }

/* Nobody doodles square to the page. A little rotation and offset per position
   is the difference between a drawing and a placed asset — and it varies by
   nth-child so consecutive doodles never sit the same way twice. */
.bs .doodles .doodle:nth-child(1){ transform:rotate(-4deg) translateX(6px); }
.bs .doodles .doodle:nth-child(2){ transform:rotate(3.5deg) translateX(-4px); }
.bs .doodles .doodle:nth-child(3){ transform:rotate(-2deg) translateX(10px); }

@media (max-width:920px){
  .bs .margin{
    border-left:none;
    border-top:1px dashed var(--bs-rule);
    padding-left:0;
    padding-top:18px;
    margin-top:24px;
    min-height:0;
  }
  .bs .doodles{
    display:flex;
    flex-wrap:wrap;
    gap:10px 18px;
    margin-top:20px;
  }
  .bs .doodle{ margin-bottom:0; }
}
@media (max-width:560px){
  .bs .note{ font-size:21px; }
  .bs .note-sig{ font-size:15px; }
  .bs .doodle{ width:72px; }
}

@media (prefers-reduced-motion:reduce){
  .bs .doodle path,
  .bs .doodle circle,
  .bs .doodle line,
  .bs .doodle polyline{
    animation:none;
    stroke-dashoffset:0;
  }
}
/* ══ THE FRONT PAGE ════════════════════════════════════════════════════════
   The home screen was a card dashboard in newsprint clothing — uniform boxes,
   uniform emphasis, no editorial voice. It is now composed as a front page,
   which is what actually extends the practice document:

     masthead   the paper's name, a folio line, the thick/thin double rule
     standings  ratings as a printed results table, not pills
     the lede   today's session as a headline with a deck and a byline rule
     the index  departments as a numbered ruled list, not a card grid

   Hierarchy comes from SCALE and RULE, not from boxes: the lede headline is
   the biggest thing on the page, the index is quiet, and nothing is a
   rounded card. Everything below is scoped `.bs` and only touches the home
   screen's own classes.
   ══════════════════════════════════════════════════════════════════════════ */

/* gap:0 is load-bearing. The base .home-wrap is a flex column with gap:18px
   (and 14px under 560px), and neither was overridden when the front page was
   built — so that gap STACKED on top of every section's own margin-bottom
   (flex-item margins never collapse against a gap). Measured rendered gaps were
   40/44/40/44/42px for boundaries authored as 26/30/26/30/28px: three different
   values for visually identical ruled-section boundaries, which is exactly the
   drifting vertical rhythm this layout was meant to avoid. Each section's
   margin-bottom is now the single source of truth for its own boundary.

   That removed the STACKING but left the authored values themselves at
   26/30/26/30/28 — still three numbers for one kind of boundary, just no
   longer inflated. They are now all 28px. If a boundary should ever breathe
   differently, change it deliberately and say why here. */
.bs .home-wrap { max-width: 1080px; margin: 0 auto; padding: 0 28px 72px; gap: 0; }
/* Block, not flex: the masthead rules have to span the FULL measure to read
   as printed rules. With the actions as a flex sibling they stopped short of
   the page edge and lined up with nothing. The actions are lifted out of flow
   instead, so they sit in the masthead's top-right corner without shortening
   anything. */
.bs .home-head {
  display: block; position: relative;
  padding: 26px 0 0; border: none; margin-bottom: 28px;
}
.bs .fp-mast { min-width: 0; }
/* Hairline above the wordmark: a masthead is framed, not floating. */
.bs .fp-mast-rule { height: 1px; background: var(--bs-ink); margin-bottom: 14px; }
.bs .fp-name {
  font-family: var(--bs-ed);
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
  font-weight: 900;
  /* The wordmark is the largest thing on the page. A masthead earns that. */
  font-size: clamp(44px, 7vw, 78px);
  line-height: .86; letter-spacing: -.045em;
  margin: 0; color: var(--bs-ink);
}
/* Folio line: date, edition, reader — the strip every newspaper runs under
   its nameplate, closed by the classic thick-then-thin double rule. */
.bs .fp-folio {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px;
  margin-top: 12px; padding: 7px 0 0;
  border-top: 3px solid var(--bs-ink);
  border-bottom: 1px solid var(--bs-ink);
  padding-bottom: 6px;
  font-family: var(--bs-mono);
  font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--bs-ink-2);
}
.bs .fp-folio-dot { color: var(--bs-rule); }
.bs .home-head-actions {
  position: absolute; top: 40px; right: 0;
  display: flex; gap: 6px;
}
.bs .home-iconbtn {
  background: transparent; border: 1px solid var(--bs-ink); border-radius: 0;
  font-family: var(--bs-mono); font-size: 9.5px; letter-spacing: .14em;
  color: var(--bs-ink); padding: 7px 10px; cursor: pointer;
  transition: background .12s ease, color .12s ease;
}
.bs .home-iconbtn:hover { background: var(--bs-ink); color: var(--bs-stock); }
.bs .home-iconbtn:active { background: var(--bs-ink-2); color: var(--bs-stock); }
.bs .home-iconbtn:focus-visible { outline: 2px solid var(--bs-blue); outline-offset: 2px; }

/* ── standings: ratings as a printed results table ── */
.bs .home-stats {
  display: flex; align-items: stretch; justify-content: space-between;
  gap: 0; margin: 0 0 28px; padding: 0;
  border-bottom: 1px solid var(--bs-rule);
}
.bs .home-ratings { display: flex; gap: 0; flex-wrap: wrap; }
.bs .home-rating-pill {
  display: flex; flex-direction: column; gap: 3px;
  background: transparent; border: none; border-radius: 0;
  border-right: 1px solid var(--bs-rule);
  padding: 0 26px 16px 0; margin-right: 26px; min-width: 0;
}
/* Without this the last pill still printed a trailing hairline and reserved
   26px before the streak, so the standings row read as an unfinished column.
   Mirrors the :last-child pattern .topbar-toggle-btn already uses. */
.bs .home-rating-pill:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.bs .home-rating-pill .hr-lbl {
  font-family: var(--bs-mono); font-size: 9.5px; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase; color: var(--bs-ink-3);
}
/* The figure is editorial, the label is instrumentation — the same split the
   practice masthead's meters use. */
.bs .home-rating-pill .hr-val {
  font-family: var(--bs-ed);
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
  font-weight: 900; font-size: 40px; line-height: .92;
  letter-spacing: -.035em; color: var(--bs-ink);
  font-variant-numeric: tabular-nums;
}
.bs .home-streak {
  display: flex; align-items: baseline; gap: 7px;
  background: transparent; border: none; border-radius: 0;
  padding: 0 0 16px; align-self: flex-end;
  font-family: var(--bs-mono); font-size: 10px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--bs-ink-3);
}
.bs .home-streak #home-streak-val {
  font-family: var(--bs-ed); font-variation-settings: normal;
  font-weight: 900; font-size: 22px; letter-spacing: -.02em;
  color: var(--bs-blue);
}

/* ── the lede: today's session as the front-page story ── */
.bs .home-hero {
  display: block; background: transparent;
  border: none; border-bottom: 3px solid var(--bs-ink);
  border-radius: 0; padding: 0 0 24px; margin: 0 0 28px;
}
.bs .home-hero-kicker {
  font-family: var(--bs-mono); font-size: 10px; font-weight: 400;
  letter-spacing: .2em; text-transform: uppercase; color: var(--bs-blue);
  margin-bottom: 10px;
}
.bs .home-hero-title {
  font-family: var(--bs-ed);
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
  font-weight: 900; font-size: clamp(30px, 4.2vw, 50px);
  line-height: 1.02; letter-spacing: -.032em;
  color: var(--bs-ink); margin: 0 0 12px; max-width: 20ch;
}
/* The deck: a newspaper sets its sub-headline smaller, lighter, and in the
   instrumentation face so the headline keeps all the voice. */
.bs .home-hero-meta {
  font-family: var(--bs-ui); font-size: 15px; line-height: 1.5;
  color: var(--bs-ink-2); max-width: 58ch; margin-bottom: 20px;
}
.bs .home-hero-btn, .bs .btn-primary.home-hero-btn {
  display: inline-flex; align-items: center; gap: 10px;
  width: auto; margin: 0; padding: 13px 26px;
  background: var(--bs-blue); color: var(--bs-sheet);
  border: none; border-radius: 0;
  font-family: var(--bs-ed); font-variation-settings: normal;
  font-weight: 900; font-size: 17px; letter-spacing: -.01em;
  cursor: pointer; transition: transform .1s ease, box-shadow .1s ease;
  box-shadow: 4px 4px 0 var(--bs-ink);
}
.bs .home-hero-btn:hover {
  transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--bs-ink);
}
.bs .home-hero-btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--bs-ink); }

/* ── the index: departments as a ruled list ── */
.bs .home-nav { display: block; margin: 0 0 28px; }
.bs .home-nav-card {
  display: flex; align-items: baseline; gap: 18px; width: 100%;
  background: transparent; border: none; border-radius: 0;
  border-top: 1px solid var(--bs-rule);
  padding: 15px 4px; text-align: left; cursor: pointer;
  /* transform, not padding-left: the slide used to animate a layout-bound
     property, which forced layout on every hover frame. Identical visual. */
  transition: background .12s ease, transform .12s ease;
}
.bs .home-nav-card:last-of-type { border-bottom: 1px solid var(--bs-rule); }
/* The index entry slides toward the reader on hover — the closest print
   analogue to a hover state is the eye moving down a column. */
.bs .home-nav-card:hover { background: var(--bs-sheet); transform: translateX(8px); }
.bs .home-nav-card:active { background: var(--bs-stock-2); transform: translateX(4px); }
.bs .home-nav-card:focus-visible {
  outline: 2px solid var(--bs-blue); outline-offset: 2px; background: var(--bs-sheet);
}
.bs .home-nav-card .hn-icon {
  font-family: var(--bs-mono); font-size: 10px; letter-spacing: .1em;
  color: var(--bs-blue); min-width: 26px; flex-shrink: 0;
}
.bs .home-nav-card .hn-text { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.bs .home-nav-card .hn-title {
  font-family: var(--bs-ed); font-variation-settings: 'WONK' 1;
  font-weight: 900; font-size: 22px; letter-spacing: -.02em; color: var(--bs-ink);
}
.bs .home-nav-card .hn-sub {
  font-family: var(--bs-ui); font-size: 13px; color: var(--bs-ink-3);
}

/* ── remaining home panels: ruled sections, not cards ── */
.bs .home-card, .bs .home-assignments, .bs .home-rounds {
  background: transparent; border: none; border-radius: 0;
  border-top: 3px solid var(--bs-ink);
  padding: 18px 0 0; margin: 0 0 28px;
}
.bs .home-card-title, .bs .home-rounds-head {
  font-family: var(--bs-mono); font-size: 10px; font-weight: 400;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--bs-blue); margin-bottom: 6px;
}
.bs .home-card-subtitle {
  font-family: var(--bs-ui); font-size: 13.5px; color: var(--bs-ink-3);
  margin-bottom: 18px; max-width: 62ch;
}
.bs .round-card {
  display: flex; flex-direction: column; gap: 5px; align-items: flex-start;
  background: var(--bs-sheet); border: 1.5px solid var(--bs-ink);
  border-radius: 0; padding: 15px 16px; cursor: pointer; text-align: left;
  transition: transform .1s ease, box-shadow .1s ease;
  /* Same offsets and the same hover delta as .home-hero-btn — one affordance
     should not behave two different ways in one product. */
  box-shadow: 4px 4px 0 var(--bs-ink);
}
.bs .round-card:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--bs-ink); }
.bs .round-card:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--bs-ink); }
.bs .round-card:focus-visible { outline: 2px solid var(--bs-blue); outline-offset: 3px; }
.bs .rc-icon { font-family: var(--bs-mono); font-size: 11px; color: var(--bs-blue); }
.bs .rc-name {
  font-family: var(--bs-ed); font-variation-settings: normal;
  font-weight: 900; font-size: 20px; letter-spacing: -.02em;
}
.bs .rc-meta { font-family: var(--bs-ui); font-size: 12px; color: var(--bs-ink-3); }

/* ══ THE BACK PAGE (puzzle section) ════════════════════════════════════════
   Was four identical rounded cards in a centred stack — the template shape the
   design rules explicitly ban. It is now the paper's puzzle page: same stock and
   type roles as the rest of the publication, but a looser register, because a
   break that looks identical to a test does not feel like a reward.

   The devices are the puzzle page's own: a section head, puzzles NUMBERED as a
   paper numbers them, and dotted leader rules between entries — the dotted line
   is what a printed index or crossword clue list uses, and it distinguishes this
   section from the front page's solid rules without inventing a new colour.
   ══════════════════════════════════════════════════════════════════════════ */
#screen-game-select.bs { align-items: stretch; justify-content: flex-start; }
.bs .game-select-box { width: 100%; max-width: 680px; margin: 0 auto; padding: 40px 28px 64px; }
.bs .gs-header { text-align: left; margin-bottom: 30px; }
.bs .gs-rule { height: 1px; background: var(--bs-ink); margin-bottom: 13px; }
.bs .gs-title {
  font-family: var(--bs-ed);
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
  /* 28px floor, not 34: at 320px the wider correct glyphs pushed the title to a
     second line. Keeps the back page's nameplate on one line at phone width. */
  font-weight: 900; font-size: clamp(28px, 5.5vw, 52px);
  line-height: .9; letter-spacing: -.04em; color: var(--bs-ink);
  text-wrap: balance;
}
.bs .gs-folio {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: baseline;
  margin-top: 11px; padding: 7px 0 6px;
  border-top: 3px solid var(--bs-ink); border-bottom: 1px solid var(--bs-ink);
  font-family: var(--bs-mono); font-size: 9.5px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--bs-ink-2);
}
.bs .game-options { display: block; }
/* Entries in a printed list, not cards. The dotted leader is the puzzle page's
   signature rule — a crossword clue list looks exactly like this. */
.bs .game-option {
  display: flex; align-items: baseline; gap: 20px; width: 100%;
  background: transparent; border: none; border-radius: 0;
  border-bottom: 1px dotted var(--bs-rule);
  padding: 17px 4px; text-align: left; cursor: pointer;
  box-shadow: none;
  transition: background .12s ease, transform .12s ease;
}
.bs .game-option:hover {
  background: var(--bs-sheet); box-shadow: none;
  /* Slides toward the reader like the front page's index — same idiom, so the
     two lists feel like one system. */
  transform: translateX(8px);
}
.bs .game-option:focus-visible {
  outline: 2px solid var(--bs-blue); outline-offset: 2px; background: var(--bs-sheet);
}
/* The puzzle number is set in the editorial face — it is the entry's title mark,
   the way a crossword is "No. 1", not a label. */
.bs .game-option .go-icon {
  font-family: var(--bs-ed); font-variation-settings: 'WONK' 1;
  font-weight: 900; font-size: 21px; letter-spacing: -.02em;
  color: var(--bs-blue); min-width: 74px; flex-shrink: 0; line-height: 1;
}
.bs .game-option .go-name {
  font-family: var(--bs-ed); font-variation-settings: 'WONK' 1;
  font-weight: 900; font-size: 21px; letter-spacing: -.02em; color: var(--bs-ink);
  display: block;
}
.bs .game-option .go-desc {
  font-family: var(--bs-ui); font-size: 13px; line-height: 1.45;
  color: var(--bs-ink-3); display: block; margin-top: 2px;
}
.bs .skip-link {
  display: inline-block; margin-top: 26px;
  background: transparent; border: none; padding: 0;
  font-family: var(--bs-mono); font-size: 10px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--bs-ink-3);
  cursor: pointer; border-bottom: 1px solid transparent;
  transition: color .12s ease, border-color .12s ease;
}
.bs .skip-link:hover { color: var(--bs-blue); border-bottom-color: var(--bs-blue); }
@media (max-width: 560px) {
  .bs .game-select-box { padding: 26px 20px 48px; }
  .bs .game-option { gap: 12px; }
  .bs .game-option .go-icon { min-width: 56px; font-size: 18px; }
  .bs .game-option .go-name { font-size: 18px; }
}

/* ── THE COVER (login) ─────────────────────────────────────────────────────
   Was a centred card titled "SAT TRAINER" — a generic sign-in box that shared
   nothing with the product behind it. It is now the paper's cover: the same
   nameplate, the same dateline, the same double rule. The first thing a student
   sees is the publication they are about to read.
   ────────────────────────────────────────────────────────────────────────── */
.bs .login-box {
  max-width: 460px; margin: 0 auto; padding: 8vh 28px 40px;
  background: transparent; border: none; border-radius: 0; box-shadow: none;
  /* Flush left, not centred. An editorial page has a left edge. */
  text-align: left;
}
.bs .login-rule { height: 1px; background: var(--bs-ink); margin-bottom: 14px; }
.bs .login-title {
  font-family: var(--bs-ed);
  font-variation-settings: 'SOFT' 0, 'WONK' 1;
  font-weight: 900; font-size: clamp(46px, 11vw, 68px);
  line-height: .86; letter-spacing: -.045em;
  color: var(--bs-ink); text-transform: none; margin: 0;
  /* The base .login-title centres; an editorial page has a left edge. */
  text-align: left;
}
.bs .login-folio {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: baseline;
  margin-top: 12px; padding: 7px 0 6px;
  border-top: 3px solid var(--bs-ink); border-bottom: 1px solid var(--bs-ink);
  font-family: var(--bs-mono); font-size: 9.5px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--bs-ink-2);
}
.bs .login-sub {
  font-family: var(--bs-ui); font-size: 14px; color: var(--bs-ink-3);
  margin: 18px 0 22px; letter-spacing: 0; text-transform: none;
  text-align: left;
}
.bs .login-box .field { margin-bottom: 16px; }
.bs .login-box label {
  display: block; font-family: var(--bs-mono); font-size: 9.5px;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--bs-ink-3); margin-bottom: 6px;
}
/* A ruled line to write on, not a rounded input well. */
.bs .login-box input {
  width: 100%; background: transparent; border: none;
  border-bottom: 1.5px solid var(--bs-ink); border-radius: 0;
  padding: 8px 2px; color: var(--bs-ink);
  font-family: var(--bs-ui); font-size: 17px;
  transition: border-color .12s ease, background .12s ease;
}
/* No alpha on the hint text — see the note on .bs .stat::before. */
.bs .login-box input::placeholder { color: var(--bs-ink-3); opacity: 1; }
.bs .login-box input:focus {
  outline: none; border-bottom-color: var(--bs-blue);
  background: var(--bs-sheet);
}
.bs .login-box .btn-primary {
  width: 100%; margin-top: 12px; padding: 14px 20px;
  background: var(--bs-blue); color: var(--bs-sheet);
  border: none; border-radius: 0;
  font-family: var(--bs-ed); font-variation-settings: normal;
  font-weight: 900; font-size: 17px; letter-spacing: -.01em; cursor: pointer;
  box-shadow: 4px 4px 0 var(--bs-ink);
  transition: transform .1s ease, box-shadow .1s ease;
}
.bs .login-box .btn-primary:hover {
  transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--bs-ink);
}
.bs .login-box .btn-primary:active {
  transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--bs-ink);
}
/* Needs the .login-box ancestor to match the enabled rule's specificity —
   without it the blue fill above kept winning and a disabled sign-in button
   looked identical to a live one. */
.bs .login-box .btn-primary:disabled {
  background: var(--bs-stock-2); color: var(--bs-ink-2);
  box-shadow: none; transform: none; cursor: default;
}
.bs .login-box .btn-primary:disabled:hover { transform: none; box-shadow: none; }
.bs .login-box a { color: var(--bs-blue); text-decoration: none; }
.bs .login-box a:hover { text-decoration: underline; }
.bs .welcome-card {
  background: var(--bs-sheet); border: 1.5px solid var(--bs-ink);
  border-radius: 0; padding: 16px 18px; box-shadow: 3px 3px 0 var(--bs-ink);
}
.bs .welcome-line {
  font-family: var(--bs-ed); font-variation-settings: normal;
  font-weight: 900; font-size: 20px; letter-spacing: -.02em; color: var(--bs-ink);
}

