.baixiu_news {
  background: var(--bg-color);
  padding-bottom: var(--component-gap);
  overflow: hidden;
}

.baixiu_news__title {
  color: #222;
  text-align: center;
  font-family: var(--title-font-family);
  font-size: var(--font-60);
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-transform: capitalize;
  padding-bottom: var(--gap-80);
  margin: 0;
}

.baixiu_news__list {
  position: relative;
}

.baixiu_news_swiper {
  overflow: visible !important;
}

.baixiu_news:not(.cards-visible) .swiper-slide:not(.swiper-slide-duplicate):not(.slide-in) {
  opacity: 0;
  transform: translateY(50px);
}

.baixiu_news .swiper-slide:not(.swiper-slide-duplicate) {
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.baixiu_news.cards-visible .swiper-slide {
  transition: none;
}

.baixiu_news .swiper-slide {
  width: 575px;
}

.baixiu_news__card {
  overflow: hidden;
  cursor: pointer;
}

.baixiu_news__card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.baixiu_news__card-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.baixiu_news__card-img {
  width: 100% !important;
  aspect-ratio: 575 / 455;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.5s ease;
}

.baixiu_news__card:hover .baixiu_news__card-img {
  transform: scale(1.07);
}

.baixiu_news__card-arrow {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fd752a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.7) translateY(-4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 2;
}

.baixiu_news__card-arrow svg {
  width: 18px;
  height: 18px;
}

.baixiu_news__card:hover .baixiu_news__card-arrow {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.baixiu_news__card-title {
  margin: 20px 0 8px;
  padding: 0;
  color: #222;
  font-family: Montserrat;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
  min-height: calc(1.4em * 2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-transform: capitalize;
}

.baixiu_news__card-date {
  margin: 0;
  padding-bottom: 4px;
  color: #888;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
}

@media screen and (max-width: 1440px) {
  .baixiu_news .swiper-slide {
    width: 440px;
  }
}

@media screen and (max-width: 1200px) {
  .baixiu_news__title {
    font-size: 44px;
    padding-bottom: 52px;
  }

  .baixiu_news .swiper-slide {
    width: 360px;
  }

  .baixiu_news__card-title {
    font-size: 20px;
  }
}

@media screen and (max-width: 992px) {
  .baixiu_news__title {
    font-size: 36px;
    padding-bottom: 44px;
  }

  .baixiu_news .swiper-slide {
    width: 300px;
  }

  .baixiu_news__card-title {
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  .baixiu_news__title {
    font-size: 28px;
    padding-bottom: 36px;
  }

  .baixiu_news .swiper-slide {
    width: 260px;
  }

  .baixiu_news__card-title {
    font-size: 16px;
    margin: 14px 0 6px;
  }

  .baixiu_news__card-date {
    font-size: 12px;
  }

  .baixiu_news__card-arrow {
    width: 34px;
    height: 34px;
  }

  .baixiu_news__card-arrow svg {
    width: 14px;
    height: 14px;
  }
}

@media screen and (max-width: 480px) {
  .baixiu_news__title {
    font-size: 24px;
    padding-bottom: 28px;
  }

  .baixiu_news .swiper-slide {
    width: 220px;
  }

  .baixiu_news__card-title {
    font-size: 14px;
    margin: 12px 0 4px;
  }
}