/* ── Blog listing ── */
.blog-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 6rem 2rem 4rem;
}

.blog-header {
  margin-bottom: 3rem;
}

.blog-header h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.blog-header-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 520px;
}

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.blog-card {
  display: block;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  text-decoration: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.blog-card:hover {
  border-color: var(--green-dark);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.blog-card-date {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.blog-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.blog-card-excerpt {
  font-size: 0.925rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.blog-card-read {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green-text);
}

/* ── Blog post ── */
.blog-post-page {
  max-width: 680px;
  margin: 0 auto;
  padding: 5rem 2rem 6rem;
}

.blog-post-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1.5px solid var(--border);
}

.blog-back {
  display: inline-block;
  font-size: 0.875rem;
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

.btn-cta {
  display: inline-block;
  background: var(--ink);
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.15s;
}

.btn-cta:hover { opacity: 0.88; }

.blog-post-header h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}

.blog-post-intro {
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.7;
}

.blog-post-body {
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.8;
}

.blog-post-body h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 2.5rem 0 0.75rem;
}

.blog-post-body p {
  margin-bottom: 1.25rem;
  color: #594A42;
}

.blog-post-body ul {
  margin: 0 0 1.25rem 1.25rem;
}

.blog-post-body li {
  margin-bottom: 0.5rem;
  color: #594A42;
  line-height: 1.7;
}

.blog-post-body strong {
  font-weight: 600;
  color: var(--ink);
}

.blog-post-cta {
  background: var(--green-light);
  border-radius: 20px;
  padding: 2rem;
  margin-top: 3rem;
  text-align: center;
}

.blog-post-cta h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.blog-post-cta p {
  font-size: 0.925rem;
  color: var(--green-text);
  margin-bottom: 1.25rem;
}

.blog-post-cta .btn-cta {
  background: var(--ink);
}
