/* ================================================
   BLOG — shared base
   ================================================ */

.blog-eyebrow {
  position: relative;
  margin: 0;
  color: #a5c736;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

/* ================================================
   BLOG LISTING — index page
   ================================================ */

.blog-listing {
  padding: 56px 0 80px;
}

.blog-listing-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.blog-listing-header h2 {
  margin: 0;
  font-size: 26px;
  font-weight: 800;
  color: #fff;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  color: #000;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.22);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.32);
}

.blog-card-accent {
  height: 6px;
  background: #a5c736;
  flex-shrink: 0;
}

.blog-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 26px 28px 22px;
}

.blog-card-category {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #a5c736;
  margin-bottom: 10px;
}

.blog-card-title {
  margin: 0 0 14px;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.24;
  color: #000;
}

.blog-card-excerpt {
  flex: 1;
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.62;
  color: #444;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid #ebebeb;
  font-size: 13px;
  color: #888;
  gap: 10px;
}

.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
}

.blog-card-read-more {
  color: #a5c736;
  font-weight: 800;
  font-size: 13px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ================================================
   ARTICLE PAGE — hero
   ================================================ */

.article-hero {
  min-height: 480px;
  padding-top: 140px;
}

.article-category-pill {
  display: inline-block;
  color: #000;
  background: #a5c736;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 3px;
  margin-bottom: 18px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 18px;
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}

.article-meta span + span::before {
  content: "·";
  margin-right: 18px;
}

/* ================================================
   ARTICLE BODY — full-bleed white reading area
   ================================================ */

.article-body {
  margin: 0 calc(50% - 50vw);
  padding: 60px max(24px, calc(50vw - 380px)) 64px;
  background: #fff;
  color: #111;
}

.article-lead {
  font-size: 20px;
  line-height: 1.65;
  color: #222;
  margin: 0 0 36px;
  font-weight: 400;
}

.article-body h2 {
  margin: 52px 0 16px;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.24;
  color: #000;
}

.article-body p {
  margin: 0 0 22px;
  font-size: 17px;
  line-height: 1.74;
  color: #222;
}

.article-body p:last-child {
  margin-bottom: 0;
}

.article-body a {
  color: #3a6400;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-body a:hover {
  color: #a5c736;
}

.article-body ul,
.article-body ol {
  margin: 0 0 24px;
  padding-left: 24px;
}

.article-body li {
  font-size: 17px;
  line-height: 1.74;
  color: #222;
  margin-bottom: 10px;
}

.article-pull {
  margin: 40px 0;
  padding: 22px 26px;
  border-left: 5px solid #a5c736;
  background: rgba(165, 199, 54, 0.08);
  border-radius: 0 4px 4px 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.52;
  color: #111;
}

.article-inline-cta {
  margin: 44px 0;
  padding: 22px 26px;
  background: #111;
  border-radius: 4px;
  color: #f0f0f0;
  font-size: 16px;
  line-height: 1.55;
}

.article-inline-cta a {
  color: #a5c736;
  font-weight: 700;
  text-decoration: none;
}

.article-inline-cta a:hover {
  text-decoration: underline;
}

/* ================================================
   ARTICLE — related posts strip
   ================================================ */

.article-related {
  padding: 52px 0 28px;
}

.article-related h2 {
  margin: 0 0 22px;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  text-align: center;
}

/* ================================================
   BLOG CARD — thumbnail image
   ================================================ */

.blog-card-image {
  width: 100%;
  height: 210px;
  overflow: hidden;
  flex-shrink: 0;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.04);
}

/* ================================================
   ARTICLE — inline SVG illustrations
   ================================================ */

.article-figure {
  margin: 40px 0;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #e8e8e8;
  background: #f9f9f7;
}

.article-figure-visual {
  width: 100%;
  display: block;
  background: #f3f7e8;
}

.article-figure-visual svg {
  display: block;
  width: 100%;
  height: auto;
}

.article-figure figcaption {
  padding: 12px 18px;
  font-size: 13px;
  color: #777;
  text-align: center;
  border-top: 1px solid #e8e8e8;
  font-style: italic;
  background: #fff;
}

/* ================================================
   ARTICLE — cover photo
   ================================================ */

.article-cover {
  width: 100%;
  margin: 0 0 42px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}

.article-cover img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.article-cover figcaption {
  padding: 10px 16px;
  font-size: 12px;
  color: #888;
  text-align: center;
  font-style: italic;
  background: #f8f8f8;
  border-top: 1px solid #eee;
}

/* ================================================
   HOMEPAGE BLOG STRIP
   ================================================ */

.home-blog-strip {
  padding: 60px 0 64px;
  background: #0a0a0a;
}

.home-blog-strip .home-blog-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.home-blog-strip h2 {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
}

.home-blog-strip .home-blog-subhead {
  font-size: 15px;
  color: #888;
  margin: 0 0 32px;
}

.home-blog-strip .home-blog-subhead a {
  color: #a5c736;
  text-decoration: none;
  font-weight: 700;
}

.home-blog-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

/* ================================================
   RESPONSIVE
   ================================================ */

@media screen and (max-width: 760px) {
  .home-blog-cards {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card-image {
    height: 180px;
  }

  .blog-card-title {
    font-size: 18px;
  }

  .article-hero {
    min-height: 400px;
    padding-top: 110px;
  }

  .article-cover img {
    height: 200px;
  }

  .article-body {
    padding: 40px 22px 48px;
  }

  .article-lead {
    font-size: 17px;
  }

  .article-body h2 {
    font-size: 21px;
    margin: 40px 0 14px;
  }

  .article-body p,
  .article-body li {
    font-size: 16px;
  }

  .article-pull {
    font-size: 16px;
    padding: 18px 18px;
    margin: 30px 0;
  }

  .article-inline-cta {
    padding: 18px 20px;
    font-size: 15px;
  }
}
