/*.main-carousel .swiper-slide {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 80px;
}

.main-carousel .banner-content {
  max-width: 500px;
}

.main-carousel .banner-image {
  max-width: 480px;
  width: 100%;
}

.banner-content h2.banner-title {
  margin: 25px 0;
  font-size: 4.5em;
  font-weight: 500;
  color: #222;
}

.banner-content p {
  margin: 0 0 30px 0;
}

.slick-dots {
  left: 200px;
  bottom: 110px;
  width: 10%;
  text-align: inherit;
}

button.main-carousel-prev, button.main-carousel-next {
  background: transparent;
  border: 1px solid #E5E3DA;
  padding: initial;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  z-index: 5;
  cursor: pointer;
}

button.main-carousel-prev, button.main-carousel-next:hover {
  border: 1px solid #74642F;
}

button.main-carousel-prev {
  left: 110px;
}

button.main-carousel-next {
  right: 110px;
}

.slick-arrow i svg {
  color: #8C8C8C;
}*/

/* 先預設大螢幕顯示 */
/*button.main-carousel-prev,
button.main-carousel-next {
  display: block;
}

@media screen and (max-width: 992px) {
  button.main-carousel-prev,
  button.main-carousel-next {
    display: none;
  }

  .banner-content h2.banner-title {
    font-size: 3.5em;
  }

  .main-carousel {
    margin: 70px 0;
    padding: 0;
  }

  .main-carousel .swiper-slide {
    flex-wrap: wrap;
    text-align: center;
    flex-direction: column-reverse;
    gap: 0;
  }

  .main-carousel .banner-content {
    width: 100%;
    margin-top: 60px;
    margin-right: 0;
    margin-bottom: 80px;
  }

  .slick-dots {
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
  }
}*/

/* swiper */
.main-carousel {
  width: 100%;
  height: auto;
}

.main-carousel .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-carousel .swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: fill;
  aspect-ratio: 4 / 2.7;
}

.main-carousel .swiper-pagination {
  position: relative !important;
  bottom: 0 !important;
}

.swiper-pagination-bullet {
  background: #000;
  width: 8px;
  height: 8px;
}

.swiper-button-next::after, .swiper-button-prev::after {
  color: #000;
  font-size: 20px;
  font-weight: bold;
}

.swiper-horizontal > .swiper-scrollbar {
  top: auto !important;
  bottom: 0 !important;
  left: 45%;
  width: 10%;
}

.swiper-scrollbar-drag {
  background: #000;
}

/* news */
.news-section {
  background: #f8f8f8;
  padding: 20px 30px 40px 30px;
  position: relative;
}

.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-list li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.news-content {
  color: #222222;
  width: 100%;
  word-break: break-word;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

.news-more {
  position: absolute;
  bottom: 15px;
  right: 25px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
}

.news-more:hover {
  text-decoration: underline;
}