/* Built: 2026-08-25T18:41:01.796Z */
@import url('https://fonts.googleapis.com/css2?family=Geist:ital,wght@0,100..900;1,100..900&family=Geist+Mono:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --max-width: 60rem;
  --sidebar-width: 14rem;
  --gap: 2.5rem;
  --color-text: #1a1a1a;
  --color-muted: #5f5f5f;
  --color-bg: #ffffff;
  --color-border: #e2e2e2;
  --color-link: #0b5fff;
  --color-link-hover: #08379a;
  --font-body: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --rhythm-baseline: 1.5rem;
  --rhythm-paragraph-gap: 1rem;
  --rhythm-line-height: 1.5;

  /* Heading spacing */
  --rhythm-h1-margin-top: 3rem;
  --rhythm-h1-margin-bottom: 0.75rem;
  --rhythm-h2-margin-top: 2.5rem;
  --rhythm-h2-margin-bottom: 0.65rem;
  --rhythm-h3-margin-top: 2rem;
  --rhythm-h3-margin-bottom: 0.6rem;
  --rhythm-h4-margin-top: 1.5rem;
  --rhythm-h4-margin-bottom: 0.5rem;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: var(--rhythm-line-height);
  font-size: 1.0625rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.site-header {
  margin-bottom: 2.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--gap);
}

.site-heading {
  min-width: 0;
}

pagefind-modal-trigger {
  flex-shrink: 0;
  margin-left: auto;
}

.site-logo {
  height: 20px;
  width: auto;
  vertical-align: middle;
  margin-top: -0.7rem;
  margin-right: 0.5rem;
}

.site-title {
  display: inline-block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
}

.site-title:hover {
  color: var(--color-link);
}

.site-description {
  margin: 0.25rem 0 0;
  color: var(--color-muted);
}

.layout {
  display: grid;
  grid-template-columns: var(--sidebar-width) 1fr;
  gap: var(--gap);
  align-items: start;
  flex: 1;
}

.content {
  min-width: 0;
  order: 2;
}

.sidebar {
  border-right: 1px solid var(--color-border);
  padding-right: var(--gap);
  order: 1;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.nav-list a {
  color: var(--color-text);
  text-decoration: none;
  font-size: 0.95rem;
}

.nav-list a:hover {
  color: var(--color-link);
}

.nav-list a[aria-current="page"] {
  color: var(--color-link);
  font-weight: 600;
}

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

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

.post-summary {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--color-border);
}

.post-summary:last-of-type {
  border-bottom: none;
}

.post-summary h2 {
  margin: 0 0 0.25rem;
  font-size: 1.4rem;
}

.post-summary h2 a {
  text-decoration: none;
  color: var(--color-text);
}

.post-summary h2 a:hover {
  color: var(--color-link);
}

.post-meta {
  margin: 0 0 0.75rem;
  color: var(--color-muted);
  font-size: 0.875rem;
}

.post-excerpt {
  margin: 0;
  color: var(--color-text);
}

.post-header h1 {
  margin-bottom: 0.25rem;
  margin-top: 0;
  font-size: 2rem;
}

.post-content {
  margin-top: var(--rhythm-baseline);
}

.post-content p {
  margin: 0 0 var(--rhythm-paragraph-gap);
}

.post-content h1 {
  margin: var(--rhythm-h1-margin-top) 0 var(--rhythm-h1-margin-bottom);
}

.post-content h2 {
  margin: var(--rhythm-h2-margin-top) 0 var(--rhythm-h2-margin-bottom);
}

.post-content h3 {
  margin: var(--rhythm-h3-margin-top) 0 var(--rhythm-h3-margin-bottom);
}

.post-content h4 {
  margin: var(--rhythm-h4-margin-top) 0 var(--rhythm-h4-margin-bottom);
}

.post-content ul,
.post-content ol {
  margin: 0 0 var(--rhythm-paragraph-gap);
}

.post-content .footnotes {
  margin-top: var(--rhythm-baseline);
  padding-top: var(--rhythm-paragraph-gap);
  border-top: 1px solid var(--color-border);
  font-size: 0.9rem;
  color: var(--color-muted);
}

.post-content .footnotes ol {
  margin: 0;
  padding-left: 1.25rem;
}

.post-content .footnotes li {
  margin-bottom: 0.5rem;
}

.post-content [data-footnote-backref] {
  text-decoration: none;
}

.post-content img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  display: block;
  margin-block: var(--rhythm-baseline);
  transition: transform 0.2s ease;
}

.post-content img:hover {
  transform: scale(1.03);
}

.post-content pre {
  background: #f4f4f4;
  padding: 1rem;
  overflow-x: auto;
  border-radius: 4px;
  font-family: var(--font-mono);
}

.post-content code {
  font-family: var(--font-mono);
  background: #f4f4f4;
  padding: 0.15em 0.35em;
  border-radius: 3px;
}

.post-content pre code {
  background: none;
  padding: 0;
}

.post-content blockquote {
  margin: 1.5rem 0;
  padding-left: 1rem;
  border-left: 3px solid var(--color-border);
}

.archive-year {
  margin-bottom: 2rem;
}

.archive-year h2 {
  font-size: 1.25rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 0.5rem;
}

.archive-months {
  margin: 0.75rem 0 0;
  letter-spacing: 0.02em;
}

.archive-months strong a {
  color: inherit;
}

.archive-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.archive-list li {
  margin-bottom: 0.6rem;
}

.pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.9rem;
}

.pagination-status {
  color: var(--color-muted);
}

.site-footer {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  color: var(--color-muted);
  font-size: 0.85rem;
}

.site-footer img {
  max-height: 1rem;
  margin-left: 0.25rem;
  margin-bottom: -0.15rem;
}
  
@media (max-width: 40rem) {
  .site-header {
    flex-direction: column;
    align-items: stretch;
  }

  pagefind-modal-trigger {
    margin-left: 0;
  }

  .layout {
    grid-template-columns: 1fr;
  }

  .content {
    order: 1;
  }

  .sidebar {
    border-right: none;
    border-top: 1px solid var(--color-border);
    padding-right: 0;
    padding-top: 1.5rem;
    order: 2;
  }

  .nav-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .site {
    padding: 1.5rem 1.25rem 2.5rem;
  }

  .post-header h1 {
    font-size: 1.6rem;
  }
}
