:root {
  --paper:#f9f8f4;
  --ink:#242420;
  --muted:#716f67;
  --rule:#d4d1c8;
  --accent:#8a3328;
  --wash:#efede6;
  --serif:Georgia,"Noto Serif CJK SC","Source Han Serif SC","Songti SC","STSong","SimSun",serif;
  --sans:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Microsoft YaHei",sans-serif;
  --body-size:19px;
}

* {
  box-sizing:border-box;
}

html {
  scroll-behavior:smooth;
  scroll-padding-top:28px;
}

body {
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:var(--sans);
  font-size:15px;
  -webkit-font-smoothing:antialiased;
}

button,input {
  font:inherit;
}

button,a {
  -webkit-tap-highlight-color:transparent;
}

button {
  color:inherit;
  cursor:pointer;
}

a {
  color:inherit;
  text-decoration:none;
}

a:hover {
  color:var(--accent);
}

button:hover {
  color:var(--accent);
}

a:focus-visible,button:focus-visible,summary:focus-visible,input:focus-visible {
  outline:2px solid var(--accent);
  outline-offset:5px;
}

::selection {
  background:#e8d9c9;
  color:#242420;
}

img {
  max-width:100%;
  height:auto;
}

h1,h2,h3,h4,p {
  margin-top:0;
}

h1,h2,h3,h4 {
  font-family:var(--serif);
  font-weight:700;
}

h1,h2,h3,p,a {
  overflow-wrap:anywhere;
}

[hidden] {
  display:none!important;
}

.site-header,.site-main,.site-footer {
  width:min(1200px,calc(100% - 88px));
  margin-inline:auto;
}

.content-page .site-header,
.content-page .site-main,
.content-page .site-footer {
  max-width:900px;
}

.skip-link {
  position:fixed;
  top:-100px;
  left:20px;
  padding:12px 20px;
  background:var(--ink);
  color:white;
  z-index:100;
}

.skip-link:focus { top:12px; }

.site-header {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  min-height:80px;
  border-bottom:1px solid var(--rule);
}

.brand {
  flex-shrink:0;
  font-family:var(--sans);
  font-size:24px;
  font-weight:650;
  letter-spacing:.04em;
  line-height:1.5;
}

.brand:hover { color:var(--ink); }

.main-nav {
  display:flex;
  align-items:center;
  gap:26px;
  font-size:13px;
  color:var(--muted);
}

.main-nav a {
  display:flex;
  align-items:center;
  min-height:44px;
  white-space:nowrap;
}

.main-nav [aria-current] {
  color:var(--ink);
  font-weight:600;
}

.search-trigger {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  min-height:44px;
  padding:0;
  border:0;
  background:none;
  color:inherit;
}

.search-trigger svg {
  width:17px;
  height:17px;
  stroke:currentColor;
  stroke-width:1.6;
}

.eyebrow {
  font-size:10px;
  line-height:1.5;
  letter-spacing:.14em;
  font-family:var(--sans);
  font-weight:600;
}

.edition-line {
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:28px 0 20px;
  border-bottom:1px solid var(--rule);
}

.edition-line h1 {
  font-family:var(--sans);
  font-size:16px;
  font-weight:600;
  margin:0;
}

.edition-line>span {
  font-size:12px;
  color:var(--muted);
}

.front-page {
  display:grid;
  grid-template-columns:minmax(0,1.55fr) minmax(0,1fr);
  padding:26px 0 32px;
  border-bottom:1px solid var(--rule);
}

.lead-story { padding-right:32px; }

.story-section {
  display:block;
  color:var(--accent);
  margin-bottom:13px;
}

.story h2 {
  font-size:26px;
  line-height:1.5;
  letter-spacing:-.025em;
  margin-bottom:13px;
  text-wrap:pretty;
}

.story h2 a:hover {
  text-decoration:underline;
  text-decoration-thickness:1px;
  text-underline-offset:5px;
}

.story-summary {
  font-family:var(--serif);
  font-size:15px;
  line-height:1.85;
  color:#5b5952;
  margin-bottom:17px;
}

.lead h2 { font-size:34px; line-height:1.45; }
.lead .story-summary { font-size:16px; }

.post-meta {
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:8px;
  font-size:11px;
  color:var(--muted);
  line-height:1.8;
}

.meta-dot { color:#aaa69c; }

.lead-image {
  display:block;
  margin-top:23px;
  background:var(--wash);
  overflow:hidden;
}

.lead-image img {
  width:100%;
  display:block;
  max-height:300px;
  object-fit:contain;
}

.read-link {
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-top:17px;
  font-size:12px;
  font-weight:500;
}

.read-link span { font-size:20px; }

.secondary-stories {
  border-left:1px solid var(--rule);
  padding:0 0 0 32px;
}

.secondary+.secondary {
  margin-top:25px;
  padding-top:25px;
  border-top:1px solid var(--rule);
}

.secondary h2 { font-size:25px; }
.secondary .story-summary { font-size:15px; }

.section-heading {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:22px 0;
  border-bottom:1px solid var(--rule);
  gap:20px;
}

.section-heading h2 {
  font-family:var(--sans);
  font-weight:600;
  font-size:16px;
  margin:0;
}

.section-heading>a { font-size:12px; }

.story-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  column-gap:27px;
}

.grid-story {
  position:relative;
  padding:26px 0;
  border-bottom:1px solid var(--rule);
}

.grid-story:not(:nth-child(3n)):after {
  content:"";
  position:absolute;
  right:-14px;
  top:26px;
  bottom:26px;
  width:1px;
  background:var(--rule);
}

.grid-story h2 { font-size:23px; }
.grid-story .story-summary { font-size:14px; }

.pagination {
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:center;
  padding:36px 0 15px;
  font-size:12px;
  flex-wrap:wrap;
}

.pagination a,.pagination .current,.pagination .space {
  min-width:35px;
  min-height:35px;
  display:grid;
  place-items:center;
  padding:6px 10px;
}

.pagination .current { background:var(--ink); color:var(--paper); }
.pagination a:hover { background:var(--wash); }

.site-footer {
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:12px 24px;
  margin-top:56px;
  padding:24px 0 28px;
  border-top:1px solid var(--rule);
  color:var(--muted);
  font-size:11px;
  line-height:1.8;
}

.site-footer>a { margin-left:auto; }


.article-header,
.article-reading {
  max-width:900px;
  margin-inline:auto;
}

.article-header {
  margin:40px auto 16px;
}

.article-header h1 {
  font-size:36px;
  line-height:1.4;
  letter-spacing:-.025em;
  margin-bottom:23px;
  text-wrap:balance;
}

.article-deck {
  font-family:var(--sans);
  font-size:16px;
  line-height:1.8;
  color:var(--muted);
  margin-bottom:20px;
}

.article-byline {
  display:flex;
  justify-content:space-between;
  gap:12px 24px;
  align-items:center;
  flex-wrap:wrap;
  color:var(--muted);
  font-size:12px;
}

.article-meta {
  display:flex;
  align-items:baseline;
  flex-wrap:wrap;
  gap:6px 14px;
}

.article-author { color:var(--ink); }
.article-byline .post-meta { font-size:12px; }

.reading-tools {
  position:relative;
  margin-left:auto;
  flex-shrink:0;
}

.reading-tools summary {
  cursor:pointer;
  list-style:none;
  padding:10px 0;
}

.reading-tools summary::-webkit-details-marker { display:none; }
.reading-tools summary:hover { color:var(--ink); }

.reading-options {
  position:absolute;
  right:0;
  top:100%;
  z-index:10;
  display:flex;
  align-items:center;
  gap:16px;
  padding:16px;
  width:max-content;
  background:var(--paper);
  border:1px solid var(--rule);
  border-radius:6px;
  box-shadow:0 6px 20px rgb(0 0 0 / .06);
}

.reading-options select {
  font:inherit;
  color:var(--ink);
  padding:7px 10px;
  background:var(--paper);
  border:1px solid var(--rule);
  border-radius:4px;
}

.reading-options select:focus-visible {
  outline:2px solid var(--accent);
  outline-offset:3px;
}

.article-outline {
  margin-bottom:24px;
}

.article-toc {
  font-size:12px;
}

.article-toc summary {
  color:var(--muted);
  width:fit-content;
  font-weight:400;
  cursor:pointer;
  padding:10px 0;
  list-style:none;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:8px;
}

.article-toc summary::-webkit-details-marker {
  display:none;
}

.article-toc summary span {
  font-size:11px;
  color:var(--muted);
  font-weight:400;
}

.article-toc nav {
  max-height:min(420px,60dvh);
  overflow-y:auto;
  scrollbar-width:thin;
  padding:0 12px 16px 0;
}

.article-toc summary span::after {
  content:"⌄";
}

.article-toc[open] summary span::after {
  content:"⌃";
}

.article-toc ol {
  list-style:none;
  padding:0;
  margin:0;
}

.article-toc ol ol {
  padding-left:12px;
  border-left:1px solid var(--rule);
  margin:7px 0;
}

.article-toc li {
  line-height:1.6;
  margin:10px 0;
}

.article-toc a {
  display:block;
  color:var(--muted);
  font-size:13px;
}

.article-toc a:hover,.article-toc a[aria-current=true] {
  color:var(--accent);
}

.article-toc a[aria-current=true] {
  font-weight:600;
}

.article-body {
  min-width:0;
}

.prose {
  font-family:var(--serif);
  font-size:var(--body-size);
  line-height:1.95;
  overflow-wrap:anywhere;
}

.prose p {
  margin:0 0 1.35em;
}

.prose h1 {
  font-size:1.85em;
}

.prose h2 {
  font-size:1.42em;
  line-height:1.55;
  margin:2.1em 0 .8em;
  padding-top:0;
}

.prose h3 {
  font-size:1.2em;
  line-height:1.65;
  margin:1.65em 0 .6em;
}

.prose h4,.prose h5,.prose h6 {
  font-size:1em;
  margin:1.5em 0 .5em;
}

.prose> :first-child {
  margin-top:0;
}

.prose a {
  color:var(--accent);
  text-decoration:underline;
  text-decoration-thickness:1px;
  text-underline-offset:4px;
}

.prose a:hover {
  color:var(--ink);
}

.prose strong {
  font-weight:700;
}

.prose ul,.prose ol {
  padding-left:1.6em;
  margin-bottom:1.35em;
}

.prose li {
  padding-left:.2em;
  margin:.4em 0;
}

.prose li p {
  margin-bottom:.6em;
}

.prose li ul,.prose li ol {
  margin-bottom:.5em;
}

.prose blockquote {
  margin:1.6em 0;
  padding:8px 0 8px 23px;
  border-left:3px solid var(--accent);
  color:#5b5952;
}

.prose blockquote p:last-child {
  margin-bottom:0;
}

.prose hr {
  border:0;
  border-top:1px solid var(--rule);
  margin:2.2em 0;
}

.prose img {
  display:block;
  height:auto;
  max-width:100%;
  margin:1.7em auto;
}

.prose figure {
  margin:1.7em 0;
}

.prose figcaption {
  font-family:var(--sans);
  font-size:12px;
  color:var(--muted);
  text-align:center;
}

.prose code {
  font-family:"SFMono-Regular",Consolas,"Liberation Mono",monospace;
  font-size:.78em;
  padding:.15em .3em;
  background:var(--wash);
  border-radius:2px;
  box-decoration-break:clone;
}

.prose pre {
  background:var(--wash);
  padding:20px;
  overflow-x:auto;
  font-size:14px;
  line-height:1.75;
  tab-size:2;
  max-width:100%;
}

.prose pre code {
  background:none;
  padding:0;
  font-size:inherit;
  white-space:pre;
  overflow-wrap:normal;
}

.prose .highlight {
  background:var(--wash);
  overflow-x:auto;
  border:1px solid var(--rule);
  position:relative;
}

.prose .highlight table {
  display:table;
  overflow:visible;
  width:100%;
  margin:0;
  border:0;
  font-size:14px;
  line-height:1.75;
}

.prose .highlight td {
  border:0;
  padding:0;
}

.prose .highlight pre {
  padding:18px 15px;
  margin:0;
  background:transparent;
  overflow:visible;
  font-size:14px;
}

.prose .highlight .gutter {
  width:35px;
  color:#979286;
  border-right:1px solid var(--rule);
  user-select:none;
}

.prose .highlight .gutter pre {
  text-align:right;
  padding-right:10px;
}

.prose .highlight .code pre {
  padding-right:70px;
}

.copy-code {
  position:absolute;
  top:8px;
  right:8px;
  border:1px solid var(--rule);
  background:var(--paper);
  font-family:var(--sans);
  font-size:10px;
  padding:5px 8px;
}

.prose table {
  display:block;
  max-width:100%;
  overflow-x:auto;
  border-collapse:collapse;
  font-family:var(--sans);
  font-size:14px;
  line-height:1.8;
  margin:1.7em 0;
}

.prose th,.prose td {
  padding:12px 15px;
  border-bottom:1px solid var(--rule);
  text-align:left;
  min-width:90px;
}

.prose th {
  border-top:1px solid var(--ink);
  border-bottom:1px solid var(--ink);
  font-weight:600;
  background:var(--wash);
  white-space:nowrap;
}

.prose tr:nth-child(even) {
  background:#f3f1eb;
}

.prose .highlight tr {
  background:none;
}

.prose .comment,.prose .quote {
  color:#77746a;
}

.prose .keyword,.prose .selector-tag,.prose .literal {
  color:#8a3328;
}

.prose .string,.prose .attr {
  color:#3a6555;
}

.prose .number,.prose .built_in {
  color:#755c99;
}

.prose .title,.prose .function {
  color:#355c7d;
}

.prose iframe,.prose video {
  max-width:100%;
}

.prose mjx-container[display=true] {
  overflow-x:auto;
  overflow-y:hidden;
  padding:10px 0;
  max-width:100%;
}

.article-extras {
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:12px 24px;
  margin-top:40px;
  padding:18px 0;
  border-top:1px solid var(--rule);
  font-size:12px;
  color:var(--muted);
}

.article-tags {
  display:flex;
  flex-wrap:wrap;
  gap:8px 18px;
}

.article-tags a,
.article-discussion a {
  padding:6px 0;
  display:inline-block;
}

.article-tags a:hover,
.article-discussion a:hover {
  text-decoration:underline;
  text-underline-offset:4px;
}

.post-navigation {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:32px;
  border-top:1px solid var(--rule);
  margin-top:8px;
  padding-top:24px;
}

.post-navigation>a>span {
  font-size:12px;
  color:var(--muted);
  display:block;
  margin-bottom:8px;
}

.post-navigation strong {
  font-family:var(--sans);
  font-size:16px;
  font-weight:500;
  line-height:1.7;
}

.reading-progress {
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:3px;
  z-index:30;
  pointer-events:none;
}

.reading-progress span {
  display:block;
  width:100%;
  height:100%;
  background:var(--accent);
  transform:scaleX(0);
  transform-origin:left;
}

.collection-header {
  padding:44px 0 28px;
}

.collection-header h1 {
  font-family:var(--sans);
  font-size:32px;
  font-weight:600;
  line-height:1.4;
  margin:0;
}

.archive-year {
  font-family:Georgia,serif;
  font-size:24px;
  font-weight:500;
  margin:24px 0 8px;
}

.archive-year span {
  font-family:var(--serif);
  font-size:12px;
  font-weight:400;
  margin-left:8px;
}

.archive-row {
  display:grid;
  grid-template-columns:70px minmax(0,1fr) 75px;
  gap:20px;
  padding:25px 0;
  border-bottom:1px solid var(--rule);
}

.archive-row>time {
  font-family:Georgia,serif;
  font-size:17px;
  padding-top:4px;
  color:var(--muted);
}

.archive-row h3 {
  font-size:21px;
  line-height:1.5;
  margin-bottom:10px;
}

.archive-row p {
  font-family:var(--serif);
  font-size:14px;
  line-height:1.8;
  color:var(--muted);
  margin:0;
}

.archive-reading {
  font-size:11px;
  color:var(--muted);
  text-align:right;
  padding-top:8px;
}

.topic-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  column-gap:35px;
}

.topic-item {
  padding:23px 0;
  border-bottom:1px solid var(--rule);
}

.topic-item h2 {
  font-family:var(--sans);
  font-size:17px;
  font-weight:500;
  line-height:1.6;
  margin:0 0 10px;
}

.topic-item>span {
  font-size:12px;
  color:var(--muted);
  display:flex;
  justify-content:space-between;
}

.about-content {
  margin:0;
}

.about-content h2 {
  border:0;
  padding:0;
  margin:1.8em 0 .65em;
  font-family:var(--sans);
  font-size:22px;
  font-weight:600;
}

.search-dialog {
  border:1px solid var(--ink);
  background:var(--paper);
  color:var(--ink);
  padding:28px;
  width:min(640px,calc(100% - 32px));
  max-height:80dvh;
}

.search-dialog::backdrop {
  background:rgb(25 24 20 / .45);
}

.search-heading {
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:20px;
}

.search-heading h2 {
  margin:0;
  font-size:28px;
}

.icon-button {
  border:0;
  background:transparent;
  font-size:30px;
  min-width:40px;
  min-height:40px;
}

.search-label {
  font-size:12px;
  color:var(--muted);
  display:block;
  margin-bottom:10px;
}

.search-dialog input {
  border:1px solid var(--rule);
  background:var(--paper);
  width:100%;
  padding:14px;
  font-size:16px;
  border-radius:0;
}

.search-status {
  font-size:12px;
  color:var(--muted);
  margin:20px 0;
}

.search-results {
  list-style:none;
  padding:0;
  margin:0;
}

.search-results li {
  border-top:1px solid var(--rule);
}

.search-results a {
  display:block;
  padding:17px 0;
}

.search-results strong {
  font-family:var(--serif);
  font-size:19px;
  line-height:1.5;
}

.search-results p {
  font-size:12px;
  color:var(--muted);
  line-height:1.8;
  margin:8px 0 0;
}

.empty-state {
  padding:80px 0;
  text-align:center;
  font-family:var(--serif);
}

html[data-reading-size=large] {
  --body-size:21px;
}

html[data-reading-size=larger] {
  --body-size:23px;
}

@media(min-width:1400px) {
  .front-page {
    padding-top:30px;
  }
  .lead h2 {
    font-size:38px;
  }
}

@media(max-width:1050px) {
  .site-header,.site-main,.site-footer {
    width:calc(100% - 56px);
  }
  .front-page {
    grid-template-columns:minmax(0,1.55fr) minmax(0,1fr);
  }
  .secondary-stories {
    border-right:0;
    padding-right:0;
  }
  .article-header h1 {
    font-size:34px;
  }
}

@media(max-width:760px) {
  .site-header {
    min-height:68px;
    gap:16px;
  }
  .brand {
    font-size:20px;
  }
  .main-nav {
    gap:16px;
    font-size:12px;
  }
  .search-trigger {
    min-width:32px;
  }
  .search-trigger span {
    display:none;
  }

  .site-header,.site-main,.site-footer {
    width:calc(100% - 36px);
  }
  .edition-line {
    padding:20px 0 15px;
  }
  .edition-line>span {
    font-size:10px;
    max-width:125px;
    text-align:right;
    line-height:1.7;
  }
  .edition-line h1 {
    font-size:12px;
    gap:8px;
  }
  .front-page {
    grid-template-columns:1fr;
    padding:22px 0 25px;
  }
  .lead-story {
    padding-right:0;
  }
  .lead h2 {
    font-size:31px;
    line-height:1.5;
  }
  .lead .story-summary {
    font-size:16px;
  }
  .lead-image img {
    max-height:320px;
  }
  .secondary-stories {
    border-left:0;
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    padding:24px 0 0;
    margin-top:24px;
    border-top:1px solid var(--ink);
    gap:19px;
  }
  .secondary+.secondary {
    margin:0;
    padding:0 0 0 19px;
    border-top:0;
    border-left:1px solid var(--rule);
  }
  .secondary h2 {
    font-size:20px;
    line-height:1.55;
  }
  .secondary .story-summary {
    font-size:13px;
  }
  .story-grid {
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:0 25px;
  }
  .grid-story:not(:nth-child(3n)):after {
    display:none;
  }
  .grid-story:nth-child(odd):after {
    display:block;
    right:-13px;
  }
  .grid-story h2 {
    font-size:21px;
  }
  .section-heading h2 {
    font-size:16px;
    gap:9px;
  }
  .section-heading>a {
    font-size:10px;
  }
  .site-footer {
    margin-top:45px;
  }
  .article-header {
    margin:30px auto 12px;
  }
  .article-header h1 {
    font-size:30px;
    line-height:1.45;
  }
  .article-deck {
    font-size:15px;
  }
  .article-outline {
    margin-bottom:25px;
  }
  .article-toc nav {
    max-height:260px;
    padding:0 8px 10px;
  }
  .article-toc summary {
    padding:10px 0;
  }
  .article-toc a {
    font-size:12px;
  }
  .article-body {
    width:100%;
  }
  :root {
    --body-size:18px;
  }
  html[data-reading-size=large] {
    --body-size:20px;
  }
  html[data-reading-size=larger] {
    --body-size:22px;
  }
  .prose {
    line-height:1.95;
  }
  .prose h2 {
    font-size:1.35em;
  }
  .prose blockquote {
    padding-left:17px;
  }
  .prose th,.prose td {
    padding:9px 11px;
  }
  .prose .highlight pre,.prose .highlight table {
    font-size:12px;
  }
  .post-navigation {
    gap:20px;
  }
  .post-navigation strong {
    font-size:16px;
  }
  .collection-header {
    padding:33px 0 25px;
  }
  .collection-header h1 {
    font-size:28px;
  }
  .archive-row {
    grid-template-columns:48px minmax(0,1fr);
    gap:14px;
    padding:22px 0;
  }
  .archive-row h3 {
    font-size:21px;
  }
  .archive-row>time {
    font-size:14px;
  }
  .archive-reading {
    display:none;
  }
  .topic-grid {
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:0 22px;
  }
  .topic-item h2 {
    font-size:16px;
  }
  .search-dialog {
    padding:20px;
  }
}

@media(max-width:390px) {
  .secondary-stories {
    grid-template-columns:1fr;
  }
  .secondary+.secondary {
    padding:22px 0 0;
    border-left:0;
    border-top:1px solid var(--rule);
  }
  .story-grid {
    grid-template-columns:1fr;
  }
  .grid-story:nth-child(odd):after {
    display:none;
  }
  .article-header h1 {
    font-size:29px;
  }
}

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

@media print {
  body {
    background:#fff;
    color:#000;
  }
  .site-header,.site-footer,.article-outline,.reading-tools,.article-extras,.post-navigation,.reading-progress,.search-dialog,.skip-link,.copy-code {
    display:none!important;
  }
  .site-main {
    width:100%;
  }
  .article-header {
    margin-top:0;
    max-width:none;
  }
  .article-header h1 {
    font-size:28pt;
  }
  .article-reading {
    max-width:none;
    margin:0;
  }
  .article-body {
    max-width:none;
  }
  .prose {
    font-size:11pt;
    line-height:1.7;
  }
  .prose a {
    color:inherit;
  }
  .prose pre,.prose .highlight {
    white-space:pre-wrap;
    overflow:visible;
  }
  .prose .highlight pre {
    white-space:pre-wrap;
    overflow-wrap:anywhere;
  }
  .prose .highlight .code pre {
    padding-right:15px;
  }
  .prose table {
    display:table;
    font-size:9pt;
    width:100%;
  }
  .prose th,.prose td {
    min-width:0;
    padding:6px;
  }
  .prose h2,.prose h3 {
    break-after:avoid;
  }
  .prose img {
    max-height:80vh;
    object-fit:contain;
  }
  a {
    text-decoration:none;
  }
  @page {
    margin:18mm;
  }
}
