.blog-post-article {
  max-width: 760px;
  margin: 0 auto;
  padding: 0;
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
}

.blog-post-article .blog-post-title {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: var(--t-heading-ls-lg);
  color: var(--blue-dark);
  margin-bottom: clamp(24px, 3vw, 40px);
}

.blog-post-content {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
}

.blog-post-content > * + * { margin-top: 1.25em; }

.blog-post-content h2 {
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 800;
  line-height: 1.25;
  color: var(--blue-dark);
  margin-top: 2em;
  letter-spacing: var(--t-heading-ls);
}

.blog-post-content h3 {
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--blue-dark);
  margin-top: 1.75em;
}

.blog-post-content h4 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--blue-dark);
  margin-top: 1.5em;
}

.blog-post-content p { margin: 0; }

.blog-post-content a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s;
}

.blog-post-content a:hover { color: var(--blue-dark); }

.blog-post-content strong { font-weight: 700; color: var(--blue-dark); }

.blog-post-content ul,
.blog-post-content ol {
  padding-left: 1.5em;
}

.blog-post-content li + li { margin-top: 0.5em; }

.blog-post-content blockquote {
  border-left: 4px solid var(--blue);
  padding: 8px 0 8px 20px;
  margin: 1.5em 0;
  font-size: 19px;
  font-style: italic;
  color: var(--t-body-light);
}

.blog-post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  margin: 1.5em auto;
}

.blog-post-content figure { margin: 1.5em 0; }

.blog-post-content figcaption {
  font-size: 14px;
  color: var(--t-body-light);
  text-align: center;
  margin-top: 8px;
}

.blog-post-content pre,
.blog-post-content code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  background: #f4f6fb;
  border-radius: 4px;
}

.blog-post-content code { padding: 2px 6px; font-size: 0.9em; }

.blog-post-content pre {
  padding: 16px 20px;
  overflow-x: auto;
  font-size: 14px;
  line-height: 1.6;
}

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

.blog-post-content hr {
  border: 0;
  border-top: 1px solid rgba(15, 36, 96, 0.12);
  margin: 2.5em 0;
}
