/* 레이아웃 CSS */
.swiper {
  width: 100vw; /* ✅ 화면 전체 너비 */
  height: 100vh;
  position: relative;
  overflow: hidden;
  left: 50%;
  transform: translateX(-50%); /* ✅ 그누보드의 중앙 정렬 offset 보정 */
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pdb {
  margin-bottom:100px;
}
@media (max-width: 768px) {
  .swiper {
    height: 70vh;
  }
  .pdb {
    margin-bottom:50px !important;
  }
}
