:root {
  --sung-news-list-pb: 50px 0;
  --sung-news-list-pic-height: 200px;
  --sung-news-list-title-size: 20px;
  --sung-news-list-text-size: 18px;
}

.sung_news_list {
  padding: var(--sung-news-list-pb);
}

.sung_news_list ul li {
  margin-bottom: 40px;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  list-style: none; 
  padding: 0;
}
.sung_news_list ul li:hover {
  background: rgba(0, 0, 0, 0.04);
  border-radius: 4px; 
  transition: background 0.2s; 
}

.sung_news_list ul li .pic {
  flex-shrink: 0; 
}
.sung_news_list ul li .pic img {
  display: block;
  height: var(--sung-news-list-pic-height);
  aspect-ratio: 5 / 4;
  object-fit: cover;
  width: 100%; 
}

.sung_news_list ul li .t {
  height: var(--sung-news-list-pic-height);
  padding: 15px 40px 20px 0;
  -webkit-flex: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border-bottom: 1px solid #e5e5e5;
}

.sung_news_list ul li .t span {
  line-height: 1.25;
  font-size: 16px;
  color: var(--text-color);
}

.sung_news_list ul li .t h5 {
  margin-bottom: 10px;
  color: var(--title-text-color);
  font-size: var(--sung-news-list-title-size);
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 0;
}

.sung_news_list ul li .t h5 a {
  color: inherit;
  text-decoration: none; 
}
.sung_news_list ul li .t h5:hover a {
  color: #022565;
}

.sung_news_list ul li .t p {
  font-size: var(--sung-news-list-text-size);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text-color);
  margin: 0; 
}

@media screen and (max-width: 1500px) {
  :root {
    --sung-news-list-pb: 70px;
  }
}
@media screen and (max-width: 1280px) {
  :root {
    --sung-news-list-pb: 40px 0;
    --sung-news-list-title-size: 18px;
    --sung-news-list-text-size: 16px;
    --sung-news-list-pic-height: 180px;
  }
}
@media screen and (max-width: 1200px) {
  :root {
    --sung-news-list-pb: 40px 0;
    --sung-news-list-pic-height: 160px;
  }
}
@media screen and (max-width: 992px) {
  :root {
    --sung-news-list-pb: 30px 0;
    --sung-news-list-pic-height: 140px;
  }
  .sung_news_list ul li .t span {
    font-size: 14px;
  }
  .sung_news_list ul li .t {
    padding: 0 20px 5px 0;
  }
}

@media screen and (max-width: 768px) {
  :root {
    --sung-news-list-pb: 30px 0;
    --sung-news-list-pic-height: 120px;
    --sung-news-list-text-size: 16px;
  }
  .sung_news_list ul li .t h5 {
    -webkit-line-clamp: 2;
    line-clamp: 2;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 576px) {
  :root {
    --sung-news-list-pb: 30px 10px;
    --sung-news-list-pic-height: 180px;
  }

  .sung_news_list ul li {
    flex-direction: column; 
    gap: 16px;
    margin-bottom: 30px; 
  }

  .sung_news_list ul li .t {
    height: auto; 
    padding: 0;
    border-bottom: none; 
    gap: 8px; 
  }

  .sung_news_list ul li .pic img {
    height: auto; 
    min-height: var(--sung-news-list-pic-height); 
  }

  .sung_news_list ul li .t p {
    line-height: 1.4;
  }
  .sung_news_list ul li .t span {
    font-size: 13px;
  }
}