/* Blog-specific styles. Inherits typography + colour from /style.css; this
   file only adds layout for the index list and the long-form post page. */

.blog-index, .blog-post {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
}

.blog-hero { margin-bottom: 3rem; }
.blog-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #C9A961;
  margin: 0 0 0.6rem;
}
.blog-eyebrow a { color: inherit; text-decoration: none; }
.blog-eyebrow a:hover { text-decoration: underline; }

.blog-hero h1 { font-size: 2.4rem; line-height: 1.15; margin: 0 0 1rem; }
.blog-sub { font-size: 1.05rem; color: #4a5560; max-width: 60ch; }

.blog-list { display: flex; flex-direction: column; gap: 1.5rem; }
.blog-card {
  border: 1px solid #e6e8eb;
  border-radius: 12px;
  background: #fff;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.blog-card:hover { border-color: #C9A961; transform: translateY(-1px); }
.blog-card-link { display: block; padding: 1.5rem 1.75rem; text-decoration: none; color: inherit; }
.blog-card h2 { font-size: 1.35rem; margin: 0 0 0.5rem; line-height: 1.25; }
.blog-card-desc { color: #4a5560; margin: 0 0 0.75rem; line-height: 1.55; }
.blog-card-meta { font-size: 0.85rem; color: #6b7480; margin: 0; }
.blog-empty { color: #6b7480; font-style: italic; }

.blog-post h1 { font-size: 2.2rem; line-height: 1.2; margin: 0.5rem 0 1rem; }
.blog-post h2 { font-size: 1.4rem; margin: 2.5rem 0 0.75rem; line-height: 1.3; }
.blog-post h3 { font-size: 1.15rem; margin: 2rem 0 0.5rem; }
.blog-post p { font-size: 1.05rem; line-height: 1.75; color: #1f2933; margin: 0 0 1.2rem; }
.blog-post a { color: #C9A961; }
.blog-meta { color: #6b7480; font-size: 0.9rem; margin: 0 0 2.5rem; }

.blog-rule { border: 0; border-top: 1px solid #e6e8eb; margin: 3rem 0 2rem; }
.blog-cta { background: #faf7f0; border: 1px solid #ecdfb8; padding: 1.5rem; border-radius: 12px; font-size: 1rem; line-height: 1.6; }
.blog-cta .btn { margin: 0 0.5rem; }

@media (max-width: 640px) {
  .blog-hero h1 { font-size: 1.9rem; }
  .blog-post h1 { font-size: 1.75rem; }
}
