@charset "utf-8";

.news-wrap .swiper {
  width: 100%;
  height: 100%;
  overflow: initial;
  margin-bottom: 35px;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mySwiper img {
  object-fit: cover;
  width: 100%;
  /* height: 500px; */
  aspect-ratio: 3/2;
}

.news-wrap .swiper-button-next::after{
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 14px;
  height: 22px;
  background: url(../../../images/common/white-arw.png) no-repeat center;
  background-size: 14px 22px;
  background-color: var(--base-green);
  border-radius: 30px;
  z-index: 0;
}

.news-wrap .swiper-button-prev::after{
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 14px;
  height: 22px;
  background: url(../../../images/common/white-arw.png) no-repeat center;
  background-size: 14px 22px;
  background-color: var(--base-green);
  border-radius: 30px;
  transform: rotate(180deg);
  z-index: 0;
}

.news-wrap .swiper-pagination-bullet {
  background: var(--white);
  opacity: 1;
}

.news-wrap .swiper-pagination-bullet-active {
  background: var(--orange)
}

#sub .news-wrap .swiper-pagination {
  bottom: -50px;
}