/* ─── Blog post styles ─── */
.blog-post {
  max-width: 780px;
  margin: 36px auto 48px;
  padding: 0 24px;
}

.blog-header {
  text-align: center;
  margin-bottom: 32px;
}

.blog-header h1 {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 10px;
}

.blog-meta {
  font-family: var(--font-head);
  font-size: 1rem;
  color: #6e6050;
}

.blog-body h2 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 400;
  margin: 28px 0 10px;
  padding-bottom: 4px;
  border-bottom: 2px dashed #c8b89c;
}

.blog-body h3 {
  font-family: var(--font-head);
  font-size: 1.12rem;
  font-weight: 400;
  margin: 20px 0 8px;
}

.blog-body p {
  font-size: 1rem;
  line-height: 1.65;
  color: #3a3225;
  margin-bottom: 12px;
}

.blog-body ul,
.blog-body ol {
  margin: 8px 0 16px 24px;
  font-size: 1rem;
  line-height: 1.6;
  color: #3a3225;
}

.blog-body li {
  margin-bottom: 6px;
}

.blog-body a {
  color: #5a7fbf;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.blog-body a:hover {
  color: var(--ink);
}

.blog-footer {
  margin-top: 36px;
  padding-top: 16px;
  border-top: var(--border-w) solid var(--line);
}

.blog-footer a {
  font-family: var(--font-head);
  font-size: 0.95rem;
  color: #5a7fbf;
  text-decoration: none;
}

.blog-footer a:hover {
  text-decoration: underline;
}

/* ─── Blog nav brand as link ─── */
.top-bar .nav-brand {
  text-decoration: none;
  color: inherit;
}

/* ─── Responsive ─── */
@media (max-width: 700px) {
  .blog-post {
    margin: 24px auto 32px;
    padding: 0 16px;
  }

  .blog-header h1 { font-size: 1.65rem; }
  .blog-meta { font-size: 0.9rem; }
  .blog-body h2 { font-size: 1.2rem; margin: 22px 0 8px; }
  .blog-body h3 { font-size: 1.02rem; }
  .blog-body p { font-size: 0.94rem; }
  .blog-body ul, .blog-body ol { font-size: 0.94rem; margin-left: 18px; }
}

@media (max-width: 420px) {
  .blog-post { padding: 0 12px; }
  .blog-header h1 { font-size: 1.4rem; }
  .blog-body h2 { font-size: 1.1rem; }
  .blog-body p { font-size: 0.9rem; }
  .blog-body ul, .blog-body ol { font-size: 0.9rem; }
}
