.c-blog-index {
  padding-top: 5rem;
}

.c-blog-index__inner {
  padding-block: 4rem;
}

.c-blog-index__header {
  text-align: center;
  margin-bottom: 4rem;
}

.c-blog-index__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1.5rem;
}

.c-blog-index__lede {
  font-size: 1.25rem;
  color: var(--color-slate-400);
  max-width: 48rem;
  margin-inline: auto;
}

.c-blog-index__grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
}

.c-blog-index__cta {
  background: linear-gradient(to bottom right, rgba(245, 158, 11, 0.1), rgba(217, 119, 6, 0.05));
  border-color: rgba(245, 158, 11, 0.2);
  text-align: center;
}

.c-blog-index__cta-content {
  padding: 2rem;
}

.c-blog-index__cta h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.c-blog-index__cta p {
  color: var(--color-slate-300);
  max-width: 42rem;
  margin: 0 auto 1.5rem;
}

.c-blog-index__cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .c-blog-index__title {
    font-size: 3rem;
  }

  .c-blog-index__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
