:root {
  --green: #7da343;
  --cream: #fbf8f1;
  --text-dark: #2f2f2f;
  --text-muted: #6f6f6f;
  --radius: 18px;
}

/* ================= HERO ================= */

.blog-hero {
  height: 70vh;
  background:
    linear-gradient(rgba(60,80,60,0.75), rgba(120,150,90,0.75)),
    url("../images/blogs/hero.jpg") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-hero-overlay {
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.blog-hero-overlay h1 {
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  margin-bottom: 10px;
  color: #fff;
}

.blog-hero-overlay p {
  font-size: 1.05rem;
  color: #fff;
}

/* ================= FILTERS ================= */

.blog-filters {
  display: flex;
  gap: 12px;
  padding: 40px 8%;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 999px;
  border: none;
  background: #f1f1f1;
  color: var(--text-dark);
  font-weight: 500;
  cursor: pointer;
}

.filter-btn.active {
  background: var(--green);
  color: #fff;
}

/* ================= BLOG AREA ================= */

.blog-wrapper {
  background: var(--cream);
  min-height: 60vh;
  padding: 80px 8%;
}

/* ================= EMPTY STATE ================= */

.blog-empty {
  text-align: center;
  max-width: 600px;
  margin: auto;
}

.blog-empty h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.blog-empty p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* ================= BLOG CARD (FUTURE) ================= */

.blog-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  margin-bottom: 40px;
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-content {
  padding: 25px;
}

.blog-category {
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 600;
}

.blog-content h3 {
  margin: 10px 0;
}

.blog-content p {
  color: var(--text-muted);
}

.blog-content a {
  display: inline-block;
  margin-top: 15px;
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .blog-filters {
    justify-content: center;
  }
}
