/* ==========================================================================
   10. Blog page
   ========================================================================== */

.blog-page-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 86px;
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 245, 138, .18), transparent 42%),
    linear-gradient(180deg, #080c0a 0%, #020303 100%);
  color: var(--white);
}

.blog-hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}

.blog-hero-content .section-kicker {
  justify-content: center;
}

.blog-hero-content h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.04em;
}

.blog-hero-content p {
  max-width: 720px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, .74);
  font-size: 17px;
  line-height: 1.7;
}

.blog-list-section {
  padding: 94px 0 104px;
  background:
    radial-gradient(circle at 10% 10%, rgba(0, 245, 138, .06), transparent 30%),
    #0f1112;
}

.blog-page-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.blog-page-heading h2 {
  max-width: 700px;
  margin: 0;
  color: var(--white);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.025em;
}

.blog-page-heading p {
  max-width: 650px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: 16px;
  line-height: 1.6;
}

.blog-page .article-grid article {
  transition: transform .28s ease, box-shadow .28s ease;
}

.blog-page .article-grid article:hover {
  transform: translateY(-7px);
  box-shadow: 0 34px 72px rgba(0, 0, 0, .38);
}

.blog-page .article-grid article > a {
  margin-bottom: 26px;
}

.blog-cta {
  padding: 80px 0;
  background: var(--green);
  color: #00140a;
}

.blog-cta .container {
  max-width: 780px;
}

.blog-cta .section-kicker {
  color: #00663b;
}

.blog-cta h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.025em;
}

.blog-cta p {
  max-width: 620px;
  margin: 18px auto 28px;
  color: #004b2b;
  font-size: 16px;
  font-weight: 600;
}

.blog-cta-button {
  background: #00140a;
  color: var(--white);
}

.blog-cta-button:hover {
  background: #0b2a1c;
  color: var(--white);
}

@media (max-width: 768px) {
  .blog-page-hero,
  .blog-list-section,
  .blog-cta {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .blog-page-heading {
    margin-bottom: 32px;
  }
}
