/* ===========================================================================
   Stock87 — earnings dashboard
   Palette, surfaces and mark specs follow the validated data-viz reference:
   both the light and dark categorical sets clear the CVD, chroma, lightness
   and normal-vision gates. Do not hand-tweak the --series-* values.
   =========================================================================== */

/* --- Light (default tokens) ------------------------------------------- */
:root {
  color-scheme: light;

  --surface-1:   #fcfcfb;   /* card / chart surface */
  --surface-2:   #f3f3f0;   /* insets, table stripes */
  --plane:       #f9f9f7;   /* page */
  --plane-2:     #efefec;   /* topbar */

  --text-1:      #0b0b0b;
  --text-2:      #52514e;
  --text-3:      #898781;

  --grid:        #e1e0d9;
  --axis:        #c3c2b7;
  --border:      rgba(11, 11, 11, .10);
  --border-2:    rgba(11, 11, 11, .16);

  --good:        #0ca30c;
  --good-text:   #006300;
  --warning:     #fab219;
  --critical:    #d03b3b;

  --accent:      #2a78d6;
  --accent-ink:  #ffffff;
  --accent-soft: rgba(42, 120, 214, .10);

  --series-1: #2a78d6;  --series-2: #eb6834;
  --series-3: #1baf7a;  --series-4: #eda100;
  --series-5: #e87ba4;  --series-6: #008300;
  --series-7: #4a3aa7;  --series-8: #e34948;

  /* sequential blue ramp, always ordered quiet -> strong for the reader:
     on light that means pale -> deep, on dark deep -> bright. */
  --seq-100: #cde2fb; --seq-200: #9ec5f4; --seq-300: #6da7ec;
  --seq-400: #3987e5; --seq-500: #256abf; --seq-600: #184f95;
  --seq-700: #0d366b;

  --meter-track: #cde2fb;
  --meter-fill:  #2a78d6;

  --shadow: 0 1px 2px rgba(11,11,11,.05), 0 8px 24px -12px rgba(11,11,11,.14);
  --radius: 14px;
  --gap: 18px;
}

/* --- Dark: selected steps, not an inverted flip ------------------------ */
@media (prefers-color-scheme: dark) {
  :root:where(:not([data-theme="light"])) { color-scheme: dark;
    --surface-1: #1a1a19; --surface-2: #222220;
    --plane: #0d0d0d;     --plane-2: #131312;
    --text-1: #ffffff;    --text-2: #c3c2b7;  --text-3: #898781;
    --grid: #2c2c2a;      --axis: #383835;
    --border: rgba(255,255,255,.10); --border-2: rgba(255,255,255,.17);
    --good: #0ca30c; --good-text: #0ca30c; --warning: #fab219; --critical: #d03b3b;
    --accent: #3987e5; --accent-ink: #ffffff; --accent-soft: rgba(57,135,229,.16);
    --series-1: #3987e5; --series-2: #d95926;
    --series-3: #199e70; --series-4: #c98500;
    --series-5: #d55181; --series-6: #008300;
    --series-7: #9085e9; --series-8: #e66767;
    --seq-100: #0d366b; --seq-200: #104281; --seq-300: #184f95;
    --seq-400: #1c5cab; --seq-500: #256abf; --seq-600: #3987e5;
    --seq-700: #5598e7;
    --meter-track: #0d366b; --meter-fill: #3987e5;
    --shadow: 0 1px 2px rgba(0,0,0,.4), 0 10px 30px -14px rgba(0,0,0,.7);
  }
}
:root[data-theme="dark"] { color-scheme: dark;
  --surface-1: #1a1a19; --surface-2: #222220;
  --plane: #0d0d0d;     --plane-2: #131312;
  --text-1: #ffffff;    --text-2: #c3c2b7;  --text-3: #898781;
  --grid: #2c2c2a;      --axis: #383835;
  --border: rgba(255,255,255,.10); --border-2: rgba(255,255,255,.17);
  --good: #0ca30c; --good-text: #0ca30c; --warning: #fab219; --critical: #d03b3b;
  --accent: #3987e5; --accent-ink: #ffffff; --accent-soft: rgba(57,135,229,.16);
  --series-1: #3987e5; --series-2: #d95926;
  --series-3: #199e70; --series-4: #c98500;
  --series-5: #d55181; --series-6: #008300;
  --series-7: #9085e9; --series-8: #e66767;
  --seq-100: #0d366b; --seq-200: #104281; --seq-300: #184f95;
  --seq-400: #1c5cab; --seq-500: #256abf; --seq-600: #3987e5;
  --seq-700: #5598e7;
  --meter-track: #0d366b; --meter-fill: #3987e5;
  --shadow: 0 1px 2px rgba(0,0,0,.4), 0 10px 30px -14px rgba(0,0,0,.7);
}

/* --- Base -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  background: var(--plane);
  color: var(--text-1);
  font: 15px/1.5 system-ui, -apple-system, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

[hidden] { display: none !important; }

h1, h2, h3 { margin: 0; font-weight: 600; letter-spacing: -.01em; }

button { font: inherit; color: inherit; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 6px;
}

/* --- Buttons ----------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 9px;
  border: 1px solid var(--border-2); background: var(--surface-1);
  font-size: 13.5px; font-weight: 550; cursor: pointer;
  transition: background .15s, border-color .15s, transform .1s;
  white-space: nowrap;
}
.btn:hover { border-color: var(--text-3); }
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--accent); border-color: transparent; color: var(--accent-ink);
}
.btn--primary:hover { filter: brightness(1.08); border-color: transparent; }
.btn--ghost { background: transparent; }
.btn--wide { width: 100%; justify-content: center; padding: 12px; font-size: 15px; }
.btn[disabled] { opacity: .55; cursor: not-allowed; transform: none; }

.iconbtn {
  display: inline-grid; place-items: center;
  width: 34px; height: 34px; border-radius: 9px;
  border: 1px solid var(--border-2); background: var(--surface-1);
  cursor: pointer; color: var(--text-2);
  transition: color .15s, border-color .15s;
}
.iconbtn:hover { color: var(--text-1); border-color: var(--text-3); }

/* the theme button shows the icon for the mode you'd switch *to* */
.i-sun { display: none; }
:root[data-theme="dark"] .i-moon { display: none; }
:root[data-theme="dark"] .i-sun  { display: block; }
@media (prefers-color-scheme: dark) {
  :root:where(:not([data-theme="light"])) .i-moon { display: none; }
  :root:where(:not([data-theme="light"])) .i-sun  { display: block; }
}

/* --- Boot / gate ------------------------------------------------------- */
.boot {
  position: fixed; inset: 0; display: grid; place-content: center;
  justify-items: center; gap: 18px; background: var(--plane); z-index: 60;
  color: var(--text-2); font-size: 14px;
}
.boot__pulse {
  width: 34px; height: 34px; border-radius: 9px; background: var(--accent);
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: .25; transform: scale(.9); }
  50%      { opacity: 1;   transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) { .boot__pulse { animation: none; } }

.gate {
  position: fixed; inset: 0; display: grid; place-items: center;
  padding: 24px; z-index: 50;
  background:
    radial-gradient(900px 520px at 50% -10%, var(--accent-soft), transparent 70%),
    var(--plane);
}
.gate__card {
  width: min(380px, 100%); padding: 34px 30px 26px; text-align: center;
  background: var(--surface-1); border: 1px solid var(--border);
  border-radius: 18px; box-shadow: var(--shadow);
}
.gate__mark, .topbar__mark {
  display: grid; place-items: center;
  background: var(--accent); color: var(--accent-ink);
  font-weight: 700; letter-spacing: -.02em;
}
.gate__mark {
  width: 52px; height: 52px; margin: 0 auto 16px;
  border-radius: 13px; font-size: 22px;
}
.gate__title { font-size: 25px; }
.gate__sub { margin: 4px 0 24px; color: var(--text-2); font-size: 14px; }
.gate__form { text-align: left; }
.gate__form .field { margin-bottom: 13px; }
.gate__form .btn { margin-top: 6px; }
.gate__note { margin: 16px 0 0; color: var(--text-3); font-size: 12.5px; }
.gate__error {
  margin: 14px 0 0; padding: 10px 12px; border-radius: 9px;
  background: color-mix(in srgb, var(--critical) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--critical) 40%, transparent);
  color: var(--text-1); font-size: 13px; text-align: left;
}

/* --- Shell ------------------------------------------------------------- */
.app { display: flex; flex-direction: column; min-height: 100%; }

.topbar {
  position: sticky; top: 0; z-index: 30;
  display: flex; align-items: center; gap: 18px;
  padding: 11px clamp(14px, 3vw, 30px);
  background: color-mix(in srgb, var(--plane-2) 88%, transparent);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.topbar__brand { display: flex; align-items: center; gap: 9px; flex: none; }
.topbar__mark { width: 27px; height: 27px; border-radius: 7px; font-size: 12.5px; }
.topbar__name { font-weight: 620; letter-spacing: -.015em; }
.topbar__actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }

.tabs {
  display: flex; gap: 2px; padding: 3px;
  background: var(--surface-2); border-radius: 11px;
  overflow-x: auto; scrollbar-width: none;
}
.tabs::-webkit-scrollbar { display: none; }
.tab {
  padding: 7px 14px; border: 0; border-radius: 8px; background: transparent;
  color: var(--text-2); font-size: 13.5px; font-weight: 520;
  cursor: pointer; white-space: nowrap; transition: color .15s, background .15s;
}
.tab:hover { color: var(--text-1); }
.tab.is-active { background: var(--surface-1); color: var(--text-1); box-shadow: var(--shadow); }

.main {
  flex: 1; width: 100%; max-width: 1320px;
  margin: 0 auto; padding: clamp(18px, 3vw, 30px);
}
.main:focus { outline: none; }

.foot {
  display: flex; gap: 14px; justify-content: space-between; flex-wrap: wrap;
  max-width: 1320px; width: 100%; margin: 0 auto;
  padding: 16px clamp(18px, 3vw, 30px) 30px;
  color: var(--text-3); font-size: 12.5px;
}
.foot a { color: var(--text-2); }

/* --- Layout primitives ------------------------------------------------- */
.view { display: grid; gap: var(--gap); }

.grid { display: grid; gap: var(--gap); }
.grid--kpi  { grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); }
.grid--half { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }

.section-head { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.section-head h2 { font-size: 17px; }
.section-head p { margin: 0; color: var(--text-2); font-size: 13px; }

.card {
  background: var(--surface-1); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow);
  min-width: 0;
}
.card__head { display: flex; align-items: baseline; gap: 10px; margin-bottom: 4px; flex-wrap: wrap; }
.card__title { font-size: 14px; font-weight: 600; }
.card__sub { margin: 0 0 16px; color: var(--text-2); font-size: 12.5px; }
.card__note { margin: 14px 0 0; color: var(--text-3); font-size: 12px; }

/* --- Hero -------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(680px 300px at 8% -40%, var(--accent-soft), transparent 72%),
    var(--surface-1);
}
.hero__label { color: var(--text-2); font-size: 13px; }
.hero__value {
  margin: 6px 0 0; font-size: clamp(46px, 7vw, 68px); font-weight: 650;
  line-height: 1.02; letter-spacing: -.035em;
}
.hero__row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 12px; }
.hero__caveat {
  margin: 16px 0 0; padding: 10px 13px; max-width: 72ch;
  border-radius: 9px; border-left: 3px solid var(--warning);
  background: color-mix(in srgb, var(--warning) 9%, transparent);
  color: var(--text-2); font-size: 12.5px; line-height: 1.55;
}

/* --- Stat tiles -------------------------------------------------------- */
.stat__label { color: var(--text-2); font-size: 12.5px; }
.stat__value {
  margin: 7px 0 0; font-size: 27px; font-weight: 620; letter-spacing: -.025em;
}
.stat__foot { margin: 9px 0 0; color: var(--text-3); font-size: 12px; }

/* Direction is carried by an arrow glyph as well as colour, never colour alone */
.delta {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 9px 3px 7px; border-radius: 999px;
  font-size: 12.5px; font-weight: 600; font-variant-numeric: tabular-nums;
  background: var(--surface-2); color: var(--text-2);
}
.delta--up   { background: color-mix(in srgb, var(--good) 14%, transparent);     color: var(--good-text); }
.delta--down { background: color-mix(in srgb, var(--critical) 14%, transparent); color: var(--critical); }
.delta__arrow { font-size: 11px; line-height: 1; }

/* --- Meter ------------------------------------------------------------- */
.meter { margin-top: 14px; }
.meter__track {
  height: 9px; border-radius: 999px; overflow: hidden;
  background: var(--meter-track);
}
.meter__fill { height: 100%; border-radius: 999px; background: var(--meter-fill); transition: width .5s ease; }
.meter__fill--over { background: var(--good); }
.meter__legend {
  display: flex; justify-content: space-between; gap: 10px;
  margin-top: 8px; color: var(--text-3); font-size: 12px;
  font-variant-numeric: tabular-nums;
}

/* --- Charts ------------------------------------------------------------ */
.chart { width: 100%; }
.chart svg { display: block; width: 100%; height: auto; overflow: visible; }

.tick { fill: var(--text-3); font-size: 11px; font-variant-numeric: tabular-nums; }
.gridline { stroke: var(--grid); stroke-width: 1; shape-rendering: crispEdges; }
.baseline { stroke: var(--axis); stroke-width: 1; shape-rendering: crispEdges; }
.dlabel { fill: var(--text-1); font-size: 11.5px; font-weight: 600; font-variant-numeric: tabular-nums; }
.crosshair { stroke: var(--axis); stroke-width: 1; pointer-events: none; }

/* --- Legend ------------------------------------------------------------ */
.legend {
  display: flex; flex-wrap: wrap; gap: 5px 16px;
  margin-top: 16px; color: var(--text-2); font-size: 12.5px;
}
.legend__item { display: inline-flex; align-items: center; gap: 7px; }
.legend__swatch { width: 10px; height: 10px; border-radius: 3px; flex: none; }
.legend__value { color: var(--text-3); font-variant-numeric: tabular-nums; }

/* --- Tables ------------------------------------------------------------ */
.tablewrap { overflow-x: auto; margin: 0 -20px; padding: 0 20px; }
table { width: 100%; border-collapse: collapse; font-size: 13px; }
th, td {
  padding: 9px 12px; text-align: right; white-space: nowrap;
  border-bottom: 1px solid var(--grid);
}
th {
  position: sticky; top: 0; z-index: 1;
  background: var(--surface-1); color: var(--text-3);
  font-size: 11.5px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .05em;
}
th:first-child, td:first-child { text-align: left; }
td { font-variant-numeric: tabular-nums; color: var(--text-2); }
td:first-child { color: var(--text-1); font-weight: 520; }
tbody tr:hover td { background: var(--surface-2); }
tr.is-total td { border-top: 1px solid var(--axis); border-bottom: 0; color: var(--text-1); font-weight: 620; }

/* Wide pivots: keep the row label in view while scrolling across the years.
   The bleed padding has to go — sticky anchors to the padding box, so cells
   would scroll visibly through the gap to the left of the pinned column. */
.tablewrap--pinned { margin: 0; padding: 0; }
.tablewrap--pinned th:first-child,
.tablewrap--pinned td:first-child {
  position: sticky; left: 0; z-index: 2;
  background: var(--surface-1);
  box-shadow: 1px 0 0 var(--grid);
}
.tablewrap--pinned th:first-child { z-index: 3; }
.tablewrap--pinned tbody tr:hover td:first-child { background: var(--surface-2); }

/* Long ledgers scroll inside their own card rather than pushing the page down. */
.tablewrap--tall { max-height: 60vh; overflow-y: auto; }

/* --- Prose (the forecast caveat) --------------------------------------- */
.prose { color: var(--text-2); font-size: 13.5px; max-width: 68ch; }
.prose p { margin: 0 0 12px; }
.prose p:last-child { margin-bottom: 0; }
.prose ul { margin: 0 0 12px; padding-left: 20px; }
.prose li { margin-bottom: 5px; }
.prose strong { color: var(--text-1); font-weight: 600; }
td.is-empty { color: var(--text-3); }
.th-key { display: inline-flex; align-items: center; gap: 6px; }

/* --- Heatmap ----------------------------------------------------------- */
.heat { display: grid; gap: 2px; grid-template-columns: 46px repeat(12, minmax(0, 1fr)); }
.heat__cell { aspect-ratio: 1 / .78; border-radius: 3px; background: var(--surface-2); }
.heat__cell[data-v] { cursor: default; }
.heat__lbl {
  display: flex; align-items: center; color: var(--text-3);
  font-size: 11px; font-variant-numeric: tabular-nums;
}
.heat__lbl--top { justify-content: center; padding-bottom: 4px; }
.heat__scale { display: flex; align-items: center; gap: 8px; margin-top: 14px; color: var(--text-3); font-size: 11.5px; }
.heat__swatches { display: flex; gap: 2px; }
.heat__swatches i { width: 22px; height: 9px; border-radius: 2px; }

/* --- Tooltip ----------------------------------------------------------- */
.tip {
  position: fixed; z-index: 70; pointer-events: none; opacity: 0;
  max-width: 260px; padding: 9px 11px; border-radius: 9px;
  background: var(--surface-1); border: 1px solid var(--border-2);
  box-shadow: var(--shadow); font-size: 12.5px; color: var(--text-2);
  transition: opacity .12s;
}
.tip[data-show] { opacity: 1; }
.tip__title { color: var(--text-1); font-weight: 620; margin-bottom: 5px; }
.tip__row { display: flex; align-items: center; gap: 8px; justify-content: space-between; }
.tip__key { display: inline-flex; align-items: center; gap: 6px; }
.tip__val { color: var(--text-1); font-variant-numeric: tabular-nums; font-weight: 550; }
.tip__dot { width: 8px; height: 8px; border-radius: 2px; flex: none; }
.tip__sep { height: 1px; background: var(--grid); margin: 6px 0; }

/* --- Entry drawer ------------------------------------------------------ */
.entry { position: fixed; inset: 0; z-index: 80; display: flex; justify-content: flex-end; }
.entry__scrim { position: absolute; inset: 0; background: rgba(0,0,0,.45); }
.entry__panel {
  position: relative; width: min(460px, 100%); height: 100%;
  overflow-y: auto; padding: 22px clamp(18px, 4vw, 26px) 34px;
  background: var(--surface-1); border-left: 1px solid var(--border);
  box-shadow: -20px 0 60px -30px rgba(0,0,0,.6);
  animation: slide .22s cubic-bezier(.22,.7,.3,1);
}
@keyframes slide { from { transform: translateX(24px); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .entry__panel { animation: none; } }

.entry__head { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; }
.entry__head h2 { font-size: 18px; }
.entry__sub { margin: 0 0 20px; color: var(--text-2); font-size: 13px; }
.entry__close { margin-left: auto; }

.field { display: grid; gap: 6px; margin-bottom: 14px; }
.field > label { color: var(--text-2); font-size: 12.5px; font-weight: 550; }
.field__row { display: flex; align-items: center; gap: 10px; }

.input, select {
  width: 100%; padding: 9px 11px; border-radius: 9px;
  border: 1px solid var(--border-2); background: var(--surface-2);
  color: var(--text-1); font: inherit; font-size: 14px;
  font-variant-numeric: tabular-nums;
}
.input:focus, select:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: transparent; }
.input::placeholder { color: var(--text-3); }
.input--money { padding-left: 26px; }

.money { position: relative; }
.money__sym {
  position: absolute; left: 11px; top: 50%; transform: translateY(-50%);
  color: var(--text-3); font-size: 14px; pointer-events: none;
}

.entry__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.entry__agency { display: grid; gap: 6px; }
.entry__agency > label { display: flex; align-items: center; gap: 7px; color: var(--text-2); font-size: 12.5px; font-weight: 550; }
.entry__dot { width: 9px; height: 9px; border-radius: 3px; flex: none; }

/* --- USD converter ----------------------------------------------------- */
.fx {
  padding: 13px 14px; margin-bottom: 20px;
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 11px;
}
.fx__head {
  display: flex; align-items: baseline; gap: 10px;
  justify-content: space-between; flex-wrap: wrap; margin-bottom: 10px;
}
.fx__title { font-size: 12.5px; font-weight: 600; color: var(--text-2); }
.fx__rate { font-size: 11.5px; color: var(--text-3); font-variant-numeric: tabular-nums; }
.fx__rate--warn { color: var(--warning); }
.fx__row { display: flex; align-items: center; gap: 9px; }
.fx__row .money { flex: 1 1 96px; min-width: 0; }
.fx__row .input { background: var(--surface-1); }
.fx__arrow { color: var(--text-3); flex: none; }
.fx__out {
  flex: 1 1 90px; min-width: 0; padding: 9px 11px;
  border-radius: 9px; background: var(--surface-1);
  border: 1px solid var(--border);
  font-size: 15px; font-weight: 620; letter-spacing: -.01em;
  font-variant-numeric: tabular-nums;
}
.fx__copy { flex: none; padding: 9px 12px; background: var(--surface-1); }

.entry__divider { height: 1px; background: var(--grid); margin: 22px 0 18px; }
.entry__total {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 13px 15px; margin-top: 18px;
  background: var(--surface-2); border-radius: 11px;
}
.entry__total span { color: var(--text-2); font-size: 13px; }
.entry__total strong { font-size: 21px; font-weight: 650; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }

.entry__actions { display: flex; gap: 10px; margin-top: 20px; }
.entry__actions .btn { flex: 1; justify-content: center; }
.entry__msg { margin: 14px 0 0; font-size: 13px; }
.entry__msg--err { color: var(--critical); }

/* --- Toast ------------------------------------------------------------- */
.toast {
  position: fixed; left: 50%; bottom: 26px; transform: translateX(-50%);
  z-index: 90; padding: 11px 17px; border-radius: 11px;
  background: var(--surface-1); border: 1px solid var(--border-2);
  box-shadow: var(--shadow); font-size: 13.5px; font-weight: 520;
  display: flex; align-items: center; gap: 9px;
}
.toast__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--good); flex: none; }
.toast--err .toast__dot { background: var(--critical); }

/* --- Misc -------------------------------------------------------------- */
.empty { padding: 40px 20px; text-align: center; color: var(--text-3); font-size: 13.5px; }
.pillbar { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.pillbar label { color: var(--text-2); font-size: 12.5px; }
.pillbar select { width: auto; min-width: 105px; padding: 6px 10px; font-size: 13px; }

@media (max-width: 900px) {
  .topbar { flex-wrap: wrap; }
  .tabs { order: 3; width: 100%; }
  .btn__label { display: none; }
  #entryBtn { padding: 8px 10px; }
}
@media (max-width: 560px) {
  .entry__grid { grid-template-columns: 1fr; }
  .heat { grid-template-columns: 34px repeat(12, minmax(0, 1fr)); }
}
