:root {
  --sung-news-headline-mb: 70px;
  --sung-news-headline-title-size: 20px;
  --sung-news-headline-text-size: 18px;
  --sung-news-headline-left-padding: 47px 70px 90px 130px;
  --sung-news-headline-swiper-button: 50px;
}

.sung_news_headline {
  margin-top: var(--sung-news-headline-mb);
  margin-bottom: var(--sung-news-headline-mb);
}

.sung_news_headline .list {
  background-color: #e9e9e9;
}

.sung_news_headline .box {
  display: flex;
  position: relative;
}

.sung_news_headline .box .right {
  flex: 1;
  width: 50%;
  aspect-ratio: 2;
  object-fit: cover;
}
.sung_news_headline .box .right-link {
  position: absolute;
  width: 50%;
  height: 100%;
  background-color: red;
  opacity: 0;
  left: 50%;
  top: 0;
}

.sung_news_headline .box .left {
  flex: 1;
  width: 50%;
  padding: var(--sung-news-headline-left-padding);
}

.sung_news_headline .box .left .title {
  margin-bottom: 40px;
  display: inline-block;
  background-color: var(--color-second);
  padding: 5.5px 10px 6.5px 8px;
  text-align: center;
  color: #fff;
  font-size: var(--sung-news-headline-text-size);
  font-weight: 600;
  line-height: normal;
}

.sung_news_headline .box .left h5 {
  margin-bottom: 10px;
  color: var(--title-text-color);
  font-size: var(--sung-news-headline-title-size);
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sung_news_headline .box .left h5:hover a {
  color: var(--color-second);
}

.sung_news_headline .box .left p {
  margin-bottom: 10px;
  color: var(--text-color);
  font-size: var(--sung-news-headline-text-size);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sung_news_headline .box .left span {
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.25;
}

.sung_news_headline .swiper .swiper-pagination {
  transform: translateX(-50%);
  left: 160px;
  bottom: 40px;
}
.sung_news_headline .swiper-pagination-bullet {
  height: 4px;
  width: 4px;
  background: rgba(18, 18, 18, 0.5);
  margin: 0 6px;
  border-radius: 50%;
  opacity: 1;
}
.sung_news_headline .swiper-pagination-bullet-active {
  width: 20px;
  height: 4px;
  background: #121212;
  border-radius: 2px;
}
.sung_news_headline .swiper .swiper-button-prev,
.sung_news_headline .swiper .swiper-button-next {
  width: var(--sung-news-headline-swiper-button);
  height: var(--sung-news-headline-swiper-button);
  background: rgba(240, 240, 240, 0.7);
  color: var(--title-text-color);
  text-align: center;
}
.sung_news_headline .swiper .swiper-button-next {
  background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0.5) 100%
    ),
    rgba(240, 240, 240, 0.2);
  color: #fff;
}
.sung_news_headline .swiper .swiper-button-prev::after,
.sung_news_headline .swiper .swiper-button-next::after {
  display: none;
}
.sung_news_headline .swiper .swiper-button-prev i,
.sung_news_headline .swiper .swiper-button-next i {
  font-size: 20px;
  line-height: 50px;
  color: inherit;
}
.sung_news_headline .swiper .swiper-button-prev {
  left: 10px;
}
.sung_news_headline .swiper .swiper-button-next {
  right: 10px;
}
.sung_news_headline .swiper .swiper-button-prev:hover {
  background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0.5) 100%
    ),
    rgba(240, 240, 240, 0.2);
  color: #fff;
}

.sung_news_headline .swiper .swiper-button-next:hover {
  background: rgba(240, 240, 240, 0.7);
  color: var(--title-text-color);
}

@media screen and (max-width: 1500px) {
  :root {
    --sung-news-headline-mb: 60px;
    --sung-news-headline-title-size: 20px;
    --sung-news-headline-text-size: 18px;
    --sung-news-headline-left-padding: 47px 70px 80px 120px;
  }
  .sung_news_headline .swiper .swiper-pagination {
    left: 150px;
  }
}

@media screen and (max-width: 1280px) {
  :root {
    --sung-news-headline-mb: 50px;
    --sung-news-headline-title-size: 18px;
    --sung-news-headline-text-size: 16px;
    --sung-news-headline-left-padding: 47px 70px 70px 110px;
  }
  .sung_news_headline .swiper .swiper-pagination {
    left: 135px;
  }
}

@media screen and (max-width: 1200px) {
  :root {
    --sung-news-headline-mb: 40px;
    --sung-news-headline-title-size: 18px;
    --sung-news-headline-text-size: 16px;
    --sung-news-headline-left-padding: 47px 70px 60px 100px;
  }
  .sung_news_headline .swiper .swiper-pagination {
    left: 128px;
    bottom: 25px;
  }
  .sung_news_headline .box .left span {
    font-size: 14px;
  }
}

@media screen and (max-width: 992px) {
  :root {
    --sung-news-headline-mb: 30px;
    --sung-news-headline-title-size: 16px;
    --sung-news-headline-text-size: 14px;
    --sung-news-headline-left-padding: 47px 20px 50px 50px;
    --sung-news-headline-swiper-button: 40px;
  }
  .sung_news_headline .swiper .swiper-button-prev {
    left: 0;
  }
  .sung_news_headline .swiper .swiper-button-next {
    right: 0;
  }
  .sung_news_headline .box .left .title {
    margin-bottom: 20px;
  }
  .sung_news_headline .swiper .swiper-pagination {
    left: 77px;
  }
}

@media screen and (max-width: 768px) {
  :root {
    --sung-news-headline-mb: 30px;
    --sung-news-headline-title-size: 16px;
    --sung-news-headline-text-size: 14px;
    --sung-news-headline-left-padding: 47px 20px 50px 20px;
  }
  .sung_news_headline .swiper .swiper-pagination {
    left: 48px;
  }
  .sung_news_headline .swiper .swiper-button-prev,
  .sung_news_headline .swiper .swiper-button-next {
    display: none;
  }
}

@media screen and (max-width: 576px) {
  :root {
    --sung-news-headline-mb: 30px;
    --sung-news-headline-title-size: 16px;
    --sung-news-headline-text-size: 14px;
  }
  .sung_news_headline .swiper .swiper-pagination {
    left: 50px;
  }
}


@media(max-width:480px){
  .sung_news_headline .box {flex-direction: column;}
  .sung_news_headline .box .right {width: 100%;}
  .sung_news_headline .box .left {width: 100%;}
  .sung_news_list ul li {flex-direction: column;gap: 10px;}  
  .sung_news_list ul li .pic img {width: 100%;height: auto !important;}
}