:root {
  --text-0: rgba(255, 255, 255, 87%);
  --text-1: rgba(255, 255, 255, 60%);
  --bg-0: #121212;
  --bg-1: rgba(255, 255, 255, 5%);
  --bg-2: rgba(255, 255, 255, 12%);
  --accent: #E65100;
}

@media (prefers-color-scheme: light) {
  :root {
    --text-0: rgba(0, 0, 0, 87%);
    --text-1: rgba(0, 0, 0, 66%);
    --bg-0: #fff;
    --bg-1: #f2f2f2;
    --bg-2: rgba(0, 0, 0, 12%);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: inherit;
  text-decoration: inherit;
}

html {
  background: var(--bg-0);
  color: var(--text-0);
  width: 100%;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

@media (min-width: 640px) {
  html {
    font-size: 16.5px;
  }
}
@media (min-width: 720px) {
  html {
    font-size: 17px;
  }
}
@media (min-width: 960px) {
  html {
    font-size: 18px;
  }
}
body {
  max-width: 944px;
  margin: 0 auto;
  padding: 0 24px;
  font-family: "Charter", Georgia, serif;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .sans {
  font-family: "Space Grotesk", Helvetica, sans-serif;
  line-height: 1.3;
}

code, pre, .mono, summary {
  font-family: "Source Code Pro", monospace;
  font-weight: 500;
}

a {
  color: var(--text-0);
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

pre {
  background: var(--bg-1);
  padding: 1em;
  overflow-x: auto;
  border-radius: 4px;
  margin: 1.5em 0;
  font-size: 0.9rem;
}

code {
  font-size: 0.9em;
}

p code {
  background: var(--bg-1);
  padding: 2px 6px;
  border-radius: 3px;
}

img {
  max-width: 100%;
  height: auto;
}

blockquote {
  border-left: 4px solid var(--accent);
  padding-left: 1em;
  margin: 1.5em 0;
  color: var(--text-1);
  font-style: italic;
}

hr {
  border: none;
  border-top: 1px solid var(--bg-2);
  margin: 2em 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
}

th, td {
  border: 1px solid var(--bg-2);
  padding: 0.5em 1em;
  text-align: left;
}

th {
  background: var(--bg-1);
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 2em 0;
}

.site-title {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-family: "Space Grotesk", Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.site-logo {
  height: 1.4em;
  width: auto;
}

nav a {
  margin-left: 1.5em;
  letter-spacing: 0.07em;
  font-size: 0.9rem;
  font-family: "Space Grotesk", Helvetica, sans-serif;
}

footer {
  margin: 4em 0 2em;
  color: var(--text-1);
  font-size: 0.85rem;
  font-family: "Source Code Pro", monospace;
}

main {
  margin-top: 2em;
}

.post-entry {
  margin: 0 0 2.5rem -24px;
  padding-left: 20px;
  position: relative;
  border-left: var(--accent) solid 4px;
}

.post-entry > a {
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  display: block;
}

.post-entry-excerpt {
  color: var(--text-1);
  font-size: 0.95rem;
  margin: 0.4em 0 0.3em;
  line-height: 1.5;
}

.post-entry > time {
  color: var(--text-1);
  font-size: 0.9rem;
  display: block;
  margin-bottom: 4px;
}

.post-entry > .post-entry-meta {
  color: var(--text-1);
  font-size: 0.9rem;
}

.post-entry > .post-entry-meta a {
  color: var(--text-1);
}

.post-entry > .post-entry-meta a:hover {
  color: var(--accent);
}

.post-full .post-header {
  margin-bottom: 2em;
}

.post-full .post-header h1 {
  font-size: 2.2rem;
  margin-bottom: 0.5em;
}

.post-full .post-meta {
  color: var(--text-1);
  font-size: 0.9rem;
  margin-bottom: 0.3em;
}

.post-full .post-meta .sep {
  margin: 0 0.3em;
}

.post-full .post-categories,
.post-full .post-tags {
  font-size: 0.85rem;
  color: var(--text-1);
}

.category-link {
  color: var(--accent) !important;
}

.tag {
  color: var(--text-1);
}

.tag::before {
  content: "#";
}

.post-content h2 {
  margin: 2em 0 0.8em;
  font-size: 1.6rem;
}
.post-content h3 {
  margin: 1.5em 0 0.6em;
  font-size: 1.3rem;
}
.post-content p {
  margin-bottom: 1.2em;
}
.post-content ul, .post-content ol {
  margin: 0 0 1.2em 1.5em;
}
.post-content li {
  margin-bottom: 0.3em;
}

.author-page h1 {
  font-size: 2rem;
  margin-bottom: 0.5em;
}

.author-bio {
  color: var(--text-1);
  font-size: 1.1rem;
  margin-bottom: 1em;
}

.author-links {
  margin-bottom: 2em;
  font-size: 0.9rem;
}

.author-links a {
  color: var(--accent);
}

.author-page h2 {
  font-size: 1.3rem;
  margin-bottom: 1em;
  color: var(--text-1);
}

.category-section {
  margin-bottom: 3em;
}

.category-section h2 {
  font-size: 1.4rem;
  margin-bottom: 1em;
  color: var(--accent);
}

.category-section h2::before {
  content: "> ";
  font-family: "Source Code Pro", monospace;
}

.page h1 {
  font-size: 2rem;
  margin-bottom: 1em;
}

.page p {
  margin-bottom: 1.2em;
}

.author-card {
  margin-bottom: 2em;
  padding-left: 20px;
  border-left: var(--accent) solid 4px;
  margin-left: -24px;
}

.author-card h3 {
  margin-bottom: 0.3em;
}

.author-card h3 a {
  font-size: 1.2rem;
}

.author-card p {
  color: var(--text-1);
  font-size: 0.9rem;
}

.highlight {
  background: var(--bg-1);
  border-radius: 4px;
}
.highlight .c, .highlight .cm, .highlight .c1, .highlight .cs {
  color: #6a737d;
}
.highlight .k, .highlight .kd, .highlight .kn, .highlight .kp, .highlight .kr, .highlight .kt {
  color: #ff7b72;
}
.highlight .s, .highlight .sb, .highlight .sc, .highlight .sd, .highlight .s2, .highlight .se, .highlight .sh, .highlight .si, .highlight .sx, .highlight .s1 {
  color: #a5d6ff;
}
.highlight .nb, .highlight .bp {
  color: #79c0ff;
}
.highlight .nf, .highlight .nx {
  color: #d2a8ff;
}
.highlight .nc, .highlight .nn {
  color: #ffa657;
}
.highlight .mi, .highlight .mf, .highlight .mh, .highlight .mo {
  color: #79c0ff;
}
.highlight .o, .highlight .ow {
  color: #ff7b72;
}
.highlight .p {
  color: var(--text-0);
}
.highlight .na {
  color: #79c0ff;
}
.highlight .nl {
  color: #ffa657;
}
.highlight .no {
  color: #79c0ff;
}
.highlight .nd {
  color: #d2a8ff;
}
.highlight .err {
  color: #f85149;
}
.highlight .gd {
  color: #ffa198;
  background: rgba(248, 81, 73, 0.1);
}
.highlight .gi {
  color: #56d364;
  background: rgba(46, 160, 67, 0.1);
}

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