
/* Blog CTA — документ стиль, без рамок */
.blog-cta {
  margin: 60px auto 40px;
  padding: 40px 20px 50px;
  max-width: 720px;
  border-top: 1px solid #131d29;
  border-bottom: 1px solid #131d29;
  text-align: center;
}
.blog-cta h2 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #131d29;
  margin: 0 0 16px;
}
.blog-cta p {
  font-size: 17px;
  line-height: 1.6;
  color: #424d5b;
  margin: 0 0 28px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.blog-cta__btn {
  display: inline-block;
  padding: 14px 32px;
  background: #131d29;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border-radius: 0;
  transition: background 0.2s ease;
}
.blog-cta__btn:hover {
  background: #fab61f;
  color: #131d29;
}

/* Article image */
.article-card .article-image {
  width: 100%;
  height: 200px;
  background: #131d29;
  overflow: hidden;
}
.article-card .article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
