.moving-world-section {
  background: #f9f9f9;
  padding: 60px 20px;
  font-family: sans-serif;
  text-align: center;
}

.moving-world__container {
  max-width: none;
  margin: 0;
  padding: 0 20px;
}

/* 标题区域 */
.moving-world__subtitle {
  font-size: 14px;
  letter-spacing: 1px;
  color: #000F20;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.moving-world__title {
  font-size: 2rem;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
  color: #000F20;
  margin-bottom: 12px;
}

.moving-world__title .highlight {
  color: #FBCA19;
  font-style: italic;
}

.moving-world__desc {
  font-size: 1rem;
  color: #444;
  margin-bottom: 40px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.moving-world__button {
  display: inline-block;
  padding: 14px 32px;
  background: #FBCA19;
  color: #000F20;
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px;
  font-size: 0.95rem;
  margin-bottom: 40px;
  transition: background 0.3s ease;
}

.moving-world__button:hover {
  background: #e0a200;
}

/* Swiper 主体容器 */
.moving-world__swiper {
  padding: 10px 0;
  overflow: hidden;
}

.swiper-wrapper {
  display: flex;
}

/* 单个滑块卡片样式 */
.swiper-slide.gallery-card {
  width: 460px !important; 
  height: 300px  !important; 
  flex-shrink: 0;
  margin-right: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  padding: 0;              /* 移除内边距，图片占满 */
  position: relative;
}

/* 图片样式（保持 review-section 结构） */
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 描述文字 */
.gallery-card p {
  font-size: 0.95rem;
  color: #333;
  margin-top: 0;
  margin-bottom: 0;
}

/* Swiper 分页样式 */
.swiper-pagination-bullet-active {
  background: #FBCA19;
}

.swiper-button-next,
.swiper-button-prev {
  display: none;
}

@media (max-width: 768px) {
  .moving-world__title {
    font-size: 1.5rem;
  }

  .moving-world__desc {
    font-size: 0.95rem;
    margin-bottom: 30px;
    padding: 0 10px;
  }

  .moving-world__button {
    font-size: 0.9rem;
    padding: 12px 24px;
    margin-bottom: 30px;
  }

  .swiper-slide.gallery-card {
    width: 280px !important;
    height: 200px !important;
    margin-right: 12px;
    border-radius: 10px;
  }
}

@media (max-width: 480px) {
  .moving-world__title {
    font-size: 1.3rem;
  }

  .moving-world__desc {
    font-size: 0.9rem;
  }

  .moving-world__button {
    width: 100%;
    padding: 12px 0;
    font-size: 1rem;
  }

  .swiper-slide.gallery-card {
    width: 240px !important;
    height: 160px !important;
    margin-right: 10px;
  }
}
