/* 新闻列表横排缩略图统一尺寸（posts-grid horizontal） */
.blog .posts-grid.horizontal .post-box {
  align-items: stretch;
}
.blog .posts-grid.horizontal .post-link {
  flex: 0 0 260px;
  width: 260px;
  max-width: 38%;
}
.blog .posts-grid.horizontal .post-img-wrapper {
  width: 100%;
  height: 180px;
  min-height: 180px;
  max-height: none;
  margin-bottom: 0;
}
.blog .posts-grid.horizontal .post-img-wrapper .post-img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  display: block;
}
.blog .posts-grid.horizontal .post-summary {
  flex: 1;
  min-width: 0;
}
@media (max-width: 767px) {
  .blog .posts-grid.horizontal .post-link {
    flex: none;
    width: 100%;
    max-width: none;
  }
  .blog .posts-grid.horizontal .post-img-wrapper {
    height: 200px;
    min-height: 200px;
  }
  .blog .posts-grid.horizontal .post-img-wrapper .post-img {
    min-height: 200px;
  }
}

/* 侧栏推荐文章缩略图 */
.blog .recent-posts .r-post-img-wrapper {
  width: 72px;
  height: 72px;
}
.blog .recent-posts .r-post-img {
  object-fit: cover;
  display: block;
}
