.blog-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 92px 0 84px;
	color: #ffffff;
}
.blog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.blog-hero .container {
  position: relative;
  z-index: 1;
}
.blog-hero .meta {
  margin-top: 16px;
  font-size: 0.95rem;
  opacity: 0.9;
}

.blog-wrap {
  padding: 72px 0;
}
.blog-article {
  max-width: 820px;
  margin: 0 auto;
}

.blog-article .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  margin-bottom: 14px;
  opacity: 0.75;
}

.blog-article h2 {
  margin-top: 44px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.blog-article p {
  margin: 18px 0;
  line-height: 1.85;
}

.blog-article ul {
  margin: 18px 0 18px 1.25rem;
	list-style: unset;
}
.blog-article li {
  margin: 10px 0;
  line-height: 1.7;
}

/* Simple in-article callout box */
.blog-callout {
  margin: 34px 0;
  padding: 22px 22px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.03);
}
.blog-callout .title {
  font-weight: 700;
  margin-bottom: 8px;
}
.blog-callout p {
  margin: 10px 0;
}

/* CTA at bottom */
.blog-cta {
  margin-top: 54px;
  padding-top: 34px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}
.blog-cta .text {
  max-width: 540px;
}
.blog-cta .btn-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Optional: subtle anchor offset for sticky headers */
.blog-anchor {
  scroll-margin-top: 110px;
}

@media (max-width: 768px) {
  .blog-hero {
    padding: 84px 0 72px;
  }
  .blog-wrap {
    padding: 56px 0;
  }
  .blog-cta {
    gap: 18px;
  }
}