.site-header .header-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.blog-page {
  max-width: 1480px;
  padding: 118px 32px 120px;
}

.featured-post {
  grid-template-columns: minmax(320px, 0.78fr) minmax(420px, 1.22fr);
  gap: 0;
  border: 0;
  border-radius: 18px;
  box-shadow: 0 26px 70px #7357ff18;
}

.featured-post-copy {
  min-height: 430px;
  padding: 58px 64px;
}

.featured-post h2 {
  font-size: 44px;
  line-height: 1.22;
}

.featured-post p {
  font-size: 20px;
}

.featured-post-media {
  min-height: 430px;
  background: linear-gradient(135deg, #eef1ff, #fff3fb);
}

.blog-list {
  grid-template-columns: repeat(2, minmax(300px, 1fr));
  gap: 34px;
  max-width: 930px;
}

.blog-card {
  border: 0;
  border-radius: 16px;
  box-shadow: 0 20px 46px #1b234019;
}

.blog-card img {
  aspect-ratio: 16 / 9;
}

.blog-card div {
  padding: 28px 30px 32px;
}

.blog-card h2 {
  font-size: 28px;
  line-height: 1.28;
}

.article {
  max-width: 920px;
  padding: 88px 24px 110px;
}

.article h1 {
  font-size: 44px;
}

.article-cover {
  display: block;
  width: 100%;
  margin: 34px auto 40px;
  border-radius: 18px;
  box-shadow: 0 22px 58px #7357ff1f;
}

.article-body h2 {
  margin: 42px 0 14px;
  color: #171a2f;
}

.article > .article-body {
  margin-top: 34px;
}

.article-body h3 {
  margin: 30px 0 10px;
  color: #171a2f;
  font-size: 21px;
}

.article-body table {
  width: 100%;
  margin: 24px 0;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 0 0 1px #e7e8f5;
}

.article-body th,
.article-body td {
  padding: 14px 16px;
  border: 1px solid #e7e8f5;
  text-align: left;
  vertical-align: top;
}

.article-body th {
  background: #f4f1ff;
}

.article-body figure {
  margin: 28px 0 34px;
}

.article-body figure img {
  margin: 0 auto;
}

.article-body figcaption {
  margin-top: 10px;
  color: #7b8798;
  font-size: 14px;
  text-align: center;
}

@media (max-width: 720px) {
  .site-header .header-actions {
    gap: 18px;
  }

  .blog-page {
    padding: 54px 20px 86px;
  }

  .featured-post {
    grid-template-columns: 1fr;
  }

  .featured-post-copy {
    min-height: auto;
    padding: 32px 26px;
  }

  .featured-post h2 {
    font-size: 30px;
  }

  .featured-post p {
    font-size: 16px;
  }

  .featured-post-media {
    min-height: 220px;
  }

  .blog-list {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .article {
    padding: 54px 20px 84px;
  }

  .article h1 {
    font-size: 32px;
  }
}

.site-footer {
  padding: 28px 24px 34px;
  text-align: center;
  color: #8a91a3;
  font-size: 12px;
  line-height: 1.6;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s ease;
}

.site-footer a:hover {
  color: #7357ff;
}
