.people {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}
.swiper-container {
  width: 100%;
  max-width: 700px;
  height: 400px;
  margin: auto;
  padding-top: 20px;
  position: relative;
}
.swiper-slide {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.swiper-slide:hover img {
  filter: blur(4px);
  transform: scale(1.1);
}
.swiper-slide:hover .caption {
  opacity: 1;
  transform: translateY(0);
}
.caption {
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  color: #fff;
  text-align: center;
  font-size: 1.2em;
  font-weight: bold;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}
