spb/localvm-research Public License
Running LLMs larger than memory on a consumer Mac — falsification-driven research: margin-gated deferred refinement, out-of-core verification on Apple Silicon. TR-01 published.
Python 63.2%
JavaScript 23.5%
CSS 11.8%
Shell 0.9%
Makefile 0.5%
1/* ============================================================================2 * Project : localvm-research3 * File : web/public/style.css4 * Purpose : Light-theme styling for the research showcase platform (v2)5 * Author : Simon-Pierre Boucher6 * Contact : contact@spboucher.ai7 * Created : 2026-08-128 * Modified : 2026-08-129 * Platform : Web (deployed from macOS / Apple Silicon)10 * License : All rights reserved (research code)11 * ==========================================================================*/1213:root {14 color-scheme: light;15 --page: #f9f9f7;16 --surface: #fcfcfb;17 --ink: #0b0b0b;18 --ink-2: #52514e;19 --muted: #898781;20 --grid: #e1e0d9;21 --baseline: #c3c2b7;22 --border: rgba(11, 11, 11, 0.10);23 --accent: #2a78d6;24 --accent-dark: #1c5cab;25 --accent-wash: #edf3fb;26 --good: #0ca30c;27 --good-text: #006300;28 --radius: 12px;29 --shadow-1: 0 1px 2px rgba(11,11,11,0.04), 0 1px 3px rgba(11,11,11,0.05);30 --shadow-2: 0 4px 14px rgba(11,11,11,0.07), 0 2px 4px rgba(11,11,11,0.05);31}3233* { box-sizing: border-box; }34html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 76px; }35body {36 margin: 0;37 font-family: system-ui, -apple-system, "Segoe UI", sans-serif;38 background: var(--page);39 color: var(--ink);40 line-height: 1.65;41 font-size: 16px;42}43.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }44a { color: var(--accent-dark); text-decoration: none; }45a:hover { text-decoration: underline; }46code, pre, .mono-small { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }47::selection { background: #cde2fb; }4849/* ---------------------------------------------------------------- header */50.site-header {51 position: sticky; top: 0; z-index: 40;52 background: rgba(252, 252, 251, 0.85);53 -webkit-backdrop-filter: saturate(180%) blur(14px);54 backdrop-filter: saturate(180%) blur(14px);55 border-bottom: 1px solid var(--grid);56}57.header-row { display: flex; align-items: center; justify-content: space-between; height: 60px; gap: 16px; }58.brand {59 font-weight: 750; font-size: 18.5px; color: var(--ink); letter-spacing: -0.02em;60 display: flex; align-items: center; gap: 8px; white-space: nowrap;61}62.brand-logo { display: block; border-radius: 7px; }63.brand-dim { color: var(--muted); font-weight: 500; }64.site-nav { display: flex; gap: 2px; flex-wrap: wrap; }65.site-nav a {66 padding: 7px 13px; border-radius: 8px; color: var(--ink-2);67 font-size: 14px; font-weight: 550;68 transition: background 0.15s, color 0.15s;69}70.site-nav a:hover { background: var(--accent-wash); text-decoration: none; color: var(--accent-dark); }71.site-nav a.active { color: var(--accent-dark); background: var(--accent-wash); font-weight: 650; }72.nav-toggle { display: none; }7374/* ---------------------------------------------------------------- hero */75.hero {76 padding: 72px 0 16px;77 background:78 radial-gradient(1000px 380px at 15% -20%, rgba(42,120,214,0.10), transparent 65%),79 radial-gradient(800px 300px at 90% -30%, rgba(27,175,122,0.07), transparent 60%);80 margin: 0 -24px; padding-left: 24px; padding-right: 24px;81}82.kicker {83 text-transform: uppercase; letter-spacing: 0.1em; font-size: 12px; font-weight: 700;84 color: var(--accent-dark); margin: 0 0 14px;85 display: inline-flex; align-items: center; gap: 8px;86}87.kicker::before { content: ""; width: 22px; height: 2px; background: var(--accent); border-radius: 2px; }88.hero h1 { font-size: 46px; line-height: 1.08; letter-spacing: -0.028em; margin: 0 0 18px; font-weight: 780; }89.lede { font-size: 18.5px; color: var(--ink-2); max-width: 780px; margin: 0 0 14px; }90.lede-small { color: var(--ink-2); max-width: 780px; }91.lede-eq code {92 font-size: 13px; background: var(--surface); border: 1px solid var(--grid);93 border-radius: 8px; padding: 8px 14px; color: var(--ink-2); display: inline-block;94 box-shadow: var(--shadow-1);95}9697/* ---------------------------------------------------------------- tiles */98.tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 16px; margin: 36px 0; }99.tile {100 background: var(--surface); border: 1px solid var(--grid); border-radius: var(--radius);101 padding: 22px 24px; display: flex; flex-direction: column; gap: 2px;102 box-shadow: var(--shadow-1); position: relative; overflow: hidden;103}104.tile::before {105 content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;106 background: linear-gradient(180deg, var(--accent), #6da7ec);107}108.tile-value { font-size: 36px; font-weight: 760; letter-spacing: -0.025em; line-height: 1.1; }109.tile-denom { font-size: 20px; color: var(--muted); font-weight: 500; }110.tile-label { color: var(--ink-2); font-size: 13.5px; margin-top: 4px; }111112/* ---------------------------------------------------------------- cards */113.split { display: grid; grid-template-columns: 3fr 2fr; gap: 20px; margin: 8px 0 20px; }114.card {115 background: var(--surface); border: 1px solid var(--grid); border-radius: var(--radius);116 padding: 26px 28px; margin-bottom: 20px; box-shadow: var(--shadow-1);117}118.card h2 { margin-top: 0; font-size: 20px; letter-spacing: -0.015em; font-weight: 700; }119.more { font-weight: 650; font-size: 14px; }120.card-head-row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; flex-wrap: wrap; }121.btn {122 display: inline-block; background: var(--accent); color: #fff; border: 0;123 padding: 10px 20px; border-radius: 9px; font-size: 14.5px; font-weight: 650;124 cursor: pointer; transition: background 0.15s, transform 0.1s; font-family: inherit;125}126.btn:hover { background: var(--accent-dark); }127.btn:active { transform: translateY(1px); }128129/* ---------------------------------------------------------------- phases */130.phases { list-style: none; margin: 0; padding: 0; }131.phase { display: flex; align-items: flex-start; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--grid); }132.phase:last-child { border-bottom: 0; }133.phase strong { display: block; font-size: 14.5px; }134.phase-detail { font-size: 13px; color: var(--muted); }135.phase-dot { width: 10px; height: 10px; border-radius: 50%; margin-top: 7px; flex: 0 0 auto; background: var(--baseline); }136.phase.done .phase-dot { background: var(--good); box-shadow: 0 0 0 3px rgba(12,163,12,0.14); }137.phase.in-progress .phase-dot { background: var(--accent); box-shadow: 0 0 0 3px rgba(42,120,214,0.16); }138.phase .badge { margin-left: auto; }139.badge {140 font-size: 11.5px; font-weight: 650; padding: 3px 10px; border-radius: 20px;141 white-space: nowrap; align-self: center; border: 1px solid var(--grid); color: var(--ink-2);142}143.badge-done { color: var(--good-text); background: #eef7ee; border-color: #cfe8cf; }144.badge-in-progress, .badge-has-results { color: var(--accent-dark); background: var(--accent-wash); border-color: #cfe0f5; }145.badge-pending, .badge-scaffolded { color: var(--muted); background: var(--page); }146147/* ---------------------------------------------------------------- doc cards */148.page-title { font-size: 32px; letter-spacing: -0.025em; margin: 44px 0 10px; font-weight: 760; }149.section-title { font-size: 20px; margin: 34px 0 10px; font-weight: 700; }150.doc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 16px; margin: 18px 0; }151.doc-card {152 background: var(--surface); border: 1px solid var(--grid); border-radius: var(--radius);153 padding: 20px 22px; color: var(--ink); display: block; box-shadow: var(--shadow-1);154 transition: box-shadow 0.18s, transform 0.18s, border-color 0.18s;155}156.doc-card:hover { border-color: #b9d2f0; text-decoration: none; box-shadow: var(--shadow-2); transform: translateY(-2px); }157.doc-card.disabled { opacity: 0.55; pointer-events: none; }158.doc-card h3 { margin: 0 0 6px; font-size: 16px; font-weight: 680; }159.doc-card p { margin: 0 0 10px; font-size: 13.5px; color: var(--ink-2); }160.runs { font-size: 12px; color: var(--muted); margin-left: 8px; }161.note-line { color: var(--ink-2); font-size: 14px; }162163/* ---------------------------------------------------------------- doc view */164.doc { max-width: 860px; margin: 32px auto; }165.crumb { font-size: 13px; color: var(--muted); margin: 26px 0 4px; }166.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0 18px; }167.chip {168 font-size: 12px; background: var(--surface); border: 1px solid var(--grid);169 border-radius: 20px; padding: 3px 12px; color: var(--ink-2);170}171.chip-k { color: var(--muted); margin-right: 6px; text-transform: uppercase; font-size: 10px; letter-spacing: 0.05em; }172.doc-head { margin: 30px 0 6px; }173.doc-head-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }174.doc-head h1 { font-size: 32px; letter-spacing: -0.025em; margin: 0; font-weight: 760; }175.doc-head h1::first-letter { text-transform: uppercase; }176.doc-head-meta { color: var(--muted); font-size: 13px; margin: 6px 0 0; font-family: ui-monospace, Menlo, monospace; }177.doc-layout { display: block; margin-top: 18px; }178.doc-layout.has-toc { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 36px; align-items: start; }179.doc-layout .doc { margin: 0; max-width: 820px; }180.toc {181 position: sticky; top: 80px; background: var(--surface); border: 1px solid var(--grid);182 border-radius: var(--radius); padding: 16px 18px; max-height: calc(100vh - 104px);183 overflow-y: auto; box-shadow: var(--shadow-1);184}185.toc-title { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); font-weight: 700; }186.toc ul { list-style: none; margin: 10px 0 0; padding: 0; }187.toc li { padding: 3px 0; line-height: 1.35; }188.toc li a { color: var(--ink-2); font-size: 13px; display: block; border-left: 2px solid transparent; padding-left: 8px; margin-left: -8px; }189.toc li a:hover { color: var(--accent-dark); text-decoration: none; border-left-color: var(--accent); }190.toc-d3 { padding-left: 14px !important; }191.toc-d3 a { font-size: 12.5px !important; color: var(--muted) !important; }192.hanchor { opacity: 0; margin-left: 8px; font-weight: 400; color: var(--muted); font-size: 0.85em; }193h2:hover .hanchor, h3:hover .hanchor, h4:hover .hanchor { opacity: 1; text-decoration: none; }194195/* markdown body */196.md { overflow-wrap: break-word; }197.md h1 { font-size: 28px; letter-spacing: -0.02em; }198.md h2 { font-size: 21px; margin-top: 38px; border-bottom: 1px solid var(--grid); padding-bottom: 7px; letter-spacing: -0.01em; }199.md h3 { font-size: 17px; margin-top: 28px; }200.md code { background: #f1f0ec; border-radius: 5px; padding: 1px 6px; font-size: 0.88em; }201.md pre code, .codeblock code { background: none; padding: 0; font-size: 13px; }202.codeblock, .md pre {203 background: #f6f5f2; border: 1px solid var(--grid); border-radius: 10px;204 padding: 15px 18px; overflow-x: auto; line-height: 1.55;205}206.md table { border-collapse: collapse; width: 100%; font-size: 14px; display: block; overflow-x: auto; }207.md th, .md td { border: 1px solid var(--grid); padding: 7px 11px; text-align: left; vertical-align: top; }208.md th { background: var(--page); }209.md blockquote { border-left: 3px solid var(--accent); margin-left: 0; padding-left: 16px; color: var(--ink-2); }210211/* ---------------------------------------------------------------- log */212.log-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 20px; }213.log-entry h3 { font-size: 15px; margin: 2px 0 8px; }214.timeline { margin: 26px 0; max-width: 880px; }215.tl-entry { display: grid; grid-template-columns: 26px minmax(0, 1fr); gap: 14px; }216.tl-rail { position: relative; }217.tl-rail::before { content: ""; position: absolute; left: 11px; top: 4px; bottom: -18px; width: 2px; background: var(--grid); }218.tl-entry:last-child .tl-rail::before { bottom: auto; height: 24px; }219.tl-dot {220 position: absolute; left: 5px; top: 6px; width: 14px; height: 14px; border-radius: 50%;221 background: var(--accent); border: 3px solid var(--page); box-shadow: 0 0 0 1px var(--grid);222}223.tl-card {224 background: var(--surface); border: 1px solid var(--grid); border-radius: var(--radius);225 padding: 18px 22px; margin-bottom: 18px; min-width: 0; box-shadow: var(--shadow-1);226}227.tl-time { font-size: 12px; color: var(--muted); font-family: ui-monospace, Menlo, monospace; }228.tl-card h3 { margin: 4px 0 10px; font-size: 16.5px; letter-spacing: -0.01em; }229.md-compact { font-size: 14px; color: var(--ink-2); }230.md-compact ul { padding-left: 18px; margin: 6px 0; }231.md-compact li { margin: 3px 0; }232.md-compact p { margin: 6px 0; }233.md-compact strong { color: var(--ink); }234.md-compact pre { font-size: 12px; padding: 10px 12px; }235236/* ---------------------------------------------------------------- tables/files */237.results-table, .kv-table {238 border-collapse: collapse; width: 100%; font-size: 14.5px; background: var(--surface);239 border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-1);240}241.results-table th, .results-table td, .kv-table th, .kv-table td {242 border: 1px solid var(--grid); padding: 9px 13px; text-align: left;243}244.results-table th { background: var(--page); }245.kv-table th { background: var(--page); width: 190px; }246.file-list { list-style: none; padding: 0; }247.file-list li { padding: 7px 0; border-bottom: 1px solid var(--grid); }248.tree { list-style: none; padding-left: 0; }249.tree ul { list-style: none; padding-left: 20px; }250.tree-root { margin-bottom: 14px; }251.tree li { padding: 2px 0; font-size: 14.5px; }252.mono-small { font-size: 12.5px; color: var(--muted); }253.file-card { padding: 0; overflow: hidden; }254.file-head { display: flex; justify-content: space-between; padding: 10px 18px; border-bottom: 1px solid var(--grid); background: var(--page); }255.file-card .codeblock { border: 0; border-radius: 0; margin: 0; }256257/* ---------------------------------------------------------------- chart */258.chart-fig { margin: 18px 0 8px; position: relative; }259.chart-fig svg { width: 100%; height: auto; }260.chart-fig .grid { stroke: var(--grid); stroke-width: 1; }261.chart-fig .axis { stroke: var(--baseline); stroke-width: 1; }262.chart-fig .tick { fill: var(--muted); font-size: 11px; font-family: ui-monospace, Menlo, monospace; }263.chart-fig .axis-title { fill: var(--ink-2); font-size: 12px; }264.chart-fig .series-label { font-size: 12px; font-weight: 600; }265.chart-fig .pt { cursor: pointer; }266.chart-fig figcaption { font-size: 12.5px; color: var(--muted); margin-top: 4px; }267.chart-tip {268 position: absolute; pointer-events: none; background: var(--ink); color: #fff;269 font-size: 12.5px; padding: 5px 10px; border-radius: 7px; white-space: nowrap; z-index: 5;270}271272/* ---------------------------------------------------------------- comments */273.comments-wrap { max-width: 720px; margin: 0 auto; }274.comment-form {275 background: var(--surface); border: 1px solid var(--grid); border-radius: var(--radius);276 box-shadow: var(--shadow-1); margin: 26px 0 40px; overflow: hidden;277}278.cf-head {279 padding: 14px 22px; font-weight: 700; font-size: 15px;280 background: linear-gradient(180deg, var(--accent-wash), var(--surface));281 border-bottom: 1px solid var(--grid);282}283.cf-body { padding: 20px 22px 22px; }284.field { display: block; margin-bottom: 16px; }285.field-label {286 display: block; font-size: 12.5px; font-weight: 700; color: var(--ink-2);287 text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 6px;288}289.comment-form input, .comment-form textarea {290 width: 100%; border: 1.5px solid var(--grid); border-radius: 10px; background: var(--page);291 padding: 11px 14px; font-size: 15px; font-family: inherit; color: var(--ink);292 transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;293 resize: vertical;294}295.comment-form input::placeholder, .comment-form textarea::placeholder { color: var(--baseline); }296.comment-form input:focus, .comment-form textarea:focus {297 outline: none; border-color: var(--accent); background: var(--surface);298 box-shadow: 0 0 0 4px rgba(42,120,214,0.12);299}300.cf-foot { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin-top: 4px; }301.cf-hint { font-size: 12.5px; color: var(--muted); }302.hp { position: absolute !important; left: -9999px !important; height: 0; width: 0; border: 0; padding: 0; }303.cl-head { display: flex; align-items: baseline; justify-content: space-between; border-bottom: 2px solid var(--ink); padding-bottom: 8px; margin-bottom: 20px; }304.cl-head h2 { margin: 0; font-size: 18px; font-weight: 750; }305.comment { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--grid); }306.comment:last-child { border-bottom: 0; }307.avatar {308 flex: 0 0 auto; width: 40px; height: 40px; border-radius: 50%;309 display: flex; align-items: center; justify-content: center;310 color: #fff; font-weight: 750; font-size: 17px;311}312.comment-main { min-width: 0; flex: 1; }313.comment-head { display: flex; justify-content: space-between; gap: 10px; align-items: baseline; flex-wrap: wrap; }314.comment-name { font-weight: 720; font-size: 15px; }315.comment-time { font-size: 12px; color: var(--muted); font-family: ui-monospace, Menlo, monospace; }316.comment-body { margin: 5px 0 0; font-size: 15px; color: var(--ink-2); white-space: pre-wrap; line-height: 1.6; }317.empty-state {318 text-align: center; padding: 44px 20px; color: var(--muted);319 background: var(--surface); border: 1px dashed var(--baseline); border-radius: var(--radius);320}321.empty-icon { font-size: 30px; display: block; margin-bottom: 8px; }322.flash {323 background: #eef7ee; border: 1px solid #cfe8cf; color: var(--good-text);324 border-radius: 10px; padding: 11px 18px; margin: 16px 0; font-size: 14px; font-weight: 600;325}326.flash-err { background: #fdf0ef; border-color: #f2cfcc; color: #a13430; }327328/* ---------------------------------------------------------------- footer */329.site-footer { border-top: 1px solid var(--grid); margin-top: 56px; background: var(--surface); font-size: 14px; color: var(--ink-2); }330.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 28px; padding: 32px 24px 20px; }331.footer-brand { font-weight: 750; color: var(--ink); font-size: 15px; }332.footer-tag { font-size: 13px; color: var(--muted); max-width: 340px; margin: 6px 0 0; }333.footer-h { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); font-weight: 700; margin-bottom: 8px; }334.footer-col { display: flex; flex-direction: column; gap: 5px; font-size: 13.5px; }335.footer-meta { color: var(--muted); font-size: 12px; }336.footer-legal { border-top: 1px solid var(--grid); padding: 14px 24px 26px; font-size: 12.5px; color: var(--muted); }337338/* ---------------------------------------------------------------- mobile */339@media (max-width: 880px) {340 .split { grid-template-columns: 1fr; }341 .hero h1 { font-size: 32px; }342}343@media (max-width: 720px) {344 body { font-size: 15px; }345 .wrap { padding: 0 16px; }346 .header-row { height: 56px; }347 .nav-toggle {348 display: flex; flex-direction: column; justify-content: center; gap: 5px;349 background: none; border: 0; padding: 10px; cursor: pointer; z-index: 60;350 }351 .nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.22s, opacity 0.18s; }352 .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }353 .nav-toggle.open span:nth-child(2) { opacity: 0; }354 .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }355 .site-nav {356 position: fixed; top: 56px; left: 0; right: 0; z-index: 50;357 background: var(--surface); border-bottom: 1px solid var(--grid);358 flex-direction: column; gap: 0; padding: 8px 12px 14px;359 box-shadow: var(--shadow-2);360 display: none;361 }362 .site-nav.open { display: flex; }363 .site-nav a { padding: 13px 12px; font-size: 16px; border-radius: 8px; border-bottom: 1px solid var(--grid); }364 .site-nav a:last-child { border-bottom: 0; }365 html { scroll-padding-top: 64px; }366 .hero { padding: 32px 16px 8px; margin: 0 -16px; }367 .hero h1 { font-size: 27px; }368 .lede { font-size: 16px; }369 .lede-eq code { font-size: 11px; white-space: normal; word-break: break-word; }370 .tiles { grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 22px 0; }371 .tile { padding: 15px 16px; }372 .tile-value { font-size: 27px; }373 .card { padding: 18px 18px; }374 .page-title { font-size: 25px; margin-top: 26px; }375 .doc-head h1 { font-size: 23px; }376 .doc-layout.has-toc { display: block; }377 .toc { position: static; max-height: none; margin-bottom: 16px; }378 .tl-entry { grid-template-columns: 18px minmax(0, 1fr); gap: 10px; }379 .tl-card { padding: 13px 15px; }380 .md h1 { font-size: 22px; } .md h2 { font-size: 18px; } .md h3 { font-size: 16px; }381 .md pre, .codeblock { font-size: 12px; padding: 10px 12px; }382 .results-table, .kv-table { font-size: 13px; display: block; overflow-x: auto; box-shadow: none; }383 .kv-table th { width: auto; }384 .file-head { flex-direction: column; gap: 2px; }385 .footer-grid { grid-template-columns: 1fr; gap: 18px; }386 .chart-fig { overflow-x: auto; -webkit-overflow-scrolling: touch; }387 .chart-fig svg { min-width: 560px; }388}389@media (max-width: 420px) {390 .hero h1 { font-size: 24px; }391}392393/* ---- publications ---------------------------------------------------------- */394.pub-list { max-width: 860px; margin: 24px 0; }395.pub-card {396 display: block; background: var(--surface); border: 1px solid var(--grid);397 border-radius: var(--radius); padding: 26px 30px; margin-bottom: 18px;398 color: var(--ink); box-shadow: var(--shadow-1);399 transition: box-shadow 0.18s, transform 0.18s, border-color 0.18s;400}401.pub-card:hover { border-color: #b9d2f0; box-shadow: var(--shadow-2); transform: translateY(-2px); text-decoration: none; }402.pub-meta { display: flex; gap: 10px; align-items: center; margin-bottom: 10px; }403.pub-card h2 { margin: 0 0 6px; font-size: 20px; letter-spacing: -0.015em; line-height: 1.3; }404.pub-authors { margin: 0 0 10px; font-size: 14px; color: var(--accent-dark); font-weight: 600; }405.pub-abstract { margin: 0 0 12px; font-size: 14px; color: var(--ink-2); }406.md img {407 max-width: 100%; height: auto; display: block; margin: 20px auto 6px;408 background: #fff; border: 1px solid var(--grid); border-radius: 10px; padding: 12px;409}410.md img + em, .md p > img ~ em { display: block; text-align: center; }411