@charset "UTF-8";
:root {
  --text-color: #333;
  --text-color-meta: #999;
  --background-color: #fefefe;
}

@font-face {
  font-family: "Junicode";
  src: url("/assets/fonts/JunicodeVF-Roman.woff2");
}
@font-face {
  font-family: "Junicode Italic";
  src: url("/assets/fonts/JunicodeVF-Italic.woff2");
}
@font-face {
  font-family: "Geom-SemiBold";
  src: url("/assets/fonts/Geom-SemiBold.woff2");
}
.meta {
  color: var(--text-color-meta);
}

body {
  font-family: "Junicode", serif;
  font-size: 14pt;
  font-weight: 450;
  color: var(--text-color);
  background-color: var(--background-color);
}

i, em {
  font-family: "Junicode Italic", serif;
  font-style: normal;
}

a {
  color: #5e5eed;
  text-decoration-style: dotted;
}
a.citation {
  color: var(--text-color);
}

a:visited {
  color: #77628c;
}
a:visited.citation {
  color: var(--text-color);
}

h1, h2, h3 {
  font-family: "Geom-SemiBold", sans-serif;
  letter-spacing: 0.05em;
  font-weight: 100;
}

abbr {
  font-variant-caps: all-small-caps;
  letter-spacing: 0.03em;
  text-decoration: none;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
nav a {
  text-decoration: none;
  display: block;
  flex-grow: 2;
  text-align: center;
  padding: 1em 1vh;
}
nav .current {
  position: relative;
  font-weight: 600;
}
nav a:after {
  content: "-";
  display: block;
  visibility: hidden;
}
nav .current:after {
  content: "∵";
  display: block;
  visibility: visible;
}

@media (max-width: 80ch) {
  nav {
    font-size: 2.8vw;
    font-weight: 800;
    letter-spacing: reset;
  }
}
body {
  max-width: 60ch;
  margin: 0 auto;
  padding: 0 2ch;
}

p {
  line-height: 1.6em;
  text-align: justify;
}

li {
  line-height: 1.6em;
}

article.primary content {
  position: relative;
}
article.primary content > p:first-child {
  font-size: larger;
  line-height: 1.5em;
}
article.primary content ol {
  padding-inline-start: 1.4em;
}
article.primary content ol li {
  counter-increment: customlistcounter;
  margin-block-end: 0.4em;
}
article.primary content ol :first-child {
  counter-reset: customlistcounter;
}
article.primary content ol li::marker {
  content: counter(customlistcounter) "  ";
  font-weight: bold;
}
article.primary content .citation {
  color: var(--text-color-meta);
}
article.primary content ol.bibliography {
  padding: 0;
  list-style: none;
  font-size: 12pt;
  text-indent: -2em;
  padding-inline-start: 2em;
}
article.primary content ol.bibliography li::marker {
  content: inherit;
}
article.primary content ol.bibliography .csl-block {
  display: inline;
  margin-inline-start: 0.2em;
}
article.primary .footnotes ol {
  margin-top: 0;
}
article.primary .footnotes p {
  margin: 0;
}

#colophon:before {
  content: "\e27d";
  font-size: 20pt;
  display: block;
  text-align: center;
}

#colophon {
  margin: 30vh 6vw 10vh;
}
#colophon h1 {
  font-size: 12pt;
  font-weight: 500;
  text-align: center;
}
#colophon p {
  font-size: 12pt;
}

#footer {
  margin: 20vh 0 5vh;
  text-align: center;
}

.post-snippet header h1, .post-snippet header h2, .post header h1, .post header h2 {
  margin-top: 1vh;
}
.post-snippet header h2, .post header h2 {
  margin-bottom: 0;
}
.post-snippet content p, .post content p {
  margin-top: 2vh;
}
.post-snippet, .post {
  margin-top: 5vh;
}

aside.headnote {
  font-family: "Junicode Italic", serif;
}
aside.headnote em, aside.headnote i {
  font-family: Junicode, serif;
  font-style: normal;
}

.sidenote {
  color: var(--text-color-meta);
  font-family: "Junicode Italic", serif;
}
.sidenote em, .sidenote i {
  font-family: Junicode, serif;
  font-style: normal;
}
.sidenote {
  float: right;
  margin-inline-end: -24ch;
  margin-top: 0.4em;
  font-size: 12pt;
  max-width: 20ch;
  text-align: left;
  line-height: 1.2em;
}

@media (max-width: 120ch) {
  .sidenote {
    margin-top: 0.8em;
    margin-bottom: 0.8em;
    margin-inline-end: 0;
    margin-inline-start: 1em;
    text-align: right;
  }
}
hr {
  color: var(--text-color-meta);
  border: none;
  overflow: visible;
  text-align: center;
  height: 1em;
  border-top: 1px solid var(--text-color-meta);
  width: 80%;
  margin: 3em auto 2em;
}

hr:after {
  display: inlineblock;
  content: "❀";
  padding: 0 0.4em;
  position: relative;
  top: -0.6em;
  background-color: var(--background-color);
}

/*# sourceMappingURL=styles.css.map */