@charset "UTF-8";

/* node_modules/baguettebox.js/dist/baguetteBox.min.css */
#baguetteBox-overlay {
  display: none;
  opacity: 0;
  position: fixed;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000000;
  background-color: #222;
  background-color: rgba(0, 0, 0, .8);
  -webkit-transition: opacity .5s ease;
  transition: opacity .5s ease;
}
#baguetteBox-overlay.visible {
  opacity: 1;
}
#baguetteBox-overlay .full-image {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
}
#baguetteBox-overlay .full-image figure {
  display: inline;
  margin: 0;
  height: 100%;
}
#baguetteBox-overlay .full-image img {
  display: inline-block;
  width: auto;
  height: auto;
  max-height: 100%;
  max-width: 100%;
  vertical-align: middle;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, .6);
  -moz-box-shadow: 0 0 8px rgba(0, 0, 0, .6);
  box-shadow: 0 0 8px rgba(0, 0, 0, .6);
}
#baguetteBox-overlay .full-image figcaption {
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  line-height: 1.8;
  white-space: normal;
  color: #ccc;
  background-color: #000;
  background-color: rgba(0, 0, 0, .6);
  font-family: sans-serif;
}
#baguetteBox-overlay .full-image:before {
  content: "";
  display: inline-block;
  height: 50%;
  width: 1px;
  margin-right: -1px;
}
#baguetteBox-slider {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  white-space: nowrap;
  -webkit-transition: left .4s ease, -webkit-transform .4s ease;
  transition: left .4s ease, -webkit-transform .4s ease;
  transition: left .4s ease, transform .4s ease;
  transition:
    left .4s ease,
    transform .4s ease,
    -webkit-transform .4s ease,
    -moz-transform .4s ease;
}
#baguetteBox-slider.bounce-from-right {
  -webkit-animation: bounceFromRight .4s ease-out;
  animation: bounceFromRight .4s ease-out;
}
#baguetteBox-slider.bounce-from-left {
  -webkit-animation: bounceFromLeft .4s ease-out;
  animation: bounceFromLeft .4s ease-out;
}
@-webkit-keyframes bounceFromRight {
  0%, 100% {
    margin-left: 0;
  }
  50% {
    margin-left: -30px;
  }
}
@keyframes bounceFromRight {
  0%, 100% {
    margin-left: 0;
  }
  50% {
    margin-left: -30px;
  }
}
@-webkit-keyframes bounceFromLeft {
  0%, 100% {
    margin-left: 0;
  }
  50% {
    margin-left: 30px;
  }
}
@keyframes bounceFromLeft {
  0%, 100% {
    margin-left: 0;
  }
  50% {
    margin-left: 30px;
  }
}
.baguetteBox-button#next-button,
.baguetteBox-button#previous-button {
  top: 50%;
  top: calc(50% - 30px);
  width: 44px;
  height: 60px;
}
.baguetteBox-button {
  position: absolute;
  cursor: pointer;
  outline: 0;
  padding: 0;
  margin: 0;
  border: 0;
  -moz-border-radius: 15%;
  border-radius: 15%;
  background-color: #323232;
  background-color: rgba(50, 50, 50, .5);
  color: #ddd;
  font: 1.6em sans-serif;
  -webkit-transition: background-color .4s ease;
  transition: background-color .4s ease;
}
.baguetteBox-button:focus,
.baguetteBox-button:hover {
  background-color: rgba(50, 50, 50, .9);
}
.baguetteBox-button#next-button {
  right: 2%;
}
.baguetteBox-button#previous-button {
  left: 2%;
}
.baguetteBox-button#close-button {
  top: 20px;
  right: 2%;
  right: calc(2% + 6px);
  width: 30px;
  height: 30px;
}
.baguetteBox-button svg {
  position: absolute;
  left: 0;
  top: 0;
}
.baguetteBox-spinner {
  width: 40px;
  height: 40px;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -20px;
  margin-left: -20px;
}
.baguetteBox-double-bounce1,
.baguetteBox-double-bounce2 {
  width: 100%;
  height: 100%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-color: #fff;
  opacity: .6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: bounce 2s infinite ease-in-out;
  animation: bounce 2s infinite ease-in-out;
}
.baguetteBox-double-bounce2 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
@-webkit-keyframes bounce {
  0%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes bounce {
  0%, 100% {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
  }
}

/* frontend/styles/index.css */
@font-face {
  font-display: swap;
  font-family: "et-book";
  font-style: normal;
  font-weight: normal;
  font-variant-ligatures: normal;
  src: url(/font/et-book-ot-roman.woff2) format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "et-book";
  font-style: italic;
  font-weight: normal;
  font-variant-ligatures: normal;
  src: url(/font/et-book-ot-italic.woff2) format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "et-book";
  font-style: normal;
  font-weight: bold;
  font-variant-ligatures: normal;
  src: url(/font/et-book-ot-bold.woff2) format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "et-book-roman-old-style";
  font-style: normal;
  font-weight: normal;
  src: url(/font/et-book-roman-old-style-figures.woff2) format("woff2");
}
* {
  box-sizing: border-box;
}
html {
  font-size: 15px;
  hanging-punctuation: first last;
}
body {
  background-color: #fffff8;
  color: #111;
  counter-reset: sidenote-counter;
  font-family:
    et-book,
    Palatino,
    "Palatino Linotype",
    "Palatino LT STD",
    "Book Antiqua",
    Georgia,
    serif;
  margin-left: auto;
  margin-right: auto;
  max-width: 90em;
  padding-left: 1em;
  padding-right: 1em;
}
@media (prefers-color-scheme: dark) {
  body {
    background-color: #000;
    color: #efefef;
  }
  html {
    background-color: #000;
  }
  figure > svg path {
    stroke: #fff;
  }
  figure > svg text {
    fill: #efefef;
  }
}
h1 {
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1.125;
  margin-bottom: 1.5rem;
  margin-top: 3rem;
}
h2 {
  font-size: 2.2rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.152;
  margin-bottom: 1.4rem;
  margin-top: 2.1rem;
}
h3 {
  font-size: 1.7rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.138;
  margin-bottom: 1.4rem;
  margin-top: 2rem;
}
hr {
  border-top: 1px solid #ccc;
  border: 0;
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
  width: 63%;
}
p.subtitle {
  display: block;
  font-size: 1.8rem;
  font-style: italic;
  line-height: 1;
  margin-bottom: 1rem;
  margin-top: 1rem;
}
.numeral {
  font-family: et-book-roman-old-style;
}
.danger {
  color: red;
}
header {
  display: grid;
}
article {
  padding: 5rem 0rem;
}
section {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
section > ul {
  margin-top: 0;
}
section > h2 {
  margin-top: 1rem;
}
p,
dl,
ol,
ul {
  font-size: 1.4rem;
  line-height: 2rem;
}
ol ol {
  list-style-type: lower-latin;
}
ol ol ol {
  list-style-type: lower-roman;
}
p {
  margin-bottom: 1.4rem;
  margin-top: 1.4rem;
  padding-right: 0;
  vertical-align: baseline;
}
hr {
  border-top: 1px solid #efefef;
}
div.epigraph {
  margin: 5em 0;
}
main > h1 + blockquote,
div.epigraph > blockquote {
  margin-bottom: 3em;
  margin-top: 3em;
}
section > blockquote {
  margin-bottom: 1.4em;
  margin-top: 1.4em;
}
main > h1 + blockquote,
section > blockquote,
section > blockquote + dl dt,
div.epigraph > blockquote,
div.epigraph > blockquote > p {
  font-style: italic;
}
div.epigraph > blockquote > footer {
  font-style: normal;
}
div.epigraph > blockquote > footer > cite {
  font-style: italic;
}
blockquote {
  font-size: 1.4rem;
}
blockquote p {
  margin-right: 40px;
  width: 63%;
}
blockquote footer {
  font-size: 1.1rem;
  text-align: right;
  width: 63%;
}
section > p,
section > footer,
section > table {
  width: 63%;
}
section > dl,
section > ol,
section > ul {
  width: 63%;
}
li:not(:first-child) {
  margin-top: 0.25rem;
}
dt:not(:first-child) {
  margin-top: 1rem;
}
figure {
  border: 0;
  font-size: 100%;
  font: inherit;
  margin: 0 0 3em 0;
  -webkit-margin-end: 0;
  -webkit-margin-start: 0;
  max-width: 63%;
  padding: 0;
  vertical-align: baseline;
}
figcaption {
  clear: right;
  float: right;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 0;
  margin-top: 0;
  max-width: 40%;
  position: relative;
  vertical-align: baseline;
}
figure.fullwidth figcaption {
  margin-right: 24%;
}
a:link,
a:visited {
  color: inherit;
}
.no-tufte-underline:link {
  background: unset;
  text-shadow: unset;
}
a:link,
.tufte-underline,
.hover-tufte-underline:hover {
  background:
    -webkit-linear-gradient(#fffff8, #fffff8),
    -webkit-linear-gradient(#fffff8, #fffff8),
    -webkit-linear-gradient(currentColor, currentColor);
  background:
    linear-gradient(#fffff8, #fffff8),
    linear-gradient(#fffff8, #fffff8),
    linear-gradient(currentColor, currentColor);
  background-position:
    0% 93%,
    100% 93%,
    0% 93%;
  -webkit-background-size:
    0.05em 1px,
    0.05em 1px,
    1px 1px;
  -moz-background-size:
    0.05em 1px,
    0.05em 1px,
    1px 1px;
  background-size:
    0.05em 1px,
    0.05em 1px,
    1px 1px;
  background-repeat:
    no-repeat,
    no-repeat,
    repeat-x;
  text-decoration: none;
  text-shadow:
    0.03em 0 #fffff8,
    -0.03em 0 #fffff8,
    0 0.03em #fffff8,
    0 -0.03em #fffff8,
    0.06em 0 #fffff8,
    -0.06em 0 #fffff8,
    0.09em 0 #fffff8,
    -0.09em 0 #fffff8,
    0.12em 0 #fffff8,
    -0.12em 0 #fffff8,
    0.15em 0 #fffff8,
    -0.15em 0 #fffff8;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  a:link,
  .tufte-underline,
  .hover-tufte-underline:hover {
    background-position-y:
      87%,
      87%,
      87%;
  }
}
@media (prefers-color-scheme: dark) {
  a:link,
  .tufte-underline,
  .hover-tufte-underline:hover {
    text-shadow:
      0.03em 0 #151515,
      -0.03em 0 #151515,
      0 0.03em #151515,
      0 -0.03em #151515,
      0.06em 0 #151515,
      -0.06em 0 #151515,
      0.09em 0 #151515,
      -0.09em 0 #151515,
      0.12em 0 #151515,
      -0.12em 0 #151515,
      0.15em 0 #151515,
      -0.15em 0 #151515;
  }
}
a:link::selection,
a:link::-moz-selection {
  background: #b4d5fe;
  text-shadow:
    0.03em 0 #b4d5fe,
    -0.03em 0 #b4d5fe,
    0 0.03em #b4d5fe,
    0 -0.03em #b4d5fe,
    0.06em 0 #b4d5fe,
    -0.06em 0 #b4d5fe,
    0.09em 0 #b4d5fe,
    -0.09em 0 #b4d5fe,
    0.12em 0 #b4d5fe,
    -0.12em 0 #b4d5fe,
    0.15em 0 #b4d5fe,
    -0.15em 0 #b4d5fe;
}
img {
  max-width: 100%;
}
.sidenote,
.marginnote {
  clear: right;
  float: right;
  font-size: 1.1rem;
  line-height: 1.3;
  margin-bottom: 0;
  margin-right: -60%;
  margin-top: 0.3rem;
  position: relative;
  vertical-align: baseline;
  width: 50%;
}
.sidenote-number {
  counter-increment: sidenote-counter;
}
.sidenote-number:after,
.sidenote:before {
  font-family: et-book-roman-old-style;
  position: relative;
  vertical-align: baseline;
}
.sidenote-number:after {
  content: counter(sidenote-counter);
  font-size: 1rem;
  left: 0.1rem;
  top: -0.5rem;
}
.sidenote:before {
  content: counter(sidenote-counter);
  font-size: 1rem;
  left: -0.75rem;
  position: absolute;
  text-align: right;
  top: -0.2rem;
}
blockquote .sidenote,
blockquote .marginnote {
  margin-right: -82%;
  min-width: 59%;
  text-align: left;
}
div.fullwidth,
table.fullwidth {
  width: 100%;
}
div.table-wrapper {
  font-family:
    "Gill Sans",
    "Gill Sans MT",
    Calibri,
    sans-serif;
  overflow-x: auto;
}
.sans {
  font-family:
    "Gill Sans",
    "Gill Sans MT",
    Calibri,
    sans-serif;
  letter-spacing: .03em;
}
code,
pre > code {
  font-family:
    Consolas,
    "Liberation Mono",
    Menlo,
    Courier,
    monospace;
  font-size: 1.0rem;
  line-height: 1.42;
  -webkit-text-size-adjust: 100%;
}
.sans > code {
  font-size: 1.2rem;
}
h1 > code,
h2 > code,
h3 > code {
  font-size: 0.80em;
}
.marginnote > code,
.sidenote > code {
  font-size: 1rem;
}
pre > code {
  display: block;
  font-size: 0.9rem;
  margin-left: 2.5%;
  overflow-x: auto;
  width: 52.5%;
}
pre.fullwidth > code {
  width: 90%;
}
.fullwidth {
  max-width: 90%;
  clear: both;
}
span.newthought {
  font-size: 1.2em;
  font-variant: small-caps;
}
input.margin-toggle {
  display: none;
}
label.sidenote-number {
  display: inline-block;
  max-height: 2rem;
}
label.margin-toggle:not(.sidenote-number) {
  display: none;
}
.iframe-wrapper {
  height: 0;
  padding-bottom: 56.25%;
  padding-top: 25px;
  position: relative;
}
.iframe-wrapper iframe {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
dd {
  line-height: 2rem;
  font-size: 1.4rem;
}
dt {
  font-size: 1.7rem;
  margin-bottom: .6em;
  margin-top: 2rem;
}
.gallery > a {
  display: block;
}
.gallery img {
  width: 100%;
}
figure > img,
figure > svg {
  width: 100%;
}
.picture {
  display: block;
  margin: 2em 0;
  padding: 0;
}
.picture img {
  width: 100%;
}
.picture__caption {
  display: block;
  font-style: italic;
  max-width: none;
}
.picture__caption em {
  font-style: normal;
}
.picture .picture__anchor {
  background: none;
  display: block;
  position: relative;
  text-shadow: none;
}
.picture .lightbox {
  border: 1px solid #333;
}
.placeholder {
  background: no-repeat center url(/svg/photo.svg);
}
.placeholder + img {
  position: absolute;
  top: 0;
}
.placeholder + iframe {
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}
.inline-image {
  margin: 1em 0;
}
.inline-image .placeholder {
  display: none;
}
.inline-image img {
  width: 100%;
  position: relative;
}
.r1x1 .placeholder {
  padding-top: 100%;
}
.r4x3 .placeholder {
  padding-top: 133.33%;
}
.r3x4 .placeholder {
  padding-top: 75%;
}
.r3x2 .placeholder {
  padding-top: 150%;
}
.r2x3 .placeholder {
  padding-top: 66.66%;
}
.r9x16 .placeholder {
  padding-top: 56.25%;
}
.r16x9 .placeholder {
  padding-top: 177.78%;
}
main > article:first-child {
  padding-top: 0;
}
main > h1 {
  margin-bottom: .15em;
}
header h1 {
  margin-bottom: .5rem;
  margin-top: 2rem;
}
header .post-meta {
  margin-top: .5rem;
  margin-bottom: 0;
}
th {
  font-variant: small-caps;
  letter-spacing: .1em;
  text-align: left;
  text-transform: uppercase;
}
table {
  table-layout: fixed;
}
dd,
li,
p {
  -webkit-hyphens: auto;
  -webkit-hyphenate-limit-before: 3;
  -webkit-hyphenate-limit-after: 3;
  -webkit-hyphenate-limit-chars: 6 3 3;
  -webkit-hyphenate-limit-lines: 2;
  -webkit-hyphenate-limit-last: always;
  -webkit-hyphenate-limit-zone: 8%;
  hyphens: auto;
  hyphenate-limit-chars: 6 3 3;
  hyphenate-limit-lines: 2;
  hyphenate-limit-last: always;
  hyphenate-limit-zone: 8%;
}
.reversed {
  -webkit-hyphens: none;
  hyphens: none;
}
.archived-post {
  padding: 1rem 0;
}
#work-with-me dl {
  margin-top: 0;
}
#work-with-me dl,
.colophon dl {
  box-sizing: border-box;
  float: left;
  padding: 0;
  position: relative;
  width: 100%;
}
#work-with-me dl dd,
.colophon dd {
  float: left;
  margin: .3rem 0 0;
  padding-left: 1rem;
}
#work-with-me dl dd + dd,
.colophon dd + dd {
  clear: left;
  margin-left: 10rem;
}
#work-with-me dl dt,
.colophon dt {
  clear: left;
  float: left;
  font-size: 1.4rem;
  margin: .3rem 0 0;
  width: 10rem;
}
#work-with-me dl dt:after,
.colophon dt:after {
  content: ":";
}
@media (min-width: 760px) {
  #work-with-me dl,
  .colophon dl {
    padding-left: 1rem;
  }
  .colophon dt {
    width: 12rem;
  }
  #work-with-me dl dt {
    width: 15rem;
  }
  #work-with-me dl dd + dd,
  .colophon dd + dd {
    margin-left: 12rem;
  }
}
.post-meta {
  font-style: italic;
}
.post-list {
  list-style-type: none;
  padding: 0;
}
.post-list li:before {
  content: "";
}
.post-list li + li {
  padding-top: 1rem;
}
.post-list-meta {
  background: none;
  display: block;
  font-size: .67em;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.post-list-meta .day,
.post-list-meta .year {
  font-family: "et-book-roman-old-style";
  letter-spacing: normal;
}
.task-list {
  list-style: none;
  padding-left: 0;
}
.task-list-item {
  align-items: baseline;
  display: flex;
  position: relative;
}
.task-list-item-checkbox {
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid;
  flex-shrink: 0;
  height: 0.75rem;
  margin-left: 1rem;
  margin-right: 0.5rem;
  width: 0.75rem;
}
.task-list-item:has(input:checked)::after {
  content: "\2713";
  left: 1rem;
  pointer-events: none;
  position: absolute;
  text-align: center;
  top: 0;
  width: 0.75rem;
}
li::has(> input[type="checkbox"]) {
  list-style-type: none;
}
.topic-list {
  font-size: .67em;
  font-style: normal;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.topic-list ul {
  float: none;
}
.topic-list li {
  display: inline-block;
  list-style-type: none;
  margin: 0 1rem 0 0;
  padding: 0;
}
.topic-list li:before {
  content: "";
}
.footnote-ref {
  font-size: .8rem;
}
.nowrap {
  white-space: nowrap;
}
.reversed {
  direction: rtl;
  unicode-bidi: bidi-override;
}
.hidden {
  display: none;
}
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}
.section-navigation {
  display: flex;
  width: 63%;
}
.section-navigation .element {
  border: 1px solid #ccc;
  display: inline-block;
  font-size: 1.4rem;
  padding: 1rem 2%;
  width: 29%;
}
.section-navigation small {
  display: block;
  font-size: 1rem;
  font-style: normal;
  letter-spacing: .05em;
  line-height: 2;
  text-transform: uppercase;
}
.section-navigation a:link {
  background: none;
}
.section-navigation .home {
  text-align: center;
}
.section-navigation .prev {
  border-right: 0;
  text-align: right;
}
.section-navigation .next {
  border-left: 0;
}
nav {
  display: block;
  font-style: italic;
  height: auto;
}
nav > span {
  font-size: 1.4rem;
  line-height: 2rem;
}
nav > ul {
  list-style-type: none;
  float: right;
  margin: 0;
  padding: 0;
}
nav li {
  display: inline;
  padding-left: 1rem;
}
nav li:first-child {
  padding-left: 0;
}
@media (min-width: 390px) {
  nav {
    height: auto;
  }
}
@media (max-width: 760px) {
  nav {
    padding-right: 0;
  }
  nav li {
    padding-left: .5rem;
  }
  .section-navigation {
    width: 100%;
  }
}
@media (min-width: 760px) {
  header > nav {
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
  }
  body {
    padding-left: 3em;
    padding-right: 3em;
  }
}
@media (max-width: 760px) {
  header > nav {
    margin-bottom: 0;
    margin-top: 1rem;
  }
  hr,
  section > p,
  section > footer,
  section > table {
    width: 100%;
  }
  pre > code {
    width: 97%;
  }
  section > dl,
  section > ol,
  section > ul {
    width: 100%;
    padding-left: .8em;
  }
  figure {
    max-width: 100%;
  }
  figcaption,
  figure.fullwidth figcaption {
    margin-right: 0%;
    max-width: none;
  }
  blockquote {
    margin-left: 1.5em;
    margin-right: 0em;
  }
  blockquote p,
  blockquote footer {
    width: 100%;
  }
  label.margin-toggle:not(.sidenote-number) {
    display: inline;
  }
  .sidenote,
  .marginnote {
    display: none;
  }
  figure > .marginnote {
    display: block;
    float: none;
    margin: 0;
    padding: .5rem 0;
    text-align: right;
    width: 100%;
  }
  .margin-toggle:checked + .sidenote,
  .margin-toggle:checked + .marginnote {
    clear: both;
    display: block;
    float: left;
    left: 1rem;
    margin: 1rem 2.5%;
    position: relative;
    vertical-align: baseline;
    width: 95%;
  }
  label {
    cursor: pointer;
  }
  div.table-wrapper,
  table {
    width: 85%;
  }
  img {
    width: 100%;
  }
}
@media (min-width: 1024px) {
  html {
    font-size: 18px;
  }
}
@media (min-width: 2048px) {
  html {
    font-size: 22px;
  }
}
/*! Bundled license information:

baguettebox.js/dist/baguetteBox.min.css:
  (*!
   * baguetteBox.js
   * @author  feimosi
   * @version 1.13.0
   * @url https://github.com/feimosi/baguetteBox.js
   *)
*/
/*# sourceMappingURL=/_bridgetown/static/index.3HODJ7BR.css.map */
