/* slider-style.css */

.mySwiper {
width: 100%;
max-width: 1200px; /* 슬라이더 최대 너비 / margin: 0 auto; height: 500px; / 슬라이더 높이 */
}

.swiper-slide {
text-align: center;
font-size: 18px;
background: #fff;

/* 이미지를 슬라이드에 꽉 채우기 */
display: flex;
justify-content: center;
align-items: center;
}

.swiper-slide img {
display: block;
width: 100%;
height: 100%;
object-fit: cover; /* 이미지가 잘리더라도 비율을 유지하며 꽉 채움 */
}

/* 화살표 색상 변경 (필요 시) / .swiper-button-next, .swiper-button-prev { color: #ffffff; / 흰색 */
}

/* 페이지네이션 색상 변경 (필요 시) */
.swiper-pagination-bullet-active {
background-color: #ffffff;
}