@media (prefers-color-scheme: dark) {
  :root {
    --color-text: #e6e6e6;
    --color-muted: #a0a0a0;
    --color-bg: #181818;
    --color-accent: #6fa8ff;
    --color-border: #333;
    --color-code-bg: #232323;
  }
}
:root {
  --color-text: #1a1a1a;
  --color-muted: #666;
  --color-bg: #fff;
  --color-accent: #1155cc;
  --color-border: #e2e2e2;
  --color-code-bg: #f6f6f6;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 100%;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}

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

img {
  max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.25;
}

blockquote {
  margin: 1.5em 0;
  padding-left: 1em;
  border-left: 3px solid var(--color-border);
  color: var(--color-muted);
}

pre, code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.9em;
}

pre {
  padding: 1em;
  overflow-x: auto;
  background: var(--color-code-bg);
  border-radius: 4px;
}

code {
  padding: 0.15em 0.35em;
  background: var(--color-code-bg);
  border-radius: 3px;
}

pre code {
  padding: 0;
  background: none;
}

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

table {
  border-collapse: collapse;
  width: 100%;
}

th, td {
  border: 1px solid var(--color-border);
  padding: 0.4em 0.6em;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#main {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
}

#content {
  flex: 3 1 42rem;
  min-width: 0;
}

.sidebar {
  flex: 1 1 14rem;
  font-size: 0.95rem;
  color: var(--color-muted);
}
.sidebar section {
  margin-bottom: 2rem;
}
.sidebar h1 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-muted);
  margin-bottom: 0.5em;
}
.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar li {
  margin-bottom: 0.4em;
}

.site-header {
  max-width: 64rem;
  margin: 0 auto;
  padding: 2rem 1.5rem 1rem;
}
.site-header hgroup h1 {
  margin: 0;
  font-size: 1.5rem;
}
.site-header hgroup h1 a {
  color: var(--color-text);
  text-decoration: none;
}
.site-header nav ul {
  list-style: none;
  display: flex;
  gap: 1.25rem;
  padding: 0;
  margin: 0.75rem 0 0;
  font-size: 0.95rem;
}

body > footer {
  max-width: 64rem;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
  color: var(--color-muted);
  font-size: 0.85rem;
}

@media (max-width: 40rem) {
  #main {
    flex-direction: column;
    gap: 2rem;
  }
}
article h1 {
  font-size: 1.75rem;
  margin-bottom: 0.25em;
}

.meta {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.blog-index article {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--color-border);
}
.blog-index article:last-of-type {
  border-bottom: none;
}

.pagination {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

.post-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.seealso {
  margin: 2rem 0;
  padding: 1rem 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  background: var(--color-code-bg);
}
.seealso h2 {
  margin-top: 0;
  font-size: 1rem;
}
.seealso :last-child {
  margin-bottom: 0;
}

#blog-archives h2 {
  margin-top: 2rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 0.25em;
}
#blog-archives article {
  margin-bottom: 1.25rem;
}
#blog-archives article h1 {
  font-size: 1.1rem;
  margin: 0;
}

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