@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500&family=IBM+Plex+Mono&display=swap");
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  background: #f5f4f0;
  color: #1e2a1f;
  line-height: 1.7;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: #3a6644;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-nav {
  background: #2d3b2e;
  border-bottom: 1px solid #1e2a1f;
  padding: 0 2rem;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-nav .brand {
  color: #e8ece6;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.3px;
  text-decoration: none;
}
.site-nav .brand:hover {
  opacity: 0.85;
  text-decoration: none;
}
.site-nav .nav-links {
  display: flex;
  gap: 24px;
}
.site-nav .nav-links a {
  color: #e8ece6;
  font-size: 13px;
  opacity: 0.7;
  text-decoration: none;
}
.site-nav .nav-links a:hover {
  opacity: 1;
}

.container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--wide {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero {
  background: #edf0e9;
  border-bottom: 1px solid #c8d0c4;
  padding: 3.5rem 2rem 2.5rem;
}
.hero__label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #7a8c7b;
  margin-bottom: 0.75rem;
}
.hero__title {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.5px;
  color: #1e2a1f;
  max-width: 540px;
  margin-bottom: 1rem;
}
.hero__sub {
  font-size: 15px;
  color: #3d4f3e;
  max-width: 480px;
  margin-bottom: 1.5rem;
}

.site-footer {
  border-top: 1px solid #c8d0c4;
  padding: 2rem 1.5rem;
  margin-top: 4rem;
  font-size: 13px;
  color: #7a8c7b;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-footer a {
  color: #7a8c7b;
}
.site-footer a:hover {
  color: #3a6644;
}

.btn {
  display: inline-block;
  padding: 9px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  text-decoration: none;
}
.btn--primary {
  background: #3a6644;
  color: #fff;
}
.btn--primary:hover {
  background: #5c8c62;
  text-decoration: none;
}
.btn--ghost {
  background: transparent;
  color: #3a6644;
  border: 1px solid #3a6644;
}
.btn--ghost:hover {
  background: #edf0e9;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  border-top: 1px solid #c8d0c4;
}

.post-card {
  padding: 1.5rem;
  border-right: 1px solid #c8d0c4;
  border-bottom: 1px solid #c8d0c4;
  background: #f5f4f0;
  transition: background 0.15s;
}
.post-card:hover {
  background: #edf0e9;
}
.post-card__tag {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  color: #3a6644;
  margin-bottom: 0.6rem;
}
.post-card__title {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
  color: #1e2a1f;
  margin-bottom: 0.5rem;
}
.post-card__title a {
  color: inherit;
}
.post-card__title a:hover {
  color: #3a6644;
  text-decoration: none;
}
.post-card__excerpt {
  font-size: 13px;
  color: #7a8c7b;
  line-height: 1.55;
  margin-bottom: 0.85rem;
}
.post-card__meta {
  font-size: 11px;
  color: #7a8c7b;
  opacity: 0.7;
}

.post {
  padding: 3rem 0;
}
.post__header {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #c8d0c4;
}
.post__tag {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #3a6644;
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.post__title {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.4px;
  margin-bottom: 0.75rem;
}
.post__meta {
  font-size: 13px;
  color: #7a8c7b;
}
.post__content h2, .post__content h3, .post__content h4 {
  font-weight: 500;
  margin: 2rem 0 0.75rem;
  line-height: 1.3;
}
.post__content h2 {
  font-size: 1.4rem;
}
.post__content h3 {
  font-size: 1.15rem;
}
.post__content p {
  margin-bottom: 1.25rem;
}
.post__content ul, .post__content ol {
  margin: 0 0 1.25rem 1.5rem;
}
.post__content ul li, .post__content ol li {
  margin-bottom: 0.4rem;
}
.post__content blockquote {
  border-left: 3px solid #8db88e;
  padding: 0.5rem 0 0.5rem 1.25rem;
  color: #3d4f3e;
  font-style: italic;
  margin: 1.5rem 0;
}
.post__content code {
  font-family: "IBM Plex Mono", "Fira Code", monospace;
  font-size: 0.875em;
  background: #edf0e9;
  border: 1px solid #c8d0c4;
  border-radius: 3px;
  padding: 1px 5px;
  color: #3a6644;
}
.post__content div.highlight, .post__content pre.highlight {
  background: #1e2a1f;
  border: 1px solid #3a4e3b;
  border-radius: 6px;
  padding: 1.25rem 1.5rem;
  overflow-x: auto;
  margin: 1.5rem 0;
}
.post__content div.highlight code, .post__content pre.highlight code {
  background: none;
  border: none;
  padding: 0;
  color: #c8d8c4;
  font-size: 0.85rem;
  line-height: 1.6;
}

.tag-badge {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 3px;
  background: #edf0e9;
  color: #3a6644;
  border: 1px solid #c8d0c4;
  margin-right: 4px;
  text-decoration: none;
}
.tag-badge:hover {
  background: #c8d0c4;
  text-decoration: none;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 2rem 0;
  font-size: 13px;
}
.pagination a, .pagination span {
  padding: 6px 14px;
  border: 1px solid #c8d0c4;
  border-radius: 4px;
  color: #3d4f3e;
  text-decoration: none;
}
.pagination a:hover {
  border-color: #3a6644;
  color: #3a6644;
}
.pagination .current {
  background: #3a6644;
  color: #fff;
  border-color: #3a6644;
}
.pagination .disabled {
  opacity: 0.4;
  pointer-events: none;
}

.highlight .c, .highlight .c1, .highlight .cm {
  color: #6a8c6b;
  font-style: italic;
}
.highlight .k, .highlight .kd, .highlight .kn {
  color: #8db88e;
}
.highlight .s, .highlight .s1, .highlight .s2 {
  color: #a8c8a0;
}
.highlight .nf, .highlight .nc {
  color: #c8e0c0;
}
.highlight .mi, .highlight .mf {
  color: #b0d4a8;
}
.highlight .o {
  color: #7aaa7a;
}
.highlight .n, .highlight .na, .highlight .nb {
  color: #c8d8c4;
}
.highlight .err {
  color: #e07070;
  background: none;
}

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