/* Responsive Visual Styles */
.visual {
    width: 100%;
    height: 56.25vw;
    /* 16:9 비율 유지 */
    max-height: 100vh;
    /* 화면 높이를 초과하지 않도록 */
    position: relative;
    overflow: hidden;
    margin-top: 11vh;
}




.visual .swiper-container {
    height: 100%;
    background-color: #fff;
}

.visual .swiper-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    /* contain에서 cover로 변경하여 이미지 영역 채우기 */
    background-position: center;
}

.swiper-wrapper {
    display: flex;
    transition-property: transform;
}

.swiper-slide.visual_01 {
    background-image: url("../imgs/20121025-PAUR-0005.png");
    text-align: center;
    filter: brightness(0.8);
}

.visuTxt_wrap {
    width: 90%;
    /* 고정 픽셀 대신 상대 너비 */
    max-width: 1250px;
    /* 최대 너비 제한 */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    margin: 0 auto;
    text-align: right;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    padding-top: 5%;
    /* 상대 패딩 */
}

.visuTxt {
    color: #fff;
    text-shadow: 5px 0px 10px rgba(0, 0, 0, 0.4);
    position: relative;
    line-height: 1.3;
    letter-spacing: 0;
}

/* 반응형 폰트 크기 */
.visuTxt01 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 800;
}

.visuTxt01 span {
    font-size: clamp(1.8rem, 5vw, 3rem);
}

.visuTxt_line {
    width: 100px;
    height: 3px;
    background: #fff;
    margin: 5% 0;
}

.visuTxt02 {
    font-size: clamp(1rem, 3vw, 1.4rem);
    font-weight: 400;
    margin-top: 3%;
}

.visuTxt03 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: #FFA500;
}

.visuTxt04 {
    font-size: clamp(1rem, 3vw, 1.4rem);
    font-weight: 500;
}

.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets {
    position: absolute;
    width: 90%;
    max-width: 1250px;
    left: 0;
    right: 0;
    bottom: 15%;
    margin: auto;
    text-align: center;
    z-index: 9999;
}

.visual .swiper-pagination-bullet {
    width: 14px;
    height: 3px;
    box-sizing: border-box;
    border: 2px solid #fff;
    background: transparent;
    opacity: 1;
    margin-left: 8px;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    border: 2px solid #fff;
    background: #fff;
}

/* 작은 화면용 미디어 쿼리 */
@media screen and (max-width: 768px) {
    .visual {
        margin-top: 10vh;
    }

    .visuTxt_wrap {
        align-items: center;
        text-align: center;
    }

    .visuTxt {
        text-align: center;
    }

    .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets {
        bottom: 10%;
        /* 모바일에서 하단 위치 조정 */
    }
}