.content-container{
    overflow: hidden;
}
.bannerWrap {
  position: relative;
  padding: 60px 0;
}

.bannerStage {
  width: min(1200px, 100%);
  margin: 0 auto;
  position: relative;
}

.bannerCarousel {
  display: flex;
  gap: 40px;
  transition: transform .6s ease;
}

.bannerSlide {
  flex: 0 0 1000px;   
  max-width: 100%;
}

.bannerSlide img {
  width: 100%;
  height: auto;
  display: block;
}

.bannerPrev,
.bannerNext {
  position: absolute;
  bottom: -15px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #999;
  background: transparent;
}

.bannerPrev { right: 120px; }
.bannerNext { right: 0px; }

.bannerCounter {
  position: absolute;
  bottom: -1px;
  right: 60px;
  font-size: 14px;
  letter-spacing: 1px;
}

.promoList {
  padding: 50px 0;
}
.promoHeader{
  display: flex;
  /* padding-bottom: 20px; */
  border-bottom: 2px solid #545454;
  margin-bottom: 10px;
  justify-content: space-between;
  align-items: flex-end;
  color: #3a3628;
}
.promoIndexTitle {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
}
.promoItem {
  padding: 16px 0;
}
.bookingLink{
  font-size: 16px;
  line-height: 20px;
  height: 40px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  background: #d6b689;
  color: #fff;
  padding: 10px 30px;
  min-width: 150px;
}
.bookingLink:hover {
  opacity: 0.8;
}

.promoIndex, .promoTitle {
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  padding-top: 2px;
}

.promoContent img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid #ddd;
}

.promoContent {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 20px;
  color: #565445;
}
.promoContent > div:only-child {
  grid-column: 1 / -1;
}
.content{
    display: flex;
    justify-content: flex-start; 
}
.promoText{
    width: fit-content;
    font-size: 18px;
    line-height: 1.8;
}

/* 內文如果有 ul/li，讓它像截圖一樣是條列 */
.promoContent ul {
  margin: 6px 0 0;
  padding-left: 18px;
}
.backBtnWrap{
  display: flex;
  justify-content: center;
  margin: 40px 0;
}
.backButton{
  font-size: 16px;
  line-height: 20px;
  height: 40px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  background: #d6b689;
  color: #fff;
  padding: 10px 30px;
  min-width: 150px;
  border: none;
}



@media screen and (max-width: 1200px) {

    .bannerStage {
        width: 90%;
    }
    .news-header h2 {
        margin-left: 10%;
    }
}
@media screen and (max-width: 768px) {
    .bannerWrap {
        padding: 30px 0;
    }
    .bannerCarousel {
        gap: 20px;
    }
    .bannerPrev,
    .bannerNext {
        bottom: -20px;
        width: 30px;
        height: 30px;
    }
    .bannerNext { right: 10px; }

    .bannerCounter {
        position: absolute;
        bottom: -10px;
    }
    .promoContent {
        grid-template-columns: 1fr; /* 垂直 */
        padding: 0 10px;
    }
}