.blog-list-wrapper {
  max-width: 1060px;
  margin: 0 auto 80px auto;
  padding: 0 10px;
}
.blog-title {
  font-size: 2.1em;
  font-weight: 800;
  margin: 44px 0 36px 0;
  text-align: center;
  letter-spacing: 0.01em;
  color: #171717;
}
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 32px;
  justify-content: flex-start;
}
.blog-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 rgba(60, 60, 90, 0.08), 0 1px 3px 0 rgba(0,0,0,0.03);
  border: 1px solid #efefef;
  flex: 0 1 calc(33% - 28px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow .17s, border .14s;
}
.blog-card:hover {
  box-shadow: 0 5px 22px 0 rgba(50,50,70,0.15), 0 2px 6px 0 rgba(0,0,0,0.04);
  border: 1px solid #d0d0d0;
}
.blog-card__img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  border-radius: 16px 16px 0 0;
  transition: transform .15s;
}
.blog-card__img:hover img {
  transform: scale(1.025);
}
.blog-card__body {
  padding: 22px 22px 18px 22px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.blog-card__title {
  font-size: 1.16em;
  font-weight: 700;
  margin: 0 0 11px 0;
  color: #232323;
  line-height: 1.22;
}
.blog-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color .18s;
}
.blog-card__title a:hover {
  color: #666;
}
.blog-card__meta {
  font-size: 0.98em;
  color: #aaa;
  margin-bottom: 8px;
}
.blog-card__excerpt {
  font-size: 1.06em;
  color: #444;
  margin-bottom: 15px;
  min-height: 2.1em;
  line-height: 1.57;
  flex: 1 1 auto;
}
.blog-card__more {
  align-self: flex-start;
  background: #fafbfc;
  color: #333;
  font-weight: 500;
  border-radius: 6px;
  padding: 7px 18px 8px 18px;
  text-decoration: none;
  font-size: 1.07em;
  margin-top: 12px;
  border: 1px solid #e0e0e0;
  box-shadow: none;
  transition: background .15s, color .14s, border .14s;
}
.blog-card__more:hover {
  background: #ededed;
  color: #000;
  border: 1px solid #bfbfbf;
}
.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin: 36px 0 18px 0;
}
.blog-seo-block {
  margin-top: 54px;
  padding: 24px 16px;
  background: #f7f7fa;
  border-radius: 11px;
  font-size: 1.08em;
  color: #404040;
  text-align: center;
  font-weight: 500;
}

.blog-article {
  max-width: 720px;
  margin: 40px auto 56px auto;
  background: #fff;
  padding: 34px 28px 30px 28px;
  border-radius: 15px;
  box-shadow: 0 6px 24px 0 rgba(90,90,120,.07), 0 1.5px 5px 0 rgba(0,0,0,0.04);
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #232323;
  line-height: 1.65;
}
.blog-article h1 {
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 16px 0;
  line-height: 1.1;
  letter-spacing: -.01em;
}
.blog-article__meta {
  display: flex;
  gap: 12px;
  font-size: 1rem;
  color: #999;
  margin-bottom: 14px;
}
.blog-article__mainphoto {
  margin-bottom: 20px;
  text-align: center;
}
.blog-article__mainphoto img {
  max-width: 94%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(80,80,120,0.09);
}
.blog-article h2 {
  color: #3751ff;
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: 25px;
  margin-bottom: 10px;
}
.blog-article h3 {
  color: #222;
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 14px;
  margin-bottom: 7px;
}
.blog-article p {
  font-size: 1.02rem;
  margin: 0 0 12px 0;
  line-height: 1.68;
}
.blog-article ul, .blog-article ol {
  margin-left: 19px;
  margin-bottom: 11px;
  font-size: 1rem;
  line-height: 1.65;
}
.blog-article li {
  margin-bottom: 5px;
}
a.blog-article__back {
  display: inline-block;
  margin-bottom: 15px;
  color: #3751ff;
  text-decoration: none;
  font-weight: 500;
  transition: color .2s;
  font-size: 0.95rem;
}
a.blog-article__back:hover {
  color: #232323;
  text-decoration: underline;
}

@media (max-width: 900px) {
  .blog-list { gap: 32px 20px; }
  .blog-card { flex: 0 1 calc(50% - 16px); }
}
@media (max-width: 600px) {
  .blog-card { flex: 0 1 100%; }
  .blog-title { font-size: 1.5em; margin: 28px 0 24px 0; }
}
@media (max-width: 800px) {
  .blog-article { padding: 15px 3px 18px 3px; }
  .blog-article h1 { font-size: 1.18rem; }
  .blog-article h2 { font-size: 1rem; }
  .blog-article__meta { flex-direction: column; gap: 3px; }
}
