/* Editorial Salmon — hand-maintained shared site system */

@font-face {
  font-family: "Newsreader";
  src: url("../fonts/Newsreader/newsreader-latin-ext-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: "Newsreader";
  src: url("../fonts/Newsreader/newsreader-latin-ext-variable-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/inter-latin-ext-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Roboto Mono";
  src: url("../fonts/Roboto_Mono/roboto-mono-latin-ext-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 700;
  font-display: swap;
}

:root {
  --font-editorial: "Newsreader", Georgia, "Times New Roman", serif;
  --font-ui: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "Roboto Mono", "SFMono-Regular", Consolas, monospace;
  --shell-width: 960px;
  --wide-shell-width: 1320px;
  --reading-width: 66ch;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);

  --light-canvas: #efa58f;
  --light-surface: #fff8ef;
  --light-surface-muted: #f5e5d9;
  --light-ink: #241a18;
  --light-ink-muted: #6d5048;
  --light-accent: #9c382a;
  --light-person-name: #8a315c;
  --light-selection: rgb(156 56 42 / 28%);
  --light-rule: #b97867;
  --light-focus: #0c5a52;
  --light-media: #ead8cb;

  --dark-canvas: #140f0e;
  --dark-surface: #211a18;
  --dark-surface-muted: #2d2320;
  --dark-ink: #f8eee5;
  --dark-ink-muted: #c7afa6;
  --dark-accent: #ff9d86;
  --dark-person-name: #f2a3c4;
  --dark-selection: rgb(255 157 134 / 32%);
  --dark-rule: #6f4b43;
  --dark-focus: #73d1c1;
  --dark-media: #181311;

  /* Keep canvas colors synchronized with the pre-paint and runtime theme scripts. */
}

html[data-theme="light"] {
  color-scheme: light;
  --canvas: var(--light-canvas);
  --surface: var(--light-surface);
  --surface-muted: var(--light-surface-muted);
  --ink: var(--light-ink);
  --ink-muted: var(--light-ink-muted);
  --accent: var(--light-accent);
  --person-name: var(--light-person-name);
  --selection: var(--light-selection);
  --rule: var(--light-rule);
  --focus: var(--light-focus);
  --media: var(--light-media);
}

html[data-theme="dark"] {
  color-scheme: dark;
  --canvas: var(--dark-canvas);
  --surface: var(--dark-surface);
  --surface-muted: var(--dark-surface-muted);
  --ink: var(--dark-ink);
  --ink-muted: var(--dark-ink-muted);
  --accent: var(--dark-accent);
  --person-name: var(--dark-person-name);
  --selection: var(--dark-selection);
  --rule: var(--dark-rule);
  --focus: var(--dark-focus);
  --media: var(--dark-media);
}

@media (prefers-color-scheme: dark) {
  html[data-theme="auto"] {
    color-scheme: dark;
    --canvas: var(--dark-canvas);
    --surface: var(--dark-surface);
    --surface-muted: var(--dark-surface-muted);
    --ink: var(--dark-ink);
    --ink-muted: var(--dark-ink-muted);
    --accent: var(--dark-accent);
    --person-name: var(--dark-person-name);
    --selection: var(--dark-selection);
    --rule: var(--dark-rule);
    --focus: var(--dark-focus);
    --media: var(--dark-media);
  }
}

@media (prefers-color-scheme: light) {
  html[data-theme="auto"] {
    color-scheme: light;
    --canvas: var(--light-canvas);
    --surface: var(--light-surface);
    --surface-muted: var(--light-surface-muted);
    --ink: var(--light-ink);
    --ink-muted: var(--light-ink-muted);
    --accent: var(--light-accent);
    --person-name: var(--light-person-name);
    --selection: var(--light-selection);
    --rule: var(--light-rule);
    --focus: var(--light-focus);
    --media: var(--light-media);
  }
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--canvas);
  scrollbar-gutter: stable;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  padding: clamp(1rem, 3vw, 2.75rem);
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-editorial);
  font-size: clamp(1.13rem, 1.06rem + 0.25vw, 1.25rem);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--selection);
  color: inherit;
}

.site-shell {
  width: 100%;
  min-height: calc(100vh - clamp(2rem, 6vw, 5.5rem));
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--ink);
}

.site-shell--standard {
  max-width: var(--shell-width);
}

.site-shell--wide {
  max-width: var(--wide-shell-width);
}

.skip-link {
  position: fixed;
  z-index: 20;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 0.9rem;
  transform: translateY(-160%);
  background: var(--focus);
  color: var(--surface);
  font: 700 0.8rem/1 var(--font-ui);
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

a {
  color: var(--accent);
  text-decoration-color: currentColor;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
  transition: color 180ms ease, text-decoration-thickness 180ms ease;
}

a:hover {
  text-decoration-thickness: 0.16em;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

#main-content:focus {
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--ink);
  font-family: var(--font-editorial);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 9vw, 5.8rem);
}

h2 {
  margin: 2.75em 0 0.65em;
  font-size: clamp(1.8rem, 4vw, 2.65rem);
}

h3 {
  margin: 2.25em 0 0.55em;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  line-height: 1.18;
}

h4,
h5,
h6 {
  margin: 2em 0 0.5em;
  font-size: 1.15rem;
  line-height: 1.25;
}

h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

p,
ul,
ol {
  margin-top: 0;
  margin-bottom: 1.2em;
}

li {
  margin: 0.32em 0;
}

strong {
  font-weight: 650;
}

hr {
  height: 0;
  margin: 3.5rem 0;
  border: 0;
  border-top: 1px solid var(--rule);
}

mark,
*:target {
  background: var(--surface-muted);
  color: var(--ink);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Masthead */
.site-header {
  min-height: 5.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem clamp(1.25rem, 5vw, 3.5rem);
  border-bottom: 1px solid var(--ink);
  font-family: var(--font-ui);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-brand__mark {
  display: block;
  width: 2.8rem;
  height: 2.35rem;
  flex: 0 0 auto;
  background-color: var(--ink);
  -webkit-mask: url("../favicon/frog-header-mark.png") center / contain no-repeat;
  mask: url("../favicon/frog-header-mark.png") center / contain no-repeat;
  transform: rotate(-3deg);
  transition: transform 180ms var(--ease-out);
}

.site-brand:hover .site-brand__mark,
.site-brand:focus-visible .site-brand__mark {
  transform: translateY(-1px) rotate(2deg) scale(1.04);
}

.site-header__actions,
.site-nav ul {
  display: flex;
  align-items: center;
}

.site-header__actions {
  gap: clamp(0.5rem, 2.5vw, 1.5rem);
}

.site-nav ul {
  gap: clamp(0.85rem, 3vw, 1.75rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav li {
  margin: 0;
}

.site-nav a {
  position: relative;
  display: inline-block;
  padding: 0.4rem 0;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: lowercase;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.15rem;
  left: 0;
  height: 2px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms var(--ease-out);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.theme-toggle {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  flex: 0 0 auto;
  place-items: center;
  padding: 0;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms var(--ease-out);
}

.theme-toggle:hover {
  transform: rotate(8deg);
  background: var(--ink);
  color: var(--surface);
}

.theme-toggle__icon {
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.5;
  transition: transform 160ms var(--ease-out);
}

html[data-theme="dark"] .theme-toggle__icon {
  transform: rotate(30deg);
}

html[data-theme="dark"] .theme-toggle__rays {
  opacity: 0;
}

.theme-toggle__rays {
  transition: opacity 160ms ease;
}

/* Page structure */
.page-content {
  width: 100%;
  padding: clamp(3.75rem, 9vw, 7rem) clamp(1.25rem, 7vw, 5.25rem);
}

.page-intro {
  padding-bottom: clamp(3rem, 8vw, 5.25rem);
  border-bottom: 1px solid var(--rule);
}

.page-intro > p:last-child {
  max-width: 33ch;
  margin: 1.3rem 0 0;
  color: var(--ink-muted);
  font-size: clamp(1.2rem, 3vw, 1.55rem);
  line-height: 1.38;
}

.eyebrow {
  margin-bottom: 1.25rem;
  color: var(--accent);
  font: 650 0.72rem/1.3 var(--font-ui);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-intro h1 {
  max-width: 8ch;
  font-size: clamp(3.4rem, 10vw, 6.4rem);
}

.home-deck {
  max-width: 31ch;
  margin: clamp(2.5rem, 8vw, 5rem) 0;
  font-size: clamp(1.4rem, 3vw, 1.72rem);
  line-height: 1.42;
}

.home-deck p:last-child {
  margin-bottom: 0;
}

.home-section {
  margin-top: clamp(4rem, 10vw, 7rem);
}

.section-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--ink);
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3rem);
}

.section-heading h2 a {
  text-decoration: none;
}

.section-heading span {
  color: var(--ink-muted);
  font: 500 0.68rem/1.2 var(--font-ui);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Post indexes */
.post-index {
  margin-top: clamp(3rem, 8vw, 5rem);
}

.post-index > ul,
.home-section > ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.post-list-item {
  display: grid;
  grid-template-columns: 9rem minmax(0, 1fr);
  align-items: baseline;
  gap: 1.25rem;
  margin: 0;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--rule);
}

.post-list-meta {
  display: block;
}

.post-list-meta .home-date {
  color: var(--ink-muted);
  font: 500 0.68rem/1.4 var(--font-mono);
  letter-spacing: 0.02em;
}

.post-kind {
  display: inline-block;
  margin-left: 0.7em;
  padding-left: 0.7em;
  border-left: 1px solid var(--rule);
  color: var(--accent);
  font: 650 0.62rem/1.35 var(--font-ui);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  vertical-align: 0.12em;
  white-space: nowrap;
}

.post-list-item > a {
  position: relative;
  padding-right: 1.5rem;
  color: var(--ink);
  font-size: clamp(1.12rem, 2.4vw, 1.35rem);
  line-height: 1.25;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms var(--ease-out);
}

.post-list-item > a::after {
  position: absolute;
  right: 0.25rem;
  content: "→";
  color: var(--accent);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 180ms ease, transform 180ms var(--ease-out);
}

.post-list-item:hover > a,
.post-list-item:focus-within > a {
  color: var(--accent);
  transform: translateX(4px);
}

.post-list-item:hover > a::after,
.post-list-item:focus-within > a::after {
  opacity: 1;
  transform: translateX(0);
}

.see-more {
  margin-top: 1.25rem;
  text-align: right;
}

.see-more a {
  font: 650 0.78rem/1.4 var(--font-ui);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Long-form posts */
.post {
  max-width: var(--reading-width);
  margin: 0 auto;
}

.post-header {
  margin-bottom: clamp(3rem, 9vw, 5.5rem);
  padding-bottom: clamp(2rem, 5vw, 3rem);
  border-bottom: 1px solid var(--ink);
}

.post-title {
  font-size: clamp(2.8rem, 8vw, 5.25rem);
  overflow-wrap: anywhere;
}

.post-date {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 1.5rem 0 0;
  color: var(--ink-muted);
  font: 500 0.68rem/1.6 var(--font-mono);
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.post-body > p:first-child:first-letter {
  float: left;
  margin: 0.08em 0.11em 0 0;
  color: var(--accent);
  font-size: 4.4em;
  font-weight: 600;
  line-height: 0.76;
}

.post-body img,
.post-body iframe {
  margin: 1.5rem 0;
}

blockquote {
  margin: 2.25rem 0;
  padding: 0.25rem 0 0.25rem clamp(1.25rem, 4vw, 2rem);
  border-left: 4px solid var(--accent);
  color: var(--ink-muted);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-style: italic;
  line-height: 1.48;
}

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

figure {
  margin: 2.5rem 0;
}

figcaption {
  margin-top: 0.75rem;
  color: var(--ink-muted);
  font: 500 0.72rem/1.5 var(--font-ui);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  background-color: var(--media);
}

.externally-sized-image {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: contain;
}

.in-text-figure {
  display: flex;
  align-items: flex-start;
  gap: clamp(1rem, 4vw, 2rem);
}

.in-text-figure img {
  max-width: min(42%, 18rem);
}

iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 1px solid var(--rule);
}

table {
  display: block;
  width: 100%;
  margin: 2rem 0;
  overflow-x: auto;
  border-collapse: collapse;
  font-family: var(--font-ui);
  font-size: 0.85rem;
}

th,
td {
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--rule);
  text-align: left;
}

th {
  background: var(--surface-muted);
}

pre,
code {
  font-family: var(--font-mono);
  font-size: 0.84em;
}

pre {
  margin: 2rem 0;
  padding: 1.15rem;
  overflow-x: auto;
  border: 1px solid var(--rule);
  background: var(--surface-muted);
}

p code,
li code {
  padding: 0.12em 0.32em;
  background: var(--surface-muted);
  color: var(--accent);
}

.language-switcher {
  margin-top: -3.5rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--rule);
  font-family: var(--font-ui);
  font-size: 0.82rem;
}

.language-switcher p {
  margin-bottom: 0.4rem;
  color: var(--ink-muted);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* About and portfolio */
.page-about .person-name-link {
  color: var(--person-name);
}

.page-about .post-body h2 {
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--ink);
}

.page-about .post-body h3 {
  margin-bottom: 0.25rem;
}

.page-about .post-body h3 + p {
  margin-bottom: 0.5rem;
  color: var(--accent);
  font: 600 0.72rem/1.5 var(--font-mono);
}

.page-about .post-body h3 + p + ul {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--rule);
}

.portfolio-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 6vw, 3rem);
  padding: clamp(2rem, 6vw, 3.5rem) 0;
  border-top: 1px solid var(--rule);
}

.portfolio-item:first-child {
  margin-top: 1rem;
}

.portfolio-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--media);
}

.portfolio-item h2 {
  margin: 0 0 0.65rem;
}

.portfolio-item p:last-child {
  margin-bottom: 0;
}

.page-about .post-body > p:first-child:first-letter,
.page-offline .post-body > p:first-child:first-letter {
  float: none;
  margin: 0;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

/* Photo essay */
.photo-essay {
  padding-right: clamp(1.25rem, 6vw, 5rem);
  padding-left: clamp(1.25rem, 6vw, 5rem);
}

.photo-essay > h1 {
  max-width: 10ch;
  margin-bottom: 1.25rem;
  font-size: clamp(3.5rem, 10vw, 8.5rem);
}

.gear {
  margin-bottom: clamp(4rem, 10vw, 8rem);
  color: var(--ink-muted);
  font: 550 0.7rem/1.5 var(--font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.photo-essay figure {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(10rem, 15rem);
  align-items: end;
  gap: 1rem clamp(1.5rem, 4vw, 3rem);
  margin: clamp(4rem, 12vw, 9rem) 0;
}

.photo-essay figure a {
  display: block;
  background: var(--media);
}

.photo-essay figure img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
}

.photo-essay figcaption {
  margin: 0;
  padding-top: 0.75rem;
  border-top: 1px solid var(--rule);
}

/* Footer and utilities */
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem clamp(1.25rem, 5vw, 3.5rem);
  border-top: 1px solid var(--ink);
  font-family: var(--font-ui);
}

.site-footer__colophon {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
}

ul.horizontal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.horizontal-list li {
  margin: 0;
}

ul.horizontal-list li a {
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.error-page {
  min-height: 50vh;
  display: grid;
  align-content: center;
  justify-items: start;
}

.error-page h1 {
  color: var(--accent);
  font-size: clamp(6rem, 22vw, 12rem);
}

.error-page p {
  max-width: 34ch;
}

/* Turbo and theme transitions */
.turbo-progress-bar {
  display: none !important;
}

body.content-changing .page-content {
  opacity: 0.35;
  transform: translateY(4px);
}

.page-content {
  transition: opacity 140ms ease, transform 140ms var(--ease-out);
}

html.transition body,
html.transition .site-shell,
html.transition .site-header,
html.transition .site-footer,
html.transition a,
html.transition button,
html.transition pre,
html.transition code,
html.transition blockquote {
  transition-property: background-color, border-color, color;
  transition-duration: 180ms;
  transition-timing-function: ease;
}

@media (max-width: 760px) {
  body {
    padding: 0;
  }

  .site-shell {
    min-height: 100vh;
    border-width: 0;
  }

  .site-header {
    min-height: 4.5rem;
  }

  .site-brand__name {
    display: none;
  }

  .page-content {
    padding-top: 3.5rem;
    padding-bottom: 4.5rem;
  }

  .page-content--post {
    padding-right: clamp(1rem, 4vw, 1.25rem);
    padding-left: clamp(1rem, 4vw, 1.25rem);
  }

  .post-list-item {
    grid-template-columns: 1fr;
    gap: 0.3rem;
    padding: 1rem 0;
  }

  .post-list-item > a {
    padding-right: 1.25rem;
  }

  .portfolio-item,
  .photo-essay figure {
    grid-template-columns: 1fr;
  }

  .photo-essay figure {
    align-items: start;
  }

  .photo-essay figcaption {
    max-width: 34rem;
  }

  .in-text-figure {
    flex-direction: column;
  }

  .in-text-figure img {
    max-width: min(75%, 20rem);
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .site-header {
    gap: 0.5rem;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .site-brand__mark {
    width: 2.55rem;
    height: 2.1rem;
  }

  .site-nav ul {
    gap: 0.7rem;
  }

  .site-nav a {
    font-size: 0.7rem;
  }

  .theme-toggle {
    width: 2.2rem;
    height: 2.2rem;
  }

  .section-heading span {
    display: none;
  }

  .post-date {
    display: block;
  }
}

@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;
  }

  .post-list-item:hover > a,
  .post-list-item:focus-within > a,
  .site-brand:hover .site-brand__mark,
  .site-brand:focus-visible .site-brand__mark,
  .theme-toggle:hover,
  body.content-changing .page-content {
    transform: none;
  }

  .site-brand:hover .site-brand__mark,
  .site-brand:focus-visible .site-brand__mark {
    transform: rotate(-3deg);
  }
}

@media print {
  html,
  body {
    background: #fff;
  }

  body {
    padding: 0;
    color: #111;
    font-size: 11pt;
    line-height: 1.5;
  }

  .site-shell {
    max-width: none;
    border: 0;
  }

  .site-header,
  .site-footer,
  .theme-toggle,
  .skip-link {
    display: none;
  }

  .page-content {
    padding: 0;
  }

  .post {
    max-width: 65ch;
  }

  a {
    color: inherit;
  }

  img,
  blockquote,
  pre {
    break-inside: avoid;
  }
}
