/* ===== Blog nav — green header bar ===== */
.blog-nav {
  background: var(--green-dark);
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}
.blog-nav .nav-brand {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
}
.blog-nav .nav-tagline {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.5);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.blog-nav .klempner-nav {
  display: flex;
  gap: 24px;
}
.blog-nav .klempner-nav a {
  color: rgba(245,240,232,0.7);
  text-decoration: none;
  font-size: 0.9rem;
}
.blog-nav .klempner-nav a:hover { color: var(--cream); }

/* ===== Blog hero — matches city page hero style ===== */
.blog-hero {
  background: var(--green-dark) !important;
  padding: 80px 20px 72px;
  position: relative;
  overflow: hidden;
}
.blog-hero .hero-bg-shape {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(200,115,63,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.blog-hero-content {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.blog-hero .breadcrumb {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.45);
  margin-bottom: 28px;
}
.blog-hero .breadcrumb a {
  color: rgba(245,240,232,0.65);
  text-decoration: none;
}
.blog-hero .breadcrumb a:hover { color: var(--cream); }
.blog-hero .hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 16px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.blog-hero .hero-sub {
  font-size: 1.05rem;
  color: rgba(245,240,232,0.65);
  margin-bottom: 40px;
  max-width: 560px;
}
.blog-hero .hero-proof {
  display: flex;
  align-items: center;
  gap: 0;
}
.blog-hero .proof-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 28px 0 0;
}
.blog-hero .proof-item:first-child { padding-left: 0; }
.blog-hero .proof-number {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--copper);
  line-height: 1;
}
.blog-hero .proof-label {
  font-size: 0.72rem;
  color: rgba(245,240,232,0.5);
  line-height: 1.4;
  margin-top: 4px;
}
.blog-hero .proof-divider {
  width: 1px;
  height: 36px;
  background: rgba(245,240,232,0.15);
  margin: 0 28px 0 0;
  flex-shrink: 0;
}

/* ===== Blog card grid ===== */
.blog-section {
  background: var(--cream);
  padding: 80px 48px;
}
.blog-index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.blog-index-card {
  background: white;
  border: 1px solid var(--cream-dark);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.22s, box-shadow 0.22s;
  display: flex;
  flex-direction: column;
}
.blog-index-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(30,60,40,0.12);
}
.blog-index-card-body {
  padding: 32px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-index-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 12px;
}
.blog-index-badge {
  display: inline-block;
  background: rgba(30,60,40,0.06);
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 4px;
}
.blog-index-date {
  font-size: 0.78rem;
  color: var(--text-light);
  white-space: nowrap;
}
.blog-index-card h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 12px;
  line-height: 1.3;
}
.blog-index-card h2 a {
  color: inherit;
  text-decoration: none;
}
.blog-index-card h2 a:hover { color: var(--copper-dark); }
.blog-index-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}
.blog-index-btn {
  align-self: flex-start;
  font-size: 0.85rem;
  padding: 10px 24px;
}
@media (max-width: 600px) {
  .blog-section { padding: 60px 24px; }
  .blog-index-grid { grid-template-columns: 1fr; }
}
