.hengsheng_featured_news {
  padding-top:  var(--component-gap);
  background: var(--bg-color);
}

.hengsheng_featured_news_header {
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.hengsheng_featured_news_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: 1.1;
  letter-spacing: -0.03em;
  text-transform: capitalize;
  max-width: 66%;
}

.hengsheng_featured_news_action {
  min-height: 48px;
  padding: 0 10px 0 20px;
  border: 1px solid var(--title-text-color);
  border-radius: 30px;
  background: #f6f6f4;
  color: var(--title-text-color);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
  transition: background-color 0.28s ease, color 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
}

.hengsheng_featured_news_action:hover {
  background: var(--title-text-color);
  border-color: var(--title-text-color);
  color: var(--color-second);
}

.hengsheng_featured_news_action_text {
  font-family: var(--font-family-semi-bold);
  font-size: var(--text-size);
  font-weight: 600;
  line-height: 1.2;
  text-transform: capitalize;
}

.hengsheng_featured_news_action_icon {
  width: 39px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.28s ease;
}

.hengsheng_featured_news_action_icon svg {
  width: 100%;
  height: 100%;
}

.hengsheng_featured_news_action:hover .hengsheng_featured_news_action_icon {
  transform: translateX(4px);
}

.hengsheng_featured_news_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.hengsheng_featured_news_card {
  min-width: 0;
  background: #f6f6f4;
  overflow: hidden;
}

.hengsheng_featured_news_media {
  width: 100%;
  aspect-ratio: 464 / 343;
  display: block;
  overflow: hidden;
}

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

.hengsheng_featured_news_card:hover .hengsheng_featured_news_media img {
  transform: scale(1.04);
}

.hengsheng_featured_news_body {
  min-height: 337px;
  padding: 56px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hengsheng_featured_news_date {
  margin: 0;
  color: rgba(38, 41, 43, 0.9);
  font-family: var(--font-family-medium);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2142857143;
}

.hengsheng_featured_news_text {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hengsheng_featured_news_card_title {
  margin: 0;
  color: var(--title-text-color);
  font-family: var(--font-family-semi-bold);
  font-size: var(--title-size-h5);
  font-weight: 600;
  line-height: 1.2;
}

.hengsheng_featured_news_card_title a {
  color: inherit;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;   /* 行数 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hengsheng_featured_news_desc {
  margin: 0;
  color: rgba(125, 125, 125, 0.9);
  font-family: var(--font-family-medium);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875;
  display: -webkit-box;
  -webkit-line-clamp: 3;   /* 行数 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

  .hengsheng_featured_news_title {
    
  }

  .hengsheng_featured_news_body {
    min-height: 320px;
    padding-top: 48px;
  }
}

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

  .hengsheng_featured_news_header {
    margin-bottom: 48px;
  }

  .hengsheng_featured_news_title {
    
  }

  .hengsheng_featured_news_grid {
    gap: 20px;
  }

  .hengsheng_featured_news_body {
    min-height: 300px;
    padding: 40px 20px 20px;
    gap: 24px;
  }

  .hengsheng_featured_news_text {
    gap: 18px;
  }

}

@media screen and (max-width: 1200px) {
  .hengsheng_featured_news_title {
    
  }


  .hengsheng_featured_news_desc {
    font-size: 15px;
    line-height: 1.6666666667;
  }
}

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

  .hengsheng_featured_news_header {
    margin-bottom: 36px;
    align-items: flex-start;
    flex-direction: column;
  }

  .hengsheng_featured_news_title {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
  .hengsheng_featured_news_action{
     margin: auto;
  }

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

  .hengsheng_featured_news_body {
    min-height: 0;
  }
}

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

  .hengsheng_featured_news_grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hengsheng_featured_news_header {
    gap: 18px;
  }

  .hengsheng_featured_news_action {
    min-height: 44px;
    padding-left: 16px;
  }


  .hengsheng_featured_news_body {
    padding: 28px 16px 18px;
    gap: 18px;
  }

  .hengsheng_featured_news_text {
    gap: 14px;
  }

  .hengsheng_featured_news_desc {
    font-size: 14px;
    line-height: 1.5714285714;
  }
}

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

  .hengsheng_featured_news_header {
    margin-bottom: 28px;
  }

  .hengsheng_featured_news_action {
    min-height: 40px;
    padding-left: 14px;
  }



  .hengsheng_featured_news_body {
    padding: 22px 14px 16px;
  }
}
