/* BASIC css start */
/* ── PICTURE BANNER ── */
.responsive-banner-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
  margin: 0 auto;
}

.responsive-banner {
    display: block;
    width: 100%;
    line-height: 0;
}

.responsive-banner img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: auto;
}
  
  
@media (max-width: 1024px) {
    .responsive-banner img {max-width: unset; width:100%}
}



/* ------- swiper ----------*/
/* 섹션 전체를 좌우 100% 꽉 차게 설정 */
.banner-slider-section {
  position: relative;
  width: 100%;
  padding: 30px 0;
  overflow: hidden; /* 화면 바깥으로 나가는 양끝 슬라이드 커트 */
}

/* Swiper 컨테이너 */
.responsive-banner-swiper {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

.responsive-banner-swiper .swiper-slide {
  height: auto;
}

.responsive-banner-swiper .responsive-banner img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* 캡쳐 이미지처럼 슬라이드 위에 반투명하게 얹어지는 둥근 화살표 버튼 */
.responsive-banner-swiper .swiper-button-prev,
.responsive-banner-swiper .swiper-button-next {
  color: #fff; 
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.4); /* 시인성을 위해 배경 어둡게 조절 */
  border-radius: 50%;
  margin-top: -25px;
  z-index: 10; /* 이미지보다 무조건 위에 노출 */
}

/* 화살표 위치가 너무 끝에 붙지 않도록 여백 조정 */
.responsive-banner-swiper .swiper-button-prev { left: 20px; }
.responsive-banner-swiper .swiper-button-next { right: 20px; }

/* 화살표 꺾쇠 모양 크기 */
.responsive-banner-swiper .swiper-button-prev:after,
.responsive-banner-swiper .swiper-button-next:after {
  font-size: 18px;
  font-weight: bold;
}
/* BASIC css end */

