:root {
  --paper: oklch(0.91 0.022 102);
  --paper-soft: oklch(0.96 0.013 96);
  --ink: oklch(0.17 0.028 150);
  --ink-strong: oklch(0.11 0.018 140);
  --muted: oklch(0.41 0.035 128);
  --line: oklch(0.69 0.03 105);
  --bronze: oklch(0.48 0.12 42);
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", Arial, sans-serif;
  font-synthesis: none;
  text-rendering: geometricPrecision;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background:
    linear-gradient(90deg, oklch(0.57 0.03 105 / 0.18) 1px, transparent 1px) center / 24vw 100%,
    var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

a {
  text-underline-offset: 3px;
}

img {
  display: block;
  max-width: 100%;
}

.wy-figure,
.wy-proof-strip figure {
  margin: 24px 0 0;
  border: 1px solid var(--line);
  background: #fbf8ec;
}

.wy-figure img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.wy-figure figcaption,
.wy-proof-strip figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.55;
}

.wy-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.wy-proof-strip figure {
  margin-top: 0;
}

.wy-proof-strip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

@media (max-width: 820px) {
  .wy-proof-strip {
    grid-template-columns: 1fr;
  }
}
