:root {
  --distill-accent: #645495;
  --distill-accent-dark: #47386f;
  --distill-bg: #f1f0ec;
  --distill-text: #252329;
  --distill-muted: #6f6b76;
  --distill-faint: #9a96a0;
  --distill-rule: #e4e1e7;
  --distill-soft: #f7f5f8;
  --distill-equation: #f2f6ff;
  --distill-sans: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --distill-serif: "Source Serif 4", Georgia, serif;
  --distill-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body.distill-site {
  min-width: 320px;
  margin: 0;
  color: var(--distill-text);
  background: var(--distill-bg);
  font-family: var(--distill-sans);
  font-size: 1.15em;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.distill-site ::selection {
  color: #251a35;
  background: #e8ddf4;
}

:where(.distill-site main) a {
  color: var(--distill-accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

:where(.distill-site main) a:hover {
  color: var(--distill-accent-dark);
}

:where(.distill-site main) a:focus-visible,
:where(.distill-site main) summary:focus-visible {
  outline: 3px solid rgba(100, 84, 149, 0.28);
  outline-offset: 3px;
  border-radius: 2px;
}

.reading-progress {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  overflow: hidden;
  pointer-events: none;
}

.reading-progress__bar {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--distill-accent);
  transform: scaleX(0);
  transform-origin: 0 50%;
  will-change: transform;
}

.distill-post {
  overflow: clip;
}

.distill-title,
.distill-byline-shell,
.distill-grid {
  display: grid;
  width: min(1212px, calc(100% - 3rem));
  margin-right: auto;
  margin-left: auto;
  grid-template-columns: minmax(170px, 220px) minmax(0, 700px) minmax(170px, 220px);
  column-gap: 36px;
}

.distill-title {
  padding-top: clamp(3.75rem, 7vw, 5.5rem);
}

.distill-title > * {
  grid-column: 2;
}

.distill-kicker {
  display: flex;
  margin: 0 0 0.9rem;
  color: var(--distill-accent);
  font: 600 0.75rem/1.4 var(--distill-sans);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.distill-title h1 {
  max-width: 860px;
  margin: 0;
  color: #1e1c22;
  font-family: var(--distill-sans);
  font-size: clamp(2.55rem, 4vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.06;
  overflow-wrap: break-word;
}

.distill-dek {
  max-width: 680px;
  margin: 1.55rem 0 0;
  color: var(--distill-muted);
  font-family: var(--distill-serif);
  font-size: clamp(1.12rem, 2vw, 1.32rem);
  line-height: 1.55;
}

.distill-byline-shell {
  margin-top: clamp(2.8rem, 6vw, 4.5rem);
}

.distill-byline {
  display: grid;
  grid-column: 2;
  padding: 1.15rem 0 1.25rem;
  border-top: 1px solid var(--distill-rule);
  border-bottom: 1px solid var(--distill-rule);
  grid-template-columns: 1.6fr 1.7fr 1.05fr 0.9fr;
  gap: 1.35rem;
}

.distill-byline__item {
  min-width: 0;
}

.distill-byline__item h2 {
  margin: 0 0 0.35rem;
  color: var(--distill-faint);
  font: 600 0.69rem/1.25 var(--distill-sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.distill-byline__item p {
  margin: 0;
  color: var(--distill-text);
  font: 400 0.86rem/1.42 var(--distill-sans);
}

.distill-byline__item a {
  color: inherit;
  text-decoration-color: #b9b4c0;
}

.distill-grid {
  padding-top: 3.4rem;
}

.distill-toc {
  grid-column: 1;
  align-self: stretch;
  min-width: 0;
}

.distill-toc__panel {
  position: sticky;
  top: 5.35rem;
  max-height: calc(100vh - 7rem);
  padding-right: 1.35rem;
  border-right: 1px solid var(--distill-rule);
  overflow-y: auto;
  scrollbar-width: thin;
}

.distill-toc__panel summary {
  margin: 0 0 1rem;
  color: var(--distill-text);
  cursor: pointer;
  font: 600 0.76rem/1.3 var(--distill-sans);
  letter-spacing: 0.08em;
  list-style: none;
  text-transform: uppercase;
}

.distill-toc__panel summary::-webkit-details-marker {
  display: none;
}

.distill-toc__panel summary::after {
  margin-left: 0.45rem;
  color: var(--distill-faint);
  content: "−";
}

.distill-toc__panel:not([open]) summary::after {
  content: "+";
}

.distill-toc nav {
  display: grid;
  gap: 0.15rem;
}

.distill-toc a {
  display: block;
  padding: 0.31rem 0 0.31rem 0.7rem;
  border-left: 2px solid transparent;
  color: var(--distill-muted);
  font: 400 0.81rem/1.35 var(--distill-sans);
  text-decoration: none;
  transition: color 120ms ease, border-color 120ms ease;
}

.distill-toc a:hover,
.distill-toc a.is-active {
  border-left-color: var(--distill-accent);
  color: var(--distill-accent-dark);
}

.distill-toc a.toc-link--h3 {
  padding-left: 1.45rem;
  color: #88838d;
  font-size: 0.77rem;
}

.distill-article {
  grid-column: 2;
  min-width: 0;
  color: #302d33;
  font-family: var(--distill-sans);
  font-size: 1.08rem;
  line-height: 1.72;
}

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

.distill-article p,
.distill-article ul,
.distill-article ol,
.distill-article dl {
  margin-top: 0;
  margin-bottom: 1.35rem;
}

.distill-article ul,
.distill-article ol {
  padding-left: 1.55rem;
}

.distill-article li {
  margin-bottom: 0.42rem;
  padding-left: 0.18rem;
}

.distill-article h2,
.distill-article h3,
.distill-article h4,
.distill-article h5,
.distill-article h6 {
  color: #211f24;
  font-family: var(--distill-sans);
  font-weight: 600;
  letter-spacing: -0.018em;
  line-height: 1.2;
  scroll-margin-top: 5.5rem;
}

.distill-article h2 {
  margin: 3.6rem 0 1.15rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid var(--distill-rule);
  font-size: 1.78rem;
}

.distill-article h3 {
  margin: 2.6rem 0 0.9rem;
  font-size: 1.36rem;
}

.distill-article h4 {
  margin: 2rem 0 0.7rem;
  font-size: 1.08rem;
}

.distill-article strong,
.distill-article b {
  color: var(--distill-accent);
  font-weight: 700;
}

.distill-article a {
  text-decoration-color: rgba(100, 84, 149, 0.45);
}

.distill-article blockquote {
  margin: 2rem 0;
  padding: 0.15rem 0 0.15rem 1.2rem;
  border-left: 3px solid var(--distill-accent);
  color: #57515d;
  font-size: 1.03rem;
  font-style: italic;
}

.distill-article blockquote > :last-child {
  margin-bottom: 0;
}

.distill-article hr {
  width: 35%;
  margin: 3.5rem auto;
  border: 0;
  border-top: 1px solid var(--distill-rule);
}

.distill-article code,
.distill-article kbd,
.distill-article pre {
  font-family: var(--distill-mono);
}

.distill-article :not(pre) > code {
  padding: 0.12em 0.34em;
  border: 1px solid #e6e1e9;
  border-radius: 4px;
  color: #4d3c64;
  background: var(--distill-soft);
  font-size: 0.8em;
  overflow-wrap: anywhere;
}

.distill-article pre,
.distill-article .highlight {
  border-radius: 7px;
  background: #f6f4f7;
}

.distill-article .highlight {
  margin: 1.8rem 0;
  border: 1px solid #e7e3e9;
  overflow: hidden;
}

.distill-article pre {
  margin: 1.8rem 0;
  padding: 1rem 1.15rem;
  color: #332d39;
  font-size: 0.79rem;
  line-height: 1.62;
  overflow-x: auto;
  tab-size: 2;
}

.distill-article .highlight pre {
  margin: 0;
  border: 0;
  background: transparent;
}

.distill-article figure {
  margin: 2.5rem 0;
}

.distill-article img,
.distill-article video,
.distill-article iframe {
  display: block;
  max-width: 100%;
  height: auto;
  margin-right: auto;
  margin-left: auto;
}

.distill-article figcaption,
.distill-article .caption {
  margin-top: 0.75rem;
  color: var(--distill-muted);
  font: 400 0.82rem/1.5 var(--distill-sans);
}

.distill-article figcaption strong,
.distill-article .caption strong {
  color: #47424b;
}

.distill-article .l-page {
  position: relative;
  left: 50%;
  width: min(1050px, calc(100vw - 3rem));
  max-width: none;
  transform: translateX(-50%);
}

.distill-article .l-screen {
  position: relative;
  left: 50%;
  width: 100vw;
  max-width: none;
  transform: translateX(-50%);
}

.distill-article .aside,
.distill-article .margin-note {
  display: block;
  margin: 1.2rem 0;
  padding: 0.8rem 0 0.8rem 1rem;
  border-left: 2px solid #d9d4dd;
  color: var(--distill-muted);
  font: 400 0.79rem/1.48 var(--distill-sans);
}

.distill-article .equation {
  margin: 1.8rem 0;
  padding: 0.5rem 1.4rem;
  border-radius: 9px;
  background: var(--distill-equation);
  overflow-x: auto;
}

.distill-article mjx-container[jax="CHTML"][display="true"] {
  max-width: 100%;
  margin: 1.1em 0 !important;
  padding: 0.15rem 0;
  overflow-x: auto;
  overflow-y: hidden;
}

.distill-article details {
  margin: 1.7rem 0;
  padding: 0.8rem 1rem;
  border: 1px solid var(--distill-rule);
  border-radius: 7px;
  background: var(--distill-soft);
}

.distill-article details summary {
  color: var(--distill-accent-dark);
  cursor: pointer;
  font: 600 0.92rem/1.4 var(--distill-sans);
}

.distill-article details > :last-child {
  margin-bottom: 0;
}

d-cite {
  position: relative;
  display: inline-block;
  line-height: 1;
}

d-cite:not(.distill-cite--rendered)::after {
  position: relative;
  top: -0.12em;
  margin: 0 0.12em;
  color: var(--distill-accent);
  content: "[" attr(key) "]";
  font: 500 0.72em/1 var(--distill-sans);
}

d-cite .distill-cite__marker {
  position: relative;
  top: -0.28em;
  margin: 0 0.1em;
  color: var(--distill-accent);
  font: 600 0.73em/1 var(--distill-sans);
  white-space: nowrap;
}

d-cite .distill-cite__marker a {
  color: var(--distill-accent) !important;
  text-decoration: none;
}

d-cite .distill-cite__marker a:hover,
d-cite .distill-cite__marker a:focus-visible {
  color: var(--distill-accent-dark) !important;
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

d-cite .distill-cite__missing {
  color: #a13d55;
  cursor: help;
}

d-cite .distill-cite__popover {
  position: fixed;
  z-index: 10000;
  display: block;
  width: min(360px, calc(100vw - 24px));
  max-height: calc(100vh - 24px);
  padding: 0.85rem 1rem;
  border: 1px solid #dcd7e0;
  border-radius: 7px;
  opacity: 0;
  color: #3e3942;
  background: #fff;
  box-shadow: 0 8px 28px rgba(35, 27, 45, 0.16);
  font: 400 0.8rem/1.48 var(--distill-sans);
  overflow-y: auto;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 120ms ease, transform 120ms ease, visibility 120ms ease;
  visibility: hidden;
  white-space: normal;
}

d-cite.distill-cite--open .distill-cite__popover {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

d-cite .distill-cite__popover ol {
  margin: 0;
  padding-left: 1.1rem;
}

d-cite .distill-cite__popover li {
  margin: 0;
  padding-left: 0.2rem;
}

d-cite .distill-cite__popover li + li {
  margin-top: 0.65rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--distill-rule);
}

.distill-citation-list:not([hidden]) {
  display: block;
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--distill-rule);
  color: var(--distill-text);
  font-family: var(--distill-sans);
}

.distill-citation-list[hidden] {
  display: none;
}

.distill-citation-list h2 {
  margin: 0 0 1.35rem;
  padding: 0;
  border: 0;
  color: #211f24;
  font: 600 1.45rem/1.2 var(--distill-sans);
  letter-spacing: -0.018em;
}

.distill-citation-list .references {
  margin: 0;
  padding-left: 1.7rem;
}

.distill-citation-list .references li {
  margin-bottom: 1.15rem;
  padding-left: 0.3rem;
  color: var(--distill-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.distill-citation-list .references li::marker {
  color: var(--distill-accent);
  font-family: var(--distill-mono);
  font-size: 0.78rem;
}

.distill-citation-list .references .title {
  color: var(--distill-text);
  font-weight: 600;
}

.distill-citation-list .references .authors {
  color: #454049;
}

.distill-citation-list .references a {
  overflow-wrap: anywhere;
}

.distill-citation-list .reference-link {
  display: inline-block;
  margin-left: 0.3rem;
  padding: 0.05rem 0.35rem;
  border: 1px solid #dcd5e2;
  border-radius: 999px;
  font: 500 0.72rem/1.4 var(--distill-sans);
  text-decoration: none;
}

.distill-citation-list__error {
  margin: 0;
  padding: 0.75rem 0.9rem;
  border-left: 3px solid #a13d55;
  color: #7a3042;
  background: #faf1f3;
  font-size: 0.9rem;
}

d-bibliography {
  display: none;
}

@media print {
  d-cite .distill-cite__marker {
    color: #000;
  }

  d-cite .distill-cite__popover {
    display: none !important;
  }
}

.distill-table-wrap {
  max-width: 100%;
  margin: 2rem 0;
  overflow-x: auto;
}

.distill-article table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  font: 400 0.84rem/1.45 var(--distill-sans);
}

.distill-article th,
.distill-article td {
  padding: 0.6rem 0.72rem;
  border-bottom: 1px solid var(--distill-rule);
  text-align: left;
  vertical-align: top;
}

.distill-article th {
  color: #37323b;
  background: var(--distill-soft);
  font-weight: 600;
}

.distill-article .footnotes {
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--distill-rule);
  color: var(--distill-muted);
  font: 400 0.84rem/1.55 var(--distill-sans);
}

.distill-article .footnotes::before {
  display: block;
  margin-bottom: 1rem;
  color: var(--distill-text);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  content: "Notes";
}

.distill-post-nav {
  display: grid;
  max-width: 700px;
  margin: 5rem auto 0;
  padding: 1.35rem 0 0;
  border-top: 1px solid var(--distill-rule);
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: start;
  gap: 1rem;
}

.distill-post-nav a {
  text-decoration: none;
}

.distill-post-nav__post {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 0.25rem;
}

.distill-post-nav__post--next {
  text-align: right;
  grid-column: 3;
}

.distill-post-nav__post span {
  color: var(--distill-faint);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.distill-post-nav__post strong {
  color: var(--distill-text);
  font-size: 0.9rem;
  line-height: 1.35;
}

.distill-post-nav__all {
  padding: 0.35rem 0.72rem;
  border: 1px solid var(--distill-rule);
  border-radius: 999px;
  color: var(--distill-muted) !important;
  font-size: 0.78rem;
  white-space: nowrap;
  grid-column: 2;
}

.distill-footer {
  display: flex;
  max-width: 1120px;
  margin: 5.5rem auto 0;
  padding: 2.2rem 1.5rem 2.8rem;
  border-top: 1px solid var(--distill-rule);
  color: var(--distill-faint);
  font-size: 0.8rem;
  justify-content: space-between;
  gap: 1.5rem;
}

.distill-footer p {
  margin: 0;
}

.distill-footer a {
  color: var(--distill-muted);
  text-decoration: none;
}

/* Blog archive */
.blog-index {
  width: min(920px, calc(100% - 3rem));
  margin: 0 auto;
}

.blog-index__header {
  padding: clamp(4.5rem, 10vw, 8.5rem) 0 clamp(2.75rem, 6vw, 4.75rem);
  border-bottom: 1px solid var(--distill-rule);
}

.blog-index__header h1 {
  margin: 0;
  color: #1e1c22;
  font-size: clamp(3.4rem, 8vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.blog-index__intro {
  max-width: 590px;
  margin-top: 1.55rem;
  color: var(--distill-muted);
  font-family: var(--distill-serif);
  font-size: 1.15rem;
  line-height: 1.62;
}

.blog-index__intro > :last-child {
  margin-bottom: 0;
}

.blog-index__archive {
  padding-top: 3rem;
}

.blog-year {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 2rem;
}

.blog-year + .blog-year {
  margin-top: 3.5rem;
}

.blog-year > h2 {
  margin: 0;
  padding-top: 1.5rem;
  color: var(--distill-faint);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.blog-index__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-index__list > li {
  border-top: 1px solid var(--distill-rule);
}

.blog-index__list > li:last-child {
  border-bottom: 1px solid var(--distill-rule);
}

.blog-card {
  display: grid;
  padding: 1.5rem 0 1.7rem;
  color: inherit !important;
  text-decoration: none;
  grid-template-columns: 92px minmax(0, 1fr) 1.5rem;
  gap: 1.25rem;
}

.blog-card__meta {
  display: flex;
  padding-top: 0.24rem;
  color: var(--distill-faint);
  font-size: 0.73rem;
  line-height: 1.45;
  flex-direction: column;
  gap: 0.2rem;
}

.blog-card__body h3 {
  margin: 0;
  color: #29252d;
  font-size: 1.34rem;
  font-weight: 600;
  letter-spacing: -0.018em;
  line-height: 1.2;
  transition: color 120ms ease;
}

.blog-card:hover .blog-card__body h3 {
  color: var(--distill-accent);
}

.blog-card__body > p {
  max-width: 610px;
  margin: 0.65rem 0 0;
  color: var(--distill-muted);
  font-family: var(--distill-serif);
  font-size: 0.93rem;
  line-height: 1.55;
}

.blog-card__tags {
  display: flex;
  margin-top: 0.8rem;
  flex-wrap: wrap;
  gap: 0.38rem;
}

.blog-card__tags span {
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  color: #665c6d;
  background: var(--distill-soft);
  font-size: 0.67rem;
  line-height: 1.3;
}

.blog-card__arrow {
  color: var(--distill-faint);
  font-size: 1rem;
  transition: color 120ms ease, transform 120ms ease;
}

.blog-card:hover .blog-card__arrow {
  color: var(--distill-accent);
  transform: translate(2px, -2px);
}

.blog-index__empty {
  padding: 3rem;
  border: 1px solid var(--distill-rule);
  border-radius: 8px;
  text-align: center;
}

.blog-index__empty h2 {
  margin-top: 0;
}

@media (min-width: 1200px) {
  .distill-article .aside,
  .distill-article .margin-note {
    float: right;
    clear: right;
    width: 205px;
    margin: 0.35rem -250px 1.25rem 1.8rem;
  }
}

@media (max-width: 1199px) {
  .distill-title,
  .distill-byline-shell,
  .distill-grid {
    display: block;
    width: min(748px, calc(100% - 3rem));
    margin-right: auto;
    margin-left: auto;
  }

  .distill-title {
    padding-top: 4.5rem;
  }

  .distill-byline {
    grid-template-columns: 1.45fr 1.5fr 1fr 0.8fr;
  }

  .distill-grid {
    padding-top: 2rem;
  }

  .distill-toc__panel {
    position: static;
    max-height: none;
    margin-bottom: 2.6rem;
    padding: 0.9rem 1rem;
    border: 1px solid var(--distill-rule);
    border-radius: 7px;
    background: var(--distill-soft);
    overflow: visible;
  }

  .distill-toc__panel summary {
    margin: 0;
  }

  .distill-toc__panel[open] summary {
    margin-bottom: 0.65rem;
  }

  .distill-toc nav {
    grid-template-columns: 1fr;
  }

  .distill-toc a.toc-link--h3 {
    padding-left: 0.7rem;
  }
}

@media (max-width: 680px) {
  .distill-title,
  .distill-byline-shell,
  .distill-grid {
    width: min(100% - 2rem, 748px);
  }

  .distill-title {
    padding-top: 3.4rem;
  }

  .distill-title h1 {
    font-size: clamp(2.35rem, 12vw, 3.25rem);
    line-height: 1.02;
  }

  .distill-dek {
    margin-top: 1.15rem;
    font-size: 1.05rem;
  }

  .distill-byline-shell {
    margin-top: 2.6rem;
  }

  .distill-byline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.25rem;
  }

  .distill-byline__item--authors,
  .distill-byline__item--affiliation {
    grid-column: span 2;
  }

  .distill-toc nav {
    grid-template-columns: 1fr;
  }

  .distill-article {
    font-size: 1.01rem;
    line-height: 1.68;
  }

  .distill-article h2 {
    margin-top: 3rem;
    font-size: 1.53rem;
  }

  .distill-article h3 {
    font-size: 1.25rem;
  }

  .distill-article .equation {
    margin-right: -0.35rem;
    margin-left: -0.35rem;
    padding: 0.35rem 0.75rem;
  }

  .distill-post-nav {
    width: calc(100% - 2rem);
    grid-template-columns: 1fr auto;
  }

  .distill-post-nav__post--previous,
  .distill-post-nav__post--next {
    grid-column: 1;
  }

  .distill-post-nav__all {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
  }

  .distill-post-nav__post--next {
    text-align: left;
  }

  .distill-footer {
    margin-top: 4rem;
    padding: 1.8rem 1rem 2.2rem;
    flex-direction: column;
    gap: 0.45rem;
  }

  .blog-index {
    width: calc(100% - 2rem);
  }

  .blog-index__header {
    padding-top: 4.2rem;
  }

  .blog-year {
    display: block;
  }

  .blog-year > h2 {
    padding: 0 0 0.7rem;
  }

  .blog-card {
    grid-template-columns: minmax(0, 1fr) 1rem;
    gap: 0.8rem;
  }

  .blog-card__meta {
    grid-column: 1 / -1;
    flex-direction: row;
    gap: 0.8rem;
  }

  .blog-card__body h3 {
    font-size: 1.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .masthead,
  .distill-toc,
  .distill-post-nav,
  .distill-footer {
    display: none !important;
  }

  .distill-title,
  .distill-byline-shell,
  .distill-grid {
    display: block;
    width: 100%;
  }

  .distill-title {
    padding-top: 0;
  }

  .distill-title h1 {
    font-size: 36pt;
  }

  .distill-article {
    color: #000;
    font-size: 11pt;
  }

  .distill-article a {
    color: inherit;
  }
}
