.swiper-container-wrap {
  width: 100%;
  padding: 0;
}

@media (max-width: 767px) {
  .swiper-container-wrap {
    padding: 0 16px;
  }
}


.swiper {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.swiper-wrapper {
  display: flex;
}
.swiper-slide {
  flex-shrink: 0;
  width: auto;
  position: relative;
  box-sizing: border-box;
  margin: 0; /* 確保沒有干擾空隙 */
}
.swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
}

.banner-content {
  position: absolute;
  bottom: 10%;
  left: 5%;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  max-width: 80%;
}
.subtitle {
  display: inline-block;
  background-color: #2897d5;
  color: white;
  font-size: 12px;
  font-weight: bold;
  padding: 2px 4px;
  border-radius: 3px;
  margin-bottom: 2px;
}
.title {
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  line-height: 36px;
  margin-bottom: 0px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: #fff; /* 白色背景 */
  color: #2897d5; /* 系統藍色（Bootstrap 標準藍） */
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
  border-radius: 50%;
  white-space: pre-line; /* 保留換行 */
  margin-top: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15); /* 陰影 */
  transition: all 0.3s ease; /* 動畫平滑 */
  border: none; /* 移除預設邊框（如有需要） */
  cursor: pointer;
}

.button:hover {
  background: #2897d5; /* 系統藍色 */
  color: #fff; /* 文字白色 */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* hover 狀態加深陰影 */
}

