/* 外层区块基础 */
.recent-blog {
  width: 100%;
  padding: 70px 0;
  box-sizing: border-box;
}
.recent-blog__container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}
.recent-blog__title {
  font-weight: bold;
  color: #1e293b;
  text-align: center;
  margin-bottom: 40px;
}

/* 左右网格布局 */
.recent-blog__wrap {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
}

/* 左侧大卡片 */
.recent-blog__big-card {
  width: 48%;
  max-width: 610px;
  background: #f5f5f5;
  border-radius: 30px;
  border: 1px solid #eeeeee;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px 25px;
  box-sizing: border-box;
}
.recent-blog__big-card-text .recent-blog__card-title a {
  font-weight: bold;
  color: #1e293b;
}
.recent-blog__big-card-text .recent-blog__card-description {
  font-weight: 400;
  color: #1e293b;
  line-height: 30px;
  margin-top: 10px;
  margin-bottom: 30px;
}
.recent-blog__big-card-img {
  width: 100%;
  max-width: 540px;
}
.recent-blog__big-card-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* 右侧小卡片列表容器 */
.recent-blog__small-card-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
/* 单张小卡片 */
.recent-blog__small-card {
  flex: 1;
  background: #f5f5f5;
  border-radius: 30px;
  border: 1px solid #eeeeee;
  padding: 15px 30px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 20px;
}
.recent-blog__small-card-img {
  width: 36%;
  max-width: 200px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.recent-blog__small-card-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.recent-blog__small-card-title a {
  font-weight: bold;
  color: #1e293b;
}
.recent-blog__small-card-description {
  font-weight: 400;
  color: #1e293b;
  line-height: 30px;
  margin-top: 10px;
}
.recent-blog__btn-learn {
  width: 90%;
  max-width: 200px;
  height: 40px;
  line-height: 40px;
  background: #3b82f6;
  border-radius: 6px;
  font-weight: bold;
  font-size: 20px;
  color: #fff;
  text-align: center;
  margin-top: 18px;
  display: block;
}
.recent-blog__btn {
  width: 90%;
  max-width: 270px;
  height: 50px;
  line-height: 50px;
  background: #3b82f6;
  border-radius: 6px;
  font-weight: bold;
  font-size: 20px;
  color: #fff;
  text-align: center;
  margin: 40px auto 0;
  display: block;
}

@media screen and (max-width: 760px) {
  .recent-blog__wrap {
    flex-direction: column;
  }
  .recent-blog__big-card {
    width: 100%;
  }
  .recent-blog__small-card {
    flex-direction: column;
    padding: 30px 25px;
  }
  .recent-blog__small-card-img {
    width: 100%;
    max-width: 540px;
  }
  .recent-blog__btn-learn {
    margin: 20px auto 0;
  }
}

@media screen and (min-width: 760px) and (max-width: 1020px) {
  .recent-blog__wrap {
    flex-direction: column;
  }
  .recent-blog__big-card {
    width: 100%;
  }
}

@media screen and (min-width: 1020px) and (max-width: 1350px) {
  .recent-blog__wrap {
    flex-direction: column;
  }
  .recent-blog__big-card {
    width: 100%;
  }
}
