@font-face {
  font-family: Jakarta;
  src: url('assets/PlusJakartaSans-Variable.ttf') format('truetype');
  font-weight: 200 800;
  font-display: swap;
}
:root {
  --canvas: #f2f6f5;
  --ink: #14231f;
  --muted: #53655e;
  --teal: #2d7d78;
  --deep: #1f5e5a;
  --line: #dce5e1;
}
* { box-sizing: border-box; }
html { scrollbar-color: #8aa99e var(--canvas); }
body { margin: 0; color: var(--ink); background: var(--canvas); font-family: Jakarta, sans-serif; font-size: 16px; line-height: 1.75; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; text-underline-offset: 4px; }
a:hover { color: var(--teal); }
a:focus-visible { outline: 2px solid var(--teal); outline-offset: 5px; }
::selection { background: #d9f0e7; color: var(--deep); }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 48px)); margin-inline: auto; }
.site-header { border-bottom: 1px solid var(--line); }
.nav-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 80px; }
.brand { display: inline-flex; align-items: center; gap: 9px; font-size: 23px; letter-spacing: -.035em; font-weight: 750; }
.brand img { width: 35px; height: 35px; }
.brand-dot { color: var(--teal); margin-left: -8px; }
.nav-row nav { display: flex; gap: 24px; font-size: 13px; font-weight: 550; }
.nav-row nav a { padding-block: 10px; }
.nav-cta { background: var(--teal); color: white; border-radius: 12px; padding: 11px 17px; font-size: 13px; }
.nav-cta:hover { color: white; background: var(--deep); }
main.container { max-width: 840px; }
.blog-hero { padding: 64px 0 36px; }
.blog-hero h1 { font-size: 36px; font-weight: 650; line-height: 1.25; letter-spacing: -.03em; margin: 0 0 12px; }
.blog-hero p { font-size: 16px; color: var(--muted); margin: 0; }
.blog-grid { display: grid; grid-template-columns: 1fr; padding-bottom: 72px; }
.blog-card { display: block; padding: 27px 0 30px; border-bottom: 1px solid var(--line); }
.blog-card h2 { font-size: 21px; font-weight: 600; line-height: 1.45; letter-spacing: -.02em; margin: 8px 0; text-wrap: pretty; }
.blog-card:hover h2 { text-decoration: underline; }
.blog-card p { color: var(--muted); font-size: 15px; margin: 0; max-width: 75ch; }
.blog-card-meta, .article-meta { font-size: 13px; color: var(--muted); font-weight: 400; }
.article-wrap { width: min(720px, calc(100% - 48px)); margin-inline: auto; padding: 60px 0 80px; }
.article-wrap h1 { font-size: 34px; line-height: 1.3; letter-spacing: -.025em; font-weight: 650; margin: 14px 0 20px; text-wrap: pretty; }
.article-dek { font-size: 17px; line-height: 1.75; color: var(--muted); margin: 0 0 32px; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.article-body { font-size: 16px; line-height: 1.9; }
.article-body p { margin: 0 0 25px; color: #344740; }
.article-body a { color: var(--deep); font-weight: 550; text-decoration: underline; text-decoration-color: #89ada0; }
.article-body a:hover { text-decoration-color: var(--deep); }
.article-back { display: inline-flex; padding-block: 12px; margin-top: 16px; font-size: 14px; font-weight: 550; color: var(--deep); }
.blog-footer { border-top: 1px solid var(--line); padding: 24px 0 32px; color: var(--muted); font-size: 12px; display: flex; justify-content: space-between; gap: 20px; }
@media (max-width: 700px) {
  .container { width: calc(100% - 40px); }
  .nav-row { flex-wrap: wrap; gap: 8px; padding-block: 16px 8px; }
  .nav-row nav { order: 3; width: 100%; justify-content: space-between; gap: 10px; font-size: 12px; }
  .nav-cta { font-size: 12px; padding: 9px 12px; }
  .blog-hero { padding: 38px 0 20px; }
  .blog-hero h1 { font-size: 30px; }
  .blog-card { padding-block: 23px; }
  .blog-card h2 { font-size: 19px; }
  .article-wrap { width: calc(100% - 40px); padding: 38px 0 55px; }
  .article-wrap h1 { font-size: 27px; line-height: 1.35; }
  .article-dek { font-size: 16px; margin-bottom: 26px; padding-bottom: 24px; }
  .blog-footer { flex-direction: column; gap: 4px; }
}
