.blog-section {
  width: 100%;
  padding: 50px 0px 70px;
  box-sizing: border-box;
  background: #f8f8f8;
}

.blog-section .blog__content {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

.blog-section .blog__title {
  font-weight: bold;
  color: #1e293b;
  text-align: center;
  margin-bottom: 40px;
}

.blog-section .blog__list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 35px;
}

.blog-section .blog__item-link {
  width: calc(100% / 3 - 25px);
  max-width: 440px;
  background: #ffffff;
  border-radius: 20px;
}

.blog-section .blog__item {
  width: 100%;
  padding: 18px 18px;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.blog-section .blog__item-img {
  width: 100%;
  max-width: 400px;
  height: 300px;
  flex-shrink: 0;
  background: #f4f4f5;
  margin: 0 auto;
}

.blog-section .blog__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-section .blog__item-text {
  width: 100%;
  padding: 25px 10px 10px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-section .blog__item-title {
  font-weight: bold;
  font-size: 20px;
  color: #1e293b;
  margin-bottom: 15px;
}

.blog-section .blog__item-description {
  font-weight: 400;
  font-size: 18px;
  color: #999999;
  line-height: 24px;
}

.blog-section .blog__item-top {
  width: 100%;
}

.blog-section .blog__item-bottom {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-top: 35px;
}

.blog-section .blog__item-bottom-info {
  display: flex;
  gap: 35px;
}

.blog-section .blog__item-time {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 18px;
  color: #666666;
}

.blog-section .blog__item-time img {
  width: 23px;
  margin-right: 10px;
  flex-shrink: 0;
}

/* 分页容器 */
.blog__pagination {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 50px;
  gap: 12px;
}
.blog__pagination ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.blog__pagination ul li {
  list-style: none;
}
/* 圆形按钮 */
.blog__pagination .page-numbers {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: #fff;
  border-radius: 50%;
  font-weight: 400;
  font-size: 18px;
  color: #1e293b;
  text-align: center;
  text-decoration: none;
}
/* 当前激活页 橙色圆形 */
.blog__pagination .page-numbers.current {
  background: #3b82f6;
  color: #fff;
  border-color: #3b82f6;
}
.blog__pagination a.page-numbers:hover {
  background: #3b82f6;
  color: #fff;
} /* 省略号 */
.blog__pagination .page-numbers.dots {
  line-height: 30px;
}
/* 禁用状态：第一页左箭头 / 最后一页右箭头 */
.blog__pagination .page-numbers.disabled {
  color: #bbbbbb;
  background: #ffffff;
  cursor: not-allowed;
  pointer-events: none;
}
.blog__pagination .page-numbers.prev {
  transform: rotate(180deg);
}

@media screen and (max-width: 760px) {
  .blog-section .blog__list {
    justify-content: center;
    gap: 20px;
  }

  .blog-section .blog__item-link {
    width: 100%;
  }

  .blog-section .blog__item-img {
    height: auto;
  }

  .blog-section .blog__item-img img {
    height: auto;
    object-fit: contain;
  }
}

@media screen and (min-width: 760px) and (max-width: 1020px) {
  .blog-section .blog__item-link {
    width: calc(100% / 2 - 17.5px);
  }
}

@media screen and (min-width: 1020px) and (max-width: 1350px) {
  .blog-section .blog__item-link {
    width: calc(100% / 2 - 17.5px);
  }
}

.blog__no-posts {
  width: 100%;
  padding: 120px 0px 148px;
  box-sizing: border-box;
  text-align: center;
  font-size: 18px;
  color: #030303;
}
