/* ============================================================
   Publish-to-web modal
   ============================================================ */
.modal.ps-modal {
  width: min(540px, 94vw);
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.ps-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 22px 14px;
}
.ps-head-tt { display: flex; align-items: center; gap: 12px; }
.ps-globe {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 11px;
  background: color-mix(in srgb, var(--accent) 14%, transparent);
  color: var(--accent);
  flex: 0 0 auto;
}
.ps-title { font-size: 16px; font-weight: 650; color: var(--text); }
.ps-sub { font-size: 12.5px; color: var(--text-faint); margin-top: 2px; }

.ps-url-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 22px 16px;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-hover);
}
.ps-url-row.ps-url-pending { opacity: 0.85; }
.ps-url-ic { color: var(--text-faint); display: inline-flex; flex: 0 0 auto; }
.ps-url {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  background: none;
  font: 13px/1.4 "JetBrains Mono", ui-monospace, monospace;
  color: var(--text-muted, var(--text));
  outline: none;
}
.ps-copy, .ps-visit {
  flex: 0 0 auto;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-size: 12.5px;
  font-weight: 550;
  padding: 5px 12px;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.12s, color 0.12s;
}
.ps-copy:hover, .ps-visit:hover { border-color: var(--accent); color: var(--accent); }

/* theme picker — writes `theme` onto the sites/{slug} manifest */
.ps-theme-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 22px 14px;
}
.ps-theme-label {
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-faint);
  flex: 0 0 auto;
}
.ps-theme {
  flex: 1 1 auto;
  min-width: 0;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-size: 13px;
  padding: 7px 10px;
  border-radius: 9px;
  cursor: pointer;
}
.ps-theme:focus-visible { outline: 2px solid var(--accent); outline-offset: 1px; }

.ps-included { margin: 0 22px 14px; }
.ps-included-h {
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-faint);
  margin-bottom: 8px;
}
.ps-list {
  max-height: 200px;
  overflow-y: auto;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 4px;
}
.ps-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 7px;
  font-size: 13.5px;
  color: var(--text);
}
.ps-item:hover { background: var(--bg-hover); }
.ps-item-ic { flex: 0 0 auto; font-size: 15px; }
.ps-item-tt { flex: 1 1 auto; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ps-item-badge {
  flex: 0 0 auto;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  padding: 1px 7px;
  border-radius: 999px;
}

.ps-note {
  margin: 0 22px 14px;
  padding: 10px 12px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--text-muted, var(--text-faint));
  background: var(--bg-hover);
  border-radius: 10px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.ps-note svg { flex: 0 0 auto; margin-top: 2px; color: var(--text-faint); }
.ps-note strong { color: var(--text); font-weight: 600; }

.ps-rules {
  margin: 0 22px 14px;
  padding: 11px 13px;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--text);
  background: color-mix(in srgb, #f5a623 12%, transparent);
  border: 1px solid color-mix(in srgb, #f5a623 40%, transparent);
  border-radius: 10px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.ps-rules svg { flex: 0 0 auto; margin-top: 2px; color: #d98a1a; }
.ps-rules code {
  background: var(--bg-code, var(--bg-hover));
  padding: 0.05em 0.35em;
  border-radius: 4px;
  font: 90% "JetBrains Mono", ui-monospace, monospace;
}

.ps-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 6px 22px 20px;
}
.ps-btn {
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-size: 13.5px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 9px;
  cursor: pointer;
  transition: background 0.12s, border-color 0.12s, opacity 0.12s;
}
.ps-btn:disabled { opacity: 0.6; cursor: default; }
.ps-btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.ps-btn-primary:hover:not(:disabled) { background: var(--accent-strong, var(--accent)); filter: brightness(1.05); }
.ps-unpublish { color: #c0492f; }
.ps-unpublish:hover:not(:disabled) { border-color: #c0492f; background: color-mix(in srgb, #c0492f 8%, transparent); }

/* ============================================================
   Public reader (#share/<uid>/<pageId>) — rich atoms
   canvas whiteboard · action button · @mention.
   Rendered inside app.html, so app theme vars apply (light+dark).
   ============================================================ */
/* @mention → inline chip (person = accent, date = muted) */
.pv-content .pv-mention {
  color: var(--accent);
  background: var(--accent-soft, rgba(91, 91, 214, 0.12));
  font-weight: 500;
  border-radius: 3px;
  padding: 0 3px;
  white-space: nowrap;
}
.pv-content .pv-mention-date {
  color: var(--text-light, var(--text-muted, var(--text-faint)));
  background: var(--bg-hover);
}

/* button block → non-interactive label pill */
.pv-button-wrap { display: flex; padding: 4px 0; }
.pv-button {
  display: inline-flex; align-items: center; gap: 7px; max-width: 100%;
  padding: 7px 14px; font-size: 14px; font-weight: 500;
  color: #fff; background: var(--accent);
  border-radius: 7px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .12);
}
.pv-button-ic { font-size: 13px; line-height: 1; }
.pv-button-label { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* whiteboard / canvas → read-only positioned board */
.pv-canvas { margin: 12px 0; }
.pv-canvas-board {
  position: relative; width: 100%; overflow: hidden; border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-subtle, var(--bg-hover));
  background-image: radial-gradient(var(--border) 1px, transparent 1px);
  background-size: 22px 22px;
}
.pv-canvas-edges {
  position: absolute; inset: 0; overflow: visible; pointer-events: none;
  color: var(--text-light, var(--text-muted, var(--text-faint))); z-index: 0;
}
.pv-canvas-edges line { stroke: currentColor; stroke-width: 1.7; fill: none; opacity: .7; }
.pv-canvas-card {
  position: absolute; min-height: 60px; z-index: 1;
  border-radius: 8px; padding: 8px 9px;
  font-size: 13px; line-height: 1.4; color: #2a2a20;
  white-space: pre-wrap; word-break: break-word; overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .16), 0 4px 12px rgba(0, 0, 0, .06);
  border: 1px solid rgba(0, 0, 0, .06);
}
/* sticky palette — light in both themes, with dark text (mirrors the editor) */
.pv-cv-yellow { background: #fef3c7; }
.pv-cv-blue   { background: #dbeafe; }
.pv-cv-green  { background: #dcfce7; }
.pv-cv-pink   { background: #fce7f3; }
.pv-cv-purple { background: #ede9fe; }
.pv-cv-gray   { background: #e9ecef; }

/* ================================================================
   PUBLISHED SITE BODY  (site.html?s=<slug> and the Worker's /s/<slug>)
   ----------------------------------------------------------------
   Loaded by site.html AFTER css/site.css, and by worker/src/site.js on
   its server-rendered copy.

   WHY: the multi-page site used to serialize pages through Markdown
   (mdToHtml(pageToMarkdown(page))), so canvas boards, button blocks,
   @mentions, per-column table widths and rich columns were flattened or
   dropped. It now renders through the same block-to-HTML renderer as the
   single-page share reader (js/blockhtml.js), which emits .pv-* markup —
   so EVERY class that renderer can emit needs a rule HERE, or published
   pages render as unstyled div soup.

   These are a PORT, not a copy: the app reader's rules are in px and app
   theme vars; the site keeps its own typography (Instrument Sans body,
   Space Grotesk headings, rem rhythm, --site-* palette).

   css/site.css still owns the plain-tag rules (h1/p/ul/table/pre…) —
   those are what sites published BEFORE this switch stored, and they
   keep rendering correctly until their owner re-publishes.

   The .site-body prefix on every selector is load-bearing: it scopes
   these rules to page content and keeps them out of the site chrome.
   ================================================================ */

/* --- inline atoms ------------------------------------------------ */
.site-body .pv-mention {
  color: var(--site-accent);
  background: color-mix(in srgb, var(--site-accent) 12%, transparent);
  font-weight: 500;
  border-radius: 3px;
  padding: 0 3px;
  white-space: nowrap;
}
.site-body .pv-mention-date {
  color: var(--site-muted);
  background: var(--site-code-bg);
}

/* --- paragraphs, headings, rules --------------------------------- */
.site-body .pv-p { margin: 0.55rem 0; word-break: break-word; }
.site-body .pv-h1,
.site-body .pv-h2,
.site-body .pv-h3 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  line-height: 1.25;
  letter-spacing: -0.015em;
  font-weight: 600;
  text-wrap: balance;
}
.site-body .pv-h1 { font-size: 1.7rem; margin: 2.4rem 0 0.8rem; }
.site-body .pv-h2 { font-size: 1.4rem; margin: 2rem 0 0.6rem; }
.site-body .pv-h3 { font-size: 1.15rem; margin: 1.6rem 0 0.5rem; }
.site-body > .pv-h1:first-child,
.site-body > .pv-h2:first-child,
.site-body > .pv-h3:first-child { margin-top: 0; }
.site-body .pv-hr {
  border: none;
  border-top: 1px solid var(--site-border);
  margin: 2.2rem 0;
}
.site-body .pv-blank {
  color: var(--site-faint);
  font-style: italic;
  padding: 1.5rem 0;
}

/* --- quote + callout --------------------------------------------- */
.site-body .pv-quote {
  border-left: 3px solid var(--site-accent);
  padding-left: 1rem;
  margin: 1rem 0;
  color: var(--site-muted);
}
.site-body .pv-callout {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin: 1rem 0;
  padding: 0.85rem 1rem;
  border: 1px solid var(--site-border);
  border-radius: 12px;
  background: var(--site-code-bg);
}
.site-body .pv-callout-ic { flex: 0 0 auto; line-height: 1.6; }
.site-body .pv-callout > div { flex: 1 1 auto; min-width: 0; word-break: break-word; }

/* --- list-ish rows: bullet / number / todo / toggle --------------- */
.site-body .pv-row {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.12rem 0;
}
.site-body .pv-row > div { flex: 1 1 auto; min-width: 0; word-break: break-word; }
.site-body .pv-bul { flex: 0 0 1.1rem; width: 1.1rem; text-align: center; color: var(--site-muted); }
.site-body .pv-num { flex: 0 0 auto; min-width: 1.3rem; color: var(--site-muted); font-variant-numeric: tabular-nums; }
.site-body .pv-tri { flex: 0 0 0.9rem; color: var(--site-faint); font-size: 0.7em; line-height: 1.9; }
.site-body .pv-check { flex: 0 0 1.1rem; color: var(--site-muted); }
.site-body .pv-todo.done > div { color: var(--site-faint); text-decoration: line-through; }

/* --- code + math -------------------------------------------------- */
.site-body .pv-code,
.site-body .pv-math {
  margin: 1rem 0;
  padding: 1rem 1.1rem;
  background: var(--site-code-bg);
  border: 1px solid var(--site-border);
  border-radius: 12px;
  overflow-x: auto;
}
.site-body .pv-code code,
.site-body .pv-math code {
  background: none;
  padding: 0;
  font: 88%/1.55 "JetBrains Mono", ui-monospace, "SF Mono", Consolas, monospace;
  white-space: pre;
}
.site-body .pv-math { font-style: italic; }

/* --- tables (per-column widths preserved) ------------------------- */
.site-body .pv-tablewrap { overflow-x: auto; margin: 1.1rem 0; }
.site-body .pv-table {
  border-collapse: collapse;
  table-layout: auto;
  width: 100%;
}
/* the editor's .ntable.t-fixed: every column had a stored pixel width, so the
   colgroup widths are authoritative and the table must not re-flow them */
.site-body .pv-table.pv-table-fixed { table-layout: fixed; width: auto; min-width: 100%; }
.site-body .pv-th,
.site-body .pv-td {
  border: 1px solid var(--site-border);
  padding: 0.5rem 0.7rem;
  text-align: left;
  vertical-align: top;
  word-break: break-word;
}
.site-body .pv-table.pv-table-fixed .pv-th,
.site-body .pv-table.pv-table-fixed .pv-td { min-width: 0; max-width: none; }
.site-body .pv-th { background: var(--site-code-bg); font-weight: 600; }
.site-body .pv-th > .pv-p,
.site-body .pv-td > .pv-p { margin: 0; }

/* --- columns ------------------------------------------------------ */
.site-body .pv-cols {
  display: flex;
  gap: 1.4rem;
  margin: 1.1rem 0;
  align-items: flex-start;
}
.site-body .pv-col { flex: 1 1 0; min-width: 0; word-break: break-word; }
.site-body .pv-col > *:first-child { margin-top: 0; }
.site-body .pv-col > .pv-figure { margin: 0.4rem 0; }

/* --- images / files ----------------------------------------------- */
.site-body .pv-figure { margin: 1.2rem 0; }
.site-body .pv-img { max-width: 100%; height: auto; border-radius: 10px; display: block; }
.site-body .pv-cap { font-size: 0.85rem; color: var(--site-faint); margin-top: 0.45rem; }
.site-body .pv-file {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.5rem 0;
  padding: 0.5rem 0.8rem;
  border: 1px solid var(--site-border);
  border-radius: 10px;
  color: var(--site-text);
  text-decoration: none;
  transition: border-color 0.12s ease, background 0.12s ease;
}
.site-body .pv-file:hover { border-color: var(--site-accent); background: var(--site-code-bg); }
.site-body .pv-file-ic { flex: 0 0 auto; }
.site-body .pv-file-name { text-decoration: underline; text-underline-offset: 2px; }

/* --- bookmark / link card -----------------------------------------
   This is ALSO how embeds render on a published site: js/blockhtml.js
   runs in embeds:"card" mode there, so a YouTube/Figma/Maps link becomes
   a card, never an iframe. Deliberate — see the security notes in
   js/blockhtml.js and js/site.js. */
.site-body .pv-bookmark {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  margin: 1.1rem 0;
  padding: 0.85rem 1rem;
  border: 1px solid var(--site-border);
  border-radius: 12px;
  color: var(--site-text);
  text-decoration: none;
  transition: border-color 0.12s ease, background 0.12s ease;
}
.site-body .pv-bookmark:hover { border-color: var(--site-accent); background: var(--site-code-bg); }
.site-body .pv-bm-body { display: flex; flex-direction: column; gap: 0.2rem; min-width: 0; }
.site-body .pv-bm-title { font-weight: 600; }
.site-body .pv-bm-desc {
  font-size: 0.9rem;
  color: var(--site-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.site-body .pv-bm-url {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--site-faint);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.site-body .pv-bm-fav { width: 14px; height: 14px; flex: 0 0 auto; border-radius: 2px; }

/* --- live embed frames ---------------------------------------------
   UNREACHABLE ON A PUBLISHED SITE BY DESIGN: the site renders in
   embeds:"card" mode and both sanitisers strip iframes anyway. Defined so
   that a stored snapshot from any other pipeline degrades to a styled box
   instead of unstyled markup, and so this file stays a complete mirror of
   the classes js/blockhtml.js can emit. */
.site-body .pv-embed { margin: 1.2rem 0; }
.site-body .pv-embed-frame {
  width: 100%;
  border: 1px solid var(--site-border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--site-code-bg);
}
.site-body .pv-embed-scroll { background: var(--site-bg); }
.site-body .pv-embed-if { display: block; width: 100%; height: 100%; border: 0; }
.site-body .pv-embed-open {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: 0.82rem;
  color: var(--site-faint);
  text-decoration: none;
}
.site-body .pv-embed-open:hover { color: var(--site-accent); text-decoration: underline; }

/* --- button block: non-interactive label pill ---------------------- */
.site-body .pv-button-wrap { display: flex; margin: 1rem 0; }
.site-body .pv-button {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  max-width: 100%;
  padding: 0.45rem 0.9rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
  background: var(--site-accent);
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}
.site-body .pv-button-ic { font-size: 0.85em; line-height: 1; }
.site-body .pv-button-label { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* --- canvas / whiteboard board ------------------------------------- */
.site-body .pv-canvas { margin: 1.3rem 0; overflow-x: auto; }
.site-body .pv-canvas-board {
  position: relative;
  width: 100%;
  min-width: 320px;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--site-border);
  background: var(--site-code-bg);
  background-image: radial-gradient(var(--site-border) 1px, transparent 1px);
  background-size: 22px 22px;
}
.site-body .pv-canvas-edges {
  position: absolute;
  inset: 0;
  overflow: visible;
  pointer-events: none;
  color: var(--site-muted);
  z-index: 0;
}
.site-body .pv-canvas-edges line { stroke: currentColor; stroke-width: 1.7; fill: none; opacity: 0.7; }
.site-body .pv-canvas-card {
  position: absolute;
  min-height: 60px;
  z-index: 1;
  border-radius: 8px;
  padding: 8px 9px;
  font-size: 13px;
  line-height: 1.4;
  color: #2a2a20;
  white-space: pre-wrap;
  word-break: break-word;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.16), 0 4px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
/* sticky palette — intentionally light in every theme, with dark text, so a
   board reads the same on a published site as it does in the editor */
.site-body .pv-cv-yellow { background: #fef3c7; }
.site-body .pv-cv-blue   { background: #dbeafe; }
.site-body .pv-cv-green  { background: #dcfce7; }
.site-body .pv-cv-pink   { background: #fce7f3; }
.site-body .pv-cv-purple { background: #ede9fe; }
.site-body .pv-cv-gray   { background: #e9ecef; }

/* --- prose links inside pv- content -------------------------------- */
.site-body .pv-p a,
.site-body .pv-row a,
.site-body .pv-quote a,
.site-body .pv-callout a,
.site-body .pv-th a,
.site-body .pv-td a { color: var(--site-accent); text-underline-offset: 2px; }

/* The Worker renders nav entries as <a> (crawlable) where the reader uses
   <button>; css/site.css styles .site-link, this removes the link chrome. */
#site-root a.site-link { text-decoration: none; }

@media (max-width: 780px) {
  .site-body .pv-cols { flex-direction: column; gap: 0.6rem; }
}

/* ================================================================
   PER-SITE THEMES   —   sites/{slug}.theme
   ----------------------------------------------------------------
   js/site.js and worker/src/site.js both stamp the normalised value on
   <html data-site-theme="…">; siteTheme() in js/blockhtml.js is the
   single normaliser, so an absent or unknown value is "default" and every
   site published before this feature keeps exactly the look it had.

   These override the --site-* custom properties css/site.css declares on
   :root. :root[data-site-theme=…] outranks a bare :root, including the
   one inside css/site.css's prefers-color-scheme block (a media query
   adds no specificity) — so an explicit theme always beats the visitor's
   OS preference, which is the point of choosing one.
   ================================================================ */

/* default — no overrides: css/site.css as authored, follows the OS theme. */

/* editorial — warm paper, serif, a shorter measure. */
:root[data-site-theme="editorial"] {
  --site-bg: #fbf8f3;
  --site-nav-bg: #f4efe6;
  --site-text: #221f1a;
  --site-muted: #6a6154;
  --site-faint: #9c9384;
  --site-border: #e4dccd;
  --site-code-bg: #f2ece1;
}
:root[data-site-theme="editorial"] body {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
}
:root[data-site-theme="editorial"] .site-article { max-width: 42rem; }
:root[data-site-theme="editorial"] .site-article-tt,
:root[data-site-theme="editorial"] .site-brand-tt,
:root[data-site-theme="editorial"] .site-body h1,
:root[data-site-theme="editorial"] .site-body h2,
:root[data-site-theme="editorial"] .site-body h3,
:root[data-site-theme="editorial"] .site-body .pv-h1,
:root[data-site-theme="editorial"] .site-body .pv-h2,
:root[data-site-theme="editorial"] .site-body .pv-h3 {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.005em;
}
:root[data-site-theme="editorial"] .site-body { font-size: 1.08rem; line-height: 1.72; }

/* dark — always dark, whatever the visitor's OS says. */
:root[data-site-theme="dark"] {
  --site-bg: #14151a;
  --site-nav-bg: #191a21;
  --site-text: #e8e9ef;
  --site-muted: #a1a6ba;
  --site-faint: #6e7388;
  --site-border: #2a2c36;
  --site-code-bg: #21232b;
}

/* minimal — quiet and neutral: no accent tint, hairline chrome, no fills. */
:root[data-site-theme="minimal"] {
  --site-nav-bg: var(--site-bg);
  --site-code-bg: transparent;
}
:root[data-site-theme="minimal"] .site-nav { border-right-color: transparent; }
:root[data-site-theme="minimal"] .site-link.active {
  background: none;
  color: var(--site-text);
  font-weight: 600;
}
:root[data-site-theme="minimal"] .site-body .pv-callout,
:root[data-site-theme="minimal"] .site-body .pv-bookmark,
:root[data-site-theme="minimal"] .site-body .pv-file,
:root[data-site-theme="minimal"] .site-body .pv-code,
:root[data-site-theme="minimal"] .site-body .pv-math {
  border-radius: 4px;
  background: none;
}
:root[data-site-theme="minimal"] .site-body .pv-th { background: none; }
:root[data-site-theme="minimal"] .site-body .pv-button {
  background: none;
  color: var(--site-text);
  border: 1px solid var(--site-border);
  box-shadow: none;
}
:root[data-site-theme="minimal"] .site-body .pv-mention {
  background: none;
  color: var(--site-text);
  text-decoration: underline;
  text-underline-offset: 2px;
}
