.feature-slider {
  padding: 30px 10px;
  background: #fafafa;
}
.feature-slider .swiper-container {
  width: 100%;
  overflow: hidden;
}
.feature-card {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
}
.feature-card img {
  width: 100%;
  height: 300px;        /* ✅ 固定高度 */
  object-fit: cover;    /* ✅ 裁切多餘區域、填滿容器 */
  display: block;
}
.feature-card h3 {
  font-size: 1rem;
  padding: 10px;
  color: #333;
}
