.blog-page {
  margin: 0;
  background: #f8faff;
  color: #17233b;
}

.blog-index-card {
  width: min(960px, 100%);
  text-align: left;
}

.blog-index-card > .public-info__eyebrow,
.blog-index-card > h1,
.blog-index-card > .public-info__message {
  text-align: center;
}

.blog-post-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 36px 0 0;
}

.blog-post-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 24px;
  border: 1px solid #e0e5f1;
  border-radius: 18px;
  background: #fbfcff;
}

.blog-post-card h2 {
  margin: 0;
  font-size: 19px;
  line-height: 1.45;
  letter-spacing: -.35px;
}

.blog-post-card p {
  margin: 14px 0 22px;
  color: #5d6982;
  font-size: 15px;
  line-height: 1.7;
}

.blog-post-card a,
.blog-back-link {
  color: #4d4be0;
  font-weight: 750;
  text-decoration: none;
}

.blog-post-card a {
  margin-top: auto;
}

.blog-post-card a:hover,
.blog-back-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.blog-live-trends-heading {
  margin: 46px 0 0;
  font-size: 22px;
  line-height: 1.4;
  text-align: center;
}

.blog-article-shell {
  box-sizing: border-box;
  width: min(820px, 100%);
  margin: 0 auto;
  padding: 72px 24px 96px;
}

.blog-back-link {
  display: inline-flex;
  margin-bottom: 30px;
}

.blog-article {
  padding: clamp(30px, 6vw, 64px);
  border: 1px solid #e0e5f1;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 52px rgba(42, 55, 98, .09);
}

.blog-article__eyebrow {
  margin: 0 0 12px;
  color: #5654e9;
  font-size: 14px;
  font-weight: 800;
}

.blog-article h1 {
  margin: 0;
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.35;
  letter-spacing: -1px;
}

.blog-article__description {
  margin: 20px 0 38px;
  padding-bottom: 32px;
  border-bottom: 1px solid #e8ebf3;
  color: #53617b;
  font-size: 18px;
  line-height: 1.75;
}

.blog-article__body h2 {
  margin: 36px 0 12px;
  font-size: 22px;
  line-height: 1.45;
  letter-spacing: -.45px;
}

.blog-article__body h2:first-child {
  margin-top: 0;
}

.blog-article__body p {
  margin: 0 0 16px;
  color: #33415c;
  font-size: 17px;
  line-height: 1.85;
  overflow-wrap: anywhere;
}

@media (max-width: 760px) {
  .blog-post-list {
    grid-template-columns: 1fr;
  }

  .blog-live-trends-heading {
    margin-top: 38px;
  }

  .blog-article-shell {
    padding: 42px 16px 64px;
  }

  .blog-article {
    border-radius: 20px;
  }
}
