/* 覆盖 Google Sites 轮播：幻灯片原为 position:absolute 叠放，横向 flex 会失效 */
.native-carousel.mr3rhf {
  display: block !important;
}
.native-carousel {
  position: relative !important;
  overflow: hidden !important;
}
.native-carousel .native-carousel__track,
.native-carousel .Ah1ayc.HSOwmd {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  height: 100% !important;
  position: relative !important;
  overflow: visible !important;
  pointer-events: auto !important;
  will-change: transform;
  transition-property: transform;
  transition-timing-function: ease;
}
.native-carousel .native-carousel__slide,
.native-carousel .nQBJnb.native-carousel__slide {
  position: relative !important;
  left: auto !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  flex: 0 0 auto !important;
  height: 100% !important;
  min-height: 1px;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: none !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}
/* 保留 Google Sites 左右箭头与圆点，始终可点 */
.native-carousel--has-controls .Eoo44b.Y5FYJe {
  display: block !important;
  z-index: 30 !important;
  pointer-events: auto !important;
}
.native-carousel--has-controls .cc0d9d {
  position: relative;
  z-index: 30 !important;
  pointer-events: auto !important;
}
.native-carousel--has-controls .cc0d9d .ZbQFKd {
  cursor: pointer;
  pointer-events: auto !important;
}
.native-carousel__btn {
  position: absolute;
  top: 50%;
  z-index: 30;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.native-carousel__btn:hover {
  background: rgba(0, 0, 0, 0.72);
}
.native-carousel__btn--prev {
  left: 12px;
}
.native-carousel__btn--next {
  right: 12px;
}
.native-carousel__dots {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.native-carousel__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}
.native-carousel__dot.is-active {
  background: #fff;
}
