.blog-page {
  background: #f7f9fe;
  color: #13213d;
}

.blog-hero {
  min-height: 100vh;
  color: #fff;
}

.blog-hero-content {
  min-height: 100vh;
}

.blog-hero .hero-right {
  max-width: 350px;
}

.blog-hero .hero-right h2 {
  max-width: 8ch;
}

.blog-directory-section {
  padding: 5rem 0;
}

.blog-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.editorial-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(46, 94, 170, 0.12);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(20, 43, 86, 0.08);
}

.editorial-card img {
  display: block;
  width: 100%;
  height: 220px;
  min-height: 220px;
  object-fit: cover;
  object-position: center;
}

.editorial-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.35rem;
}

.meta-pill {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.32rem 0.65rem;
  border-radius: 999px;
  background: #eaf2ff;
  color: #24569e;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.editorial-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.35rem;
  line-height: 1.15;
}

.editorial-card p {
  margin: 0 0 1rem;
  color: #58667f;
  line-height: 1.65;
}

.blog-link {
  margin-top: auto;
  color: #24569e;
  font-weight: 800;
  text-decoration: none;
}

.blog-link:hover,
.blog-link:focus-visible {
  text-decoration: underline;
}

.blog-route-links {
  padding: 4rem 0;
  background: #f5f8ff;
}

.blog-route-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .8rem;
}

.blog-route-link-grid a {
  display: block;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(46, 94, 170, .14);
  border-radius: 14px;
  background: #fff;
  color: #1a2540;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease;
}

.blog-route-link-grid a:hover,
.blog-route-link-grid a:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(23, 36, 66, .1);
}

.blog-cta {
  padding: 5rem 0;
  background: #eaf2ff;
}

.blog-cta p:not(.eyebrow) {
  color: #58667f;
  line-height: 1.7;
}

.blog-cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.blog-cta h2 {
  margin: 0.4rem 0 1rem;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: .98;
  letter-spacing: -.05em;
}

@media (max-width: 900px) {
  .blog-hub-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-hero .hero-left,
  .blog-hero .hero-right {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .blog-hero {
    min-height: 100svh;
  }

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

  .blog-hero-content {
    min-height: 100svh;
  }

  .blog-hero .hero-right {
    margin-bottom: 5rem;
  }

  .editorial-card img {
    height: 210px;
    min-height: 210px;
  }

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