/* =========================
   BLOG HEADER
========================= */
body {
  margin: 0;
  padding: 0;
}


.blog-header {
  padding: 90px 20px 60px;
  text-align: center;
}

.blog-header h1 {
  font-size: 40px;
  color: #1f3d1b;
  margin-bottom: 12px;
}

.blog-header p {
  max-width: 720px;
  margin: auto;
  font-size: 16.5px;
  line-height: 1.8;
  color: #555;
}

/* =========================
   SECTIONS
========================= */
.blog-section {
  padding: 80px 20px;
}

.light-bg {
  background: #f9fbf8;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.blog-section h2 {
  text-align: center;
  font-size: 34px;
  color: #1f3d1b;
  margin-bottom: 50px;
}

/* =========================
   FEATURED BLOG
========================= */
.featured-blog {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.featured-content .blog-tag {
  display: inline-block;
  background: #5fa44a;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 14px;
}

.featured-content h2 {
  font-size: 32px;
  margin-bottom: 16px;
  color: #1f3d1b;
}

.featured-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.read-more {
  color: #5fa44a;
  font-weight: 600;
  text-decoration: none;
}

.featured-image img {
  width: 100%;
  border-radius: 24px;
}

/* =========================
   BLOG GRID
========================= */
/* =========================
   BLOG PAGE – ALTERNATING
========================= */

.blog-section {
  padding: 90px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.blog-title {
  text-align: center;
  font-size: 40px;
  color: #1f3d1b;
  margin-bottom: 10px;
}

.blog-subtitle {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 70px;
  font-size: 16.5px;
  line-height: 1.8;
  color: #555;
}

/* BLOG ROW */
.blog-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 90px;
}

.blog-row.reverse {
  direction: rtl;
}

.blog-row.reverse > * {
  direction: ltr;
}

/* IMAGE */
.blog-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 24px;
}

/* CONTENT */
.blog-content {
  padding: 10px 0;
}

.blog-category {
  font-size: 13px;
  font-weight: 600;
  color: #5fa44a;
  letter-spacing: 0.5px;
}

.blog-content h2 {
  font-size: 30px;
  margin: 12px 0 16px;
  color: #1f3d1b;
}

.blog-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 18px;
}

.read-link {
  text-decoration: none;
  font-weight: 600;
  color: #5fa44a;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
}

.read-link:hover {
  border-color: #5fa44a;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .blog-row,
  .blog-row.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 30px;
  }

  .blog-image img {
    height: 260px;
  }

  .blog-content h2 {
    font-size: 24px;
  }

  .blog-row {
    margin-bottom: 70px;
  }
}

/* =========================
   CTA
========================= */
.blog-cta {
  background: linear-gradient(90deg, #5fa44a, #7fbf63);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.blog-cta h2 {
  font-size: 32px;
  margin-bottom: 12px;
}

.blog-cta p {
  font-size: 16px;
  margin-bottom: 22px;
}

.cta-btn {
  display: inline-block;
  background: #fff;
  color: #5fa44a;
  padding: 14px 34px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-blog {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-header h1 {
    font-size: 32px;
  }
}
