/* ============================================================
   BLOG — listing grid, post cards, article typography
   Reuses .loc-hero / .loc-breadcrumb / .loc-cta from location.css
   for the shared hero and closing CTA sections.
   ============================================================ */

.blog-post-meta {
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  color: var(--white-dim);
  letter-spacing: 0.03em;
}

/* ── Listing grid ── */
.blog-listing {
  padding: 5rem 0;
  background: #f7f8f5;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.blog-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: #666;
  font-size: 1rem;
  padding: 3rem 0;
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e5e8e2;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}
.blog-card-image {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #2d5a2d, #6ab820);
}
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-image-placeholder { width: 100%; height: 100%; }
.blog-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.blog-card-date {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-dark);
}
.blog-card-body h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.2;
  color: #1a2e1a;
  letter-spacing: 0.01em;
}
.blog-card-body p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #666;
  font-weight: 300;
  flex: 1;
}
.blog-card-link {
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--green-dark);
  margin-top: 0.25rem;
}

/* ── Single post ── */
.blog-post-hero-image {
  background: #f7f8f5;
  padding: 2.5rem 0 0;
}
.blog-post-hero-image img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.blog-post-body {
  padding: 3.5rem 0 5rem;
  background: #f7f8f5;
}
.blog-post-content {
  max-width: 720px;
  margin: 0 auto;
}
.blog-post-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  color: #1a2e1a;
  letter-spacing: 0.01em;
  margin: 2.25rem 0 1rem;
}
.blog-post-content h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.15rem;
  color: #1a2e1a;
  margin: 1.75rem 0 0.75rem;
}
.blog-post-content p {
  font-size: 1.02rem;
  line-height: 1.85;
  color: #333;
  font-weight: 300;
  margin-bottom: 1.25rem;
}
.blog-post-content ul {
  margin: 0 0 1.25rem 1.25rem;
  padding: 0;
}
.blog-post-content li {
  font-size: 1.02rem;
  line-height: 1.8;
  color: #333;
  font-weight: 300;
  margin-bottom: 0.5rem;
}
.blog-post-content strong { color: #1a2e1a; font-weight: 700; }
.blog-post-content a { color: var(--green-dark); text-decoration: underline; }
.blog-post-content > *:first-child { margin-top: 0; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-post-body { padding: 2.5rem 0 3.5rem; }
}
