.hengsheng_news_list {
  padding-bottom: var(--component-gap);
  background: #F6F6F6;
}

.hengsheng_news_list_header {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hengsheng_news_list_title {
  margin: 0;
  color: var(--title-text-color);
  font-family: var(--font-family-semi-bold);
  font-size: var(--title-size-h2);
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
}

.hengsheng_news_list_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 60px;
  margin-top: 60px;
}

.hengsheng_news_list_card {
  min-width: 0;
  background: #FFF;
  box-shadow: 0 5px 50px 0 rgba(0, 0, 0, 0.18);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hengsheng_news_list_card_media {
  width: 100%;
  aspect-ratio: 217/163;
  display: block;
  overflow: hidden;
}

.hengsheng_news_list_card_image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hengsheng_news_list_card:hover .hengsheng_news_list_card_image {
  transform: scale(1.04);
}

.hengsheng_news_list_card_body {
  flex: 1;
  padding: 50px 40px 30px;
}

.hengsheng_news_list_card_date {
  margin: 0;
  color: #7D7D7D;
  font-family: var(--font-family-semi-bold);
  font-size: var(--text-size);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.hengsheng_news_list_card_text {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hengsheng_news_list_card_title {
  margin: 0;
  color: #000;
  font-family: var(--font-family-semi-bold);
  font-size: var(--title-size-h3);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.hengsheng_news_list_card_title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.28s ease;
  display: -webkit-box;
  -webkit-line-clamp: 3;   /* 行数 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hengsheng_news_list_card_title a:hover {
  color: var(--color-primary);
}

.hengsheng_news_list_card_desc {
  margin: 0;
  color: #000;
  font-family: var(--font-family);
  font-size: var(--text-size-sm);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  text-overflow: ellipsis;
  overflow: hidden;
}



@media screen and (max-width: 1500px) {
  .hengsheng_news_list_grid{
    gap: 40px;
    margin-top: 40px;
  }
}

@media screen and (max-width: 1280px) {

  .hengsheng_news_list_card_body {
    padding: 30px;
  }
}

@media screen and (max-width: 992px) {
  .hengsheng_news_list_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 768px) {

  .hengsheng_news_list_grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hengsheng_news_list_card_body {
    padding: 20px;
  }
}
