/* ============================================================================
   Toolkit — grey / taupe / black
   A warm neutral system: taupe-tinted greys, deep taupe-black for emphasis.
   No pure #000 or #fff anywhere — warmth is what keeps neutrals from feeling
   clinical.
   ========================================================================= */

:root {
  /* surfaces, lightest to darkest */
  --bg:            #F2F0EC;
  --surface:       #FBFAF8;
  --surface-sunk:  #F0EDE7;
  --surface-hover: #EAE6DF;

  /* lines */
  --line:          #E2DDD4;
  --line-strong:   #CFC7BA;

  /* type */
  --ink:           #1B1917;
  --ink-soft:      #57514A;
  /* Carries field labels, blurbs and placeholders — real content, so it has to
     clear 4.5:1 on both --surface (5.37) and the darker --surface-sunk (4.80).
     A lighter taupe looked better but failed AA on the sunk fields. */
  --ink-muted:     #6E6759;

  /* Burgundy = action. Primary buttons, focus rings, destructive states.
     Deliberately desaturated so it reads as wine, not as a warning red. */
  --accent:        #6B2737;
  --accent-hover:  #551E2B;
  --accent-tint:   #F3E8EA;
  --accent-line:   #E0C8CD;

  /* Dark khaki = wayfinding. Section labels, the selected tool, success.
     Pushed olive on purpose — too close to taupe and the two go muddy. */
  --khaki:         #5E5B3A;
  --khaki-ink:     #4C4930;
  --khaki-tint:    #EAE8DA;

  /* status */
  --danger-bg:     var(--accent-tint);
  --danger-line:   var(--accent-line);
  --danger-ink:    #7A2231;
  --ok-bg:         var(--khaki-tint);
  --ok-ink:        var(--khaki-ink);

  --radius:        10px;
  --radius-sm:     8px;
  --shadow:        0 1px 2px rgba(27, 25, 23, 0.04), 0 8px 24px rgba(27, 25, 23, 0.06);
  --shadow-lift:   0 2px 6px rgba(27, 25, 23, 0.08), 0 16px 40px rgba(27, 25, 23, 0.12);
  /* Two solid bands, not a translucent tint: an inner --surface band so the ring
     stays legible on the burgundy primary button, then the accent itself.
     The old rgba(...,0.16) composited to #E4D8D9 = 1.33:1, far under the 3:1
     that SC 1.4.11 requires of a focus indicator. */
  --ring:          0 0 0 2px var(--surface), 0 0 0 4px var(--accent);

  --sidebar-w:     292px;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--khaki-tint); color: var(--ink); }

/* ------------------------------------------------------------------ layout */

.app {
  display: grid;
  grid-template-columns: var(--sidebar-w) minmax(0, 1fr);
  gap: 22px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 28px 28px 64px;
  align-items: start;
}

/* Mobile-only bar holding the drawer toggle. */
.topbar {
  display: none;
  position: sticky;
  top: 0;
  z-index: 30;
  align-items: center;
  gap: 12px;
  padding: 10px max(14px, env(safe-area-inset-right)) 10px max(14px, env(safe-area-inset-left));
  background: rgba(251, 250, 248, 0.92);
  backdrop-filter: saturate(1.4) blur(8px);
  border-bottom: 1px solid var(--line);
}

.menu-btn {
  width: 44px;
  height: 44px;
  padding: 0;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  font-size: 1.05rem;
}
.menu-btn:hover:not(:disabled) { background: var(--surface-hover); }

.topbar-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 35;
  background: rgba(27, 25, 23, 0.38);
  backdrop-filter: blur(2px);
}
.overlay.show { display: block; }

/* ----------------------------------------------------------------- sidebar */

.sidebar {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 16px 16px;
  position: sticky;
  top: 28px;
  max-height: calc(100vh - 56px);
  display: flex;
  flex-direction: column;
}

.brand {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.28rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  padding: 0 8px;
}
.brand-sub {
  font-size: 0.78rem;
  color: var(--ink-muted);
  padding: 2px 8px 0;
  margin-bottom: 16px;
}

.account {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 8px 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.account-email {
  flex: 1;
  min-width: 0;
  font-size: 0.74rem;
  color: var(--ink-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.logout-btn { padding: 6px 11px; font-size: 0.74rem; }

#toolSearch {
  width: 100%;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-sunk);
  font-size: 0.875rem;
  font-family: inherit;
  color: var(--ink);
  margin-bottom: 14px;
}
#toolSearch::placeholder { color: var(--ink-muted); }
#toolSearch:focus {
  outline: none;
  background: var(--surface);
  border-color: var(--line-strong);
  box-shadow: var(--ring);
}

.tool-list {
  overflow-y: auto;
  flex: 1;
  margin: 0 -4px;
  padding: 0 4px 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--line-strong) transparent;
}
.tool-list::-webkit-scrollbar { width: 8px; }
.tool-list::-webkit-scrollbar-thumb {
  background: var(--line-strong);
  border-radius: 99px;
  border: 2px solid var(--surface);
}

.cat-title {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--khaki);
  margin: 18px 0 6px;
  padding: 0 10px;
}
.cat-title:first-child { margin-top: 2px; }

.tool-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 9px 10px;
  border: none;
  border-radius: var(--radius-sm);
  background: transparent;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--ink-soft);
  text-align: left;
  cursor: pointer;
  transition: background 0.14s ease, color 0.14s ease;
}
.tool-item:hover { background: var(--surface-hover); color: var(--ink); }
.tool-item.active {
  background: var(--khaki-tint);
  color: var(--khaki-ink);
  font-weight: 600;
  /* A burgundy edge ties the selected row back to the action colour without
     tinting the whole row. */
  box-shadow: inset 2px 0 0 var(--accent);
}
/* Deliberately an outline, not box-shadow: .tool-item.active uses an inset
   box-shadow for its burgundy edge, and box-shadow is not additive across
   rules — declaring it here would erase the selection marker on focus.
   outline-offset is negative so .tool-list's overflow-y cannot clip it. */
.tool-item:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }
.tool-icon { font-size: 1rem; line-height: 1; flex: none; }
.tool-text { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.no-results {
  padding: 18px 10px;
  color: var(--ink-muted);
  font-size: 0.85rem;
}

/* -------------------------------------------------------------------- main */

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 36px 36px;
  min-width: 0;
}

.tool-head {
  padding-bottom: 20px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.tool-head h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.25;
}
.tool-head p { color: var(--ink-muted); margin-top: 7px; font-size: 0.92rem; }

label, .field-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 9px;
}

textarea {
  width: 100%;
  min-height: 156px;
  padding: 15px 17px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-sunk);
  color: var(--ink);
  font-size: 1rem;
  font-family: inherit;
  line-height: 1.65;
  resize: vertical;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}
textarea:focus {
  outline: none;
  background: var(--surface);
  border-color: var(--line-strong);
  box-shadow: var(--ring);
}
textarea::placeholder { color: var(--ink-muted); }

/* ----------------------------------------------------------------- uploads */

.dropzone {
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 22px 16px;
  text-align: center;
  color: var(--ink-muted);
  font-size: 0.85rem;
  cursor: pointer;
  margin-bottom: 20px;
  background: var(--surface-sunk);
  transition: border-color 0.16s ease, background 0.16s ease, color 0.16s ease;
}
.dropzone:hover, .dropzone.dragover {
  border-color: var(--accent);
  background: var(--accent-tint);
  color: var(--accent);
}
.dropzone.hidden { display: none; }
.dropzone:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.file-list { list-style: none; margin-bottom: 20px; }
.file-list:empty { display: none; }
.file-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface-sunk);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 9px 10px 9px 14px;
  font-size: 0.85rem;
  margin-bottom: 7px;
}
.file-name { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.file-size { color: var(--ink-muted); font-size: 0.76rem; font-variant-numeric: tabular-nums; }
.file-remove {
  width: 30px;
  height: 30px;
  flex: none;
  padding: 0;
  background: transparent;
  border: 1px solid transparent;
  color: var(--ink-muted);
  font-size: 1.1rem;
  line-height: 1;
}
.file-remove:hover:not(:disabled) {
  background: var(--danger-bg);
  border-color: var(--danger-line);
  color: var(--danger-ink);
}

/* ----------------------------------------------------------------- buttons */

/* `.tool-item` is a <button> for keyboard access but is a nav row, not an
   action, so the primary fill must never reach it. It is excluded via
   :where(), which adds NO specificity — plain :not(.tool-item) would raise
   these to 0,3,1 and start beating .secondary-btn:hover instead.
   Without the exclusion, `button:hover:not(:disabled)` (0,2,1) out-specifies
   `.tool-item:hover` (0,2,0) and paints hovered tool rows burgundy. */
button:where(:not(.tool-item)) {
  padding: 13px 18px;
  background: var(--accent);
  color: #FBFAF8;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}
button:where(:not(.tool-item)):hover:not(:disabled) { background: var(--accent-hover); }
button:where(:not(.tool-item)):focus-visible { outline: none; box-shadow: var(--ring); }
button:disabled { opacity: 0.45; cursor: not-allowed; }

.button-row { display: flex; gap: 10px; margin-top: 20px; }
.button-row #runBtn { flex: 1; }

.secondary-btn {
  background: transparent;
  color: var(--ink-soft);
  border-color: var(--line-strong);
}
.secondary-btn:hover:not(:disabled) {
  background: var(--surface-hover);
  color: var(--ink);
  border-color: var(--line-strong);
}
.secondary-btn:disabled { background: transparent; color: var(--ink-muted); }

/* ------------------------------------------------------------------ output */

.output-area { margin-top: 30px; }
.output-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 9px;
}
.output-header .field-label { margin-bottom: 0; }
.copy-btn { padding: 7px 14px; font-size: 0.78rem; }
/* The second arm is (0,4,0) so it outranks .secondary-btn:hover:not(:disabled)
   at (0,3,0). Without it the success state never renders for mouse users — the
   pointer is necessarily still on the button for the whole 2s window. */
.copy-btn.copied,
.copy-btn.copied:hover:not(:disabled) {
  background: var(--ok-bg);
  color: var(--ok-ink);
  border-color: var(--khaki);
}

/* ============================================================== calculator
   Only the Calculator tool renders this (tools.js: layout: 'calculator').
   Digits/parens are neutral, C/⌫/% get a muted function tone, ÷×−+ are
   accent-tinted, and "=" is left to inherit the default burgundy action
   fill from the base button rule below — see its own comment for why it
   carries no .calc-key class.
   Visibility is toggled via inline style in app.js (not a class): see the
   comment there for why that avoids the [hidden]/cascade trap. */
.calc-keypad {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.calc-key {
  padding: 16px 0;
  font-size: 1.15rem;
  font-variant-numeric: tabular-nums;
  background: var(--surface-sunk);
  color: var(--ink);
  border-color: var(--line);
}
/* :not(:disabled) is required, not decorative — dropping it drops the class
   column to (0,2,0), which loses the tie-break against the base button's
   (0,2,1) hover rule and silently repaints every key burgundy on hover. This
   codebase has hit that exact bug twice already (see the .tool-item note
   above); every hover rule below repeats the same three-selector shape for
   the same reason. */
.calc-key:hover:not(:disabled) {
  background: var(--surface-hover);
  border-color: var(--line-strong);
}

.calc-key--fn {
  background: var(--khaki-tint);
  color: var(--khaki-ink);
  border-color: var(--khaki-tint);
}
.calc-key--fn:hover:not(:disabled) {
  background: var(--surface-hover);
  color: var(--ink);
  border-color: var(--line-strong);
}

.calc-key--op {
  font-size: 1.3rem;
  background: var(--accent-tint);
  color: var(--accent);
  border-color: var(--accent-line);
}
.calc-key--op:hover:not(:disabled) { background: var(--accent-line); }

/* Deliberately not `.calc-key`: it needs the default burgundy action fill
   from the base button rule untouched, and stacking .calc-key alongside it
   would make the fill depend on which of the two equal-specificity classes
   happens to be declared later in this file. */
.calc-key--equals {
  grid-column: 1 / -1;
  padding: 16px 0;
  font-size: 1.25rem;
}

/* Dims and disables the whole pad during a request. Pointer-events rather
   than the disabled attribute: run()'s own reentry guard already reads
   runBtn.disabled, and toggling .disabled on 21 buttons individually would
   duplicate that state for no benefit. */
.calc-keypad.is-busy { opacity: 0.55; pointer-events: none; }

/* Re-encoding a phone photo blocks the main thread for a second or two, so the
   dropzone says so and stops accepting further drops while it works. Same
   treatment as the keypad above for consistency. */
.dropzone.is-busy { opacity: 0.55; pointer-events: none; }

@media (max-width: 560px) {
  .calc-keypad { gap: 8px; }
  .calc-key, .calc-key--equals { padding: 15px 0; }
}

.output-box {
  background: var(--surface-sunk);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  min-height: 156px;
  font-size: 0.98rem;
  line-height: 1.72;
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}
.output-box.empty { color: var(--ink-muted); }
/* Image results are laid out, not pre-wrapped text. */
.output-box.has-images { white-space: normal; }

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
}
.image-grid figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.image-grid img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
}
.image-save {
  align-self: flex-start;
  font-size: 0.75rem;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-line);
  padding-bottom: 1px;
}
.image-save:hover { border-bottom-color: var(--accent); }
.image-caption {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  white-space: pre-wrap;
  font-size: 0.95rem;
}

/* Softer than .error — the result is fine, something about how it was produced
   is just worth knowing (e.g. a fallback model was substituted). */
.notice {
  display: none;
  background: var(--khaki-tint);
  border: 1px solid var(--khaki);
  color: var(--khaki-ink);
  padding: 9px 13px;
  border-radius: var(--radius-sm);
  margin-bottom: 9px;
  font-size: 0.82rem;
  overflow-wrap: anywhere;
}
.notice.show { display: block; }

.error {
  background: var(--danger-bg);
  border: 1px solid var(--danger-line);
  color: var(--danger-ink);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin-top: 18px;
  font-size: 0.88rem;
  display: none;
}
.error.show { display: block; }

/* ------------------------------------------------------------------- login */

.login-body {
  display: flex;
  /* flex-start + auto margins, NOT align-items:center. Centring overflows a
     too-short viewport in BOTH directions, and the part above the start edge
     is outside the scrollable region — the title becomes unreachable in
     landscape. Auto margins collapse to 0 when free space is negative. */
  align-items: flex-start;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
}
.login-card {
  margin: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
  padding: 40px 36px 34px;
  width: 100%;
  max-width: 392px;
}
.login-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.login-sub { color: var(--ink-muted); margin: 6px 0 28px; font-size: 0.92rem; }
.login-card label { margin-bottom: 8px; }
.login-card input[type="email"],
.login-card input[type="password"] {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-sunk);
  color: var(--ink);
  font-size: 1rem;
  font-family: inherit;
  margin-bottom: 20px;
}
.login-card input:focus {
  outline: none;
  background: var(--surface);
  border-color: var(--line-strong);
  box-shadow: var(--ring);
}
.login-card button { width: 100%; margin-top: 6px; padding: 14px; }
.login-note {
  font-size: 0.76rem;
  color: var(--ink-muted);
  text-align: center;
  margin-top: 20px;
}

/* ================================================================ responsive
   Below 880px the sidebar becomes an off-canvas drawer rather than a squashed
   column — a 22-item list stacked above the tool is unusable on a phone.
   ========================================================================= */

@media (max-width: 1080px) {
  :root { --sidebar-w: 260px; }
  .app { gap: 18px; padding: 22px 20px 56px; }
  .panel { padding: 28px 26px 30px; }
}

@media (max-width: 880px) {
  .topbar { display: flex; }

  .app {
    grid-template-columns: minmax(0, 1fr);
    padding: 16px 16px 48px;
    gap: 0;
  }

  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 40;
    width: min(86vw, 330px);
    max-height: none;
    height: 100%;
    border-radius: 0;
    border-left: none;
    border-top: none;
    border-bottom: none;
    box-shadow: var(--shadow-lift);
    padding: 20px 14px 16px;
    transform: translateX(-100%);
    /* visibility, not just transform: a translated drawer keeps all 24 of its
       controls in the tab order and the accessibility tree. Delayed off so the
       slide-out animation still plays. Done in CSS rather than the `inert`
       property because closeDrawer() also runs at desktop widths, where the
       sidebar is permanently visible. */
    visibility: hidden;
    transition: transform 0.24s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0s linear 0.24s;
    /* respect notches / rounded corners on phones */
    padding-left: max(14px, env(safe-area-inset-left));
    padding-bottom: max(16px, env(safe-area-inset-bottom));
  }
  .sidebar.open {
    transform: translateX(0);
    visibility: visible;
    transition: transform 0.24s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s;
  }

  .panel {
    border-radius: var(--radius);
    padding: 24px 20px 28px;
  }

  /* comfortable thumb targets */
  .tool-item { padding: 12px 12px; font-size: 0.92rem; }
  .cat-title { margin-top: 20px; }
  .logout-btn { padding: 8px 12px; }
}

@media (max-width: 560px) {
  .app { padding: 12px 12px 40px; }
  .panel { padding: 20px 16px 24px; border-radius: var(--radius-sm); }

  .tool-head { padding-bottom: 16px; margin-bottom: 18px; }
  .tool-head h1 { font-size: 1.32rem; }
  .tool-head p { font-size: 0.88rem; }

  /* stack the actions so neither button gets squeezed below a tappable width.
     Keep Run first — the primary action should be the one scanned first. */
  .button-row { flex-direction: column; gap: 8px; }
  .button-row button { width: 100%; padding: 14px; }

  textarea { min-height: 140px; }
  .output-box { min-height: 130px; padding: 15px 16px; }

  .output-header { flex-wrap: wrap; }

  .login-card { padding: 30px 22px 26px; box-shadow: var(--shadow); }
  .login-title { font-size: 1.5rem; }
}

/* Keep iOS from zooming when a field is focused — anything under 16px triggers
   it. Banded at 880px, not 560px: #toolSearch lives in the drawer, which exists
   from 880px down, and it is 0.875rem = 14px. */
@media (max-width: 880px) {
  textarea,
  #toolSearch,
  .login-card input[type="email"],
  .login-card input[type="password"] { font-size: 16px; }
}

/* Server- and registry-supplied strings can contain long unbroken tokens;
   .output-box already guards against this, these did not. */
.error,
.tool-head p { overflow-wrap: anywhere; }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

/* ------------------------------------------------------------------ sources
   Citations for search-grounded results. The output box is pre-wrap text by
   default; a grounded answer appends real DOM, so it needs normal wrapping. */
.output-box.has-sources { white-space: normal; }
.output-box.has-sources > :first-child { white-space: pre-wrap; }

.sources {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.sources-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--khaki);
  margin-bottom: 8px;
}
.sources ol {
  margin: 0;
  padding-left: 1.25rem;
  font-size: 0.88rem;
  line-height: 1.55;
}
.sources li { margin-bottom: 4px; }
.sources a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-line);
  overflow-wrap: anywhere;
}
.sources a:hover { border-bottom-color: var(--accent); }
.sources-queries {
  margin-top: 10px;
  font-size: 0.76rem;
  color: var(--ink-muted);
  overflow-wrap: anywhere;
}
