/* Blog + funnel public styles — FILE_PATH: public/assets/css/blog.css */
.blog-list-page .content-shell,
.blog-post-page .content-shell {
  margin-top: 1.5rem;
}
.blog-list-panel,
.blog-post-panel {
  width: 100%;
}
.blog-post-panel {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.blog-post-meta {
  margin: 0 0 1rem;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.15rem;
  margin-top: 0.25rem;
}
.blog-card {
  background: #fff;
  border-radius: var(--radius-sm, 10px);
  box-shadow: 0 10px 26px rgba(8, 28, 36, 0.06);
  padding: 1rem 1.05rem 1.1rem;
  border: 1px solid rgba(18, 34, 43, 0.1);
  border-left: 4px solid #1f9aa8;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-height: 100%;
}
.blog-card h2 {
  margin: 0.1rem 0 0.35rem;
  font-size: 1.22rem;
  font-family: var(--display, Syne, sans-serif);
  line-height: 1.25;
}
.blog-card h2 a { color: inherit; text-decoration: none; }
.blog-card h2 a:hover { color: #0e6f7a; }
.blog-card-excerpt {
  margin: 0 0 0.55rem;
  color: var(--muted, #5b6f7a);
  line-height: 1.5;
  flex: 1;
}
.blog-card .btn-quiet {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--control-height, 34px);
  padding: var(--control-pad-y, 0.35rem) 0.9rem;
  border-radius: var(--radius-sm, 10px);
  background: #eef5f7;
  color: #12222b;
  border: 1px solid #d5e3e8;
  text-decoration: none;
  font-weight: 700;
}
.blog-prose,
.blog-post-panel .content-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 0.35rem 0 0.25rem;
  line-height: 1.7;
  color: var(--ink, #12222b);
  font-size: 1.05rem;
}
.blog-prose p,
.blog-post-panel .content-body p {
  margin: 0 0 1rem;
}
.blog-prose h2,
.blog-prose h3,
.blog-post-panel .content-body h2,
.blog-post-panel .content-body h3 {
  font-family: var(--display, Syne, sans-serif);
  margin: 1.35rem 0 0.55rem;
  line-height: 1.25;
}
.blog-prose ul,
.blog-prose ol,
.blog-post-panel .content-body ul,
.blog-post-panel .content-body ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}
.blog-prose img,
.blog-post-panel .content-body img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm, 10px);
}
.funnel-step h2 { font-family: Syne, sans-serif; margin-top: 0.25rem; }
.blog-list-page .more-link { margin-top: 1.35rem; }

/* Legacy class aliases */
.blog-stack { display: grid; gap: 1rem; }
.blog-hero h1, .blog-post h1 {
  font-family: Syne, "Franklin Gothic Medium", sans-serif;
  letter-spacing: -0.02em;
}

@media (max-width: 720px) {
  .blog-grid { grid-template-columns: minmax(0, 1fr); }
  .blog-card { padding: 0.9rem; }
  .blog-post-panel { max-width: none; }
}
