/* ================== 신규 타이틀 섹션 스타일 시작 ================== */
.wv-title-container {
    padding: 80px 20px;
    text-align: center;
}

.wv-title-container .wv-title {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    letter-spacing: -0.05em;
}

.wv-title-container .wv-sub-title {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-top: 10px;
    letter-spacing: -0.02em;
}

.wv-title-container .wv-title-line {
    width: 100px;
    height: 3px;
    background-color: #102476;
    margin: 30px auto;
}

.wv-title-container .wv-title-desc {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    word-break: keep-all;
}
/* ================== 신규 타이틀 섹션 스타일 끝 ================== */


/* 페이지 전체 컨테이너 */
#sub-tour {
    font-family: 'Noto Sans KR', sans-serif;
}

#sub-tour .container {
    max-width: 1200px;
    margin: 80px auto;
    padding: 20px;
}

/* 섹션 공통 스타일 */
#sub-tour .space-section {
    margin-bottom: 70px;
}

#sub-tour .space-section h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    border-left: 4px solid #102476;
    padding-left: 10px;
}

#sub-tour .space-section p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Swiper 컨테이너 스타일 */
#sub-tour .swiper {
    width: 100%;
    height: auto;
    padding-bottom: 40px; /* 페이지네이션 공간 확보 */
}

/* Swiper 슬라이드 스타일 */
#sub-tour .swiper-slide {
    background-color: #f0f0f0;
    background-size: cover;
    background-position: center;
    aspect-ratio: 16 / 10;
    border-radius: 8px;
}

/* Swiper 페이지네이션(점) 스타일 */
#sub-tour .swiper-pagination-bullet {
    background-color: #aaa;
    width: 8px;
    height: 8px;
    opacity: 0.7;
    transition: all 0.3s;
}

#sub-tour .swiper-pagination-bullet-active {
    background-color: #333;
    width: 24px;
    border-radius: 4px;
    opacity: 1;
}

/* PC(기본 상태)에서는 br 태그를 숨깁니다. */
.br-mobile {
    display: none;
}


/* 모바일 반응형 */
@media screen and (max-width:768px){
    /* 신규 타이틀 반응형 */
    .wv-title-container {
        padding: 50px 20px;
    }
    .wv-title-container .wv-title {
        font-size: 28px;
    }
    .wv-title-container .wv-sub-title {
        font-size: 14px;
    }
    .wv-title-container .wv-title-desc {
        font-size: 16px;
    }
    .br-pc {
        display: none;
    }

    /* 기존 컨텐츠 반응형 */
    #sub-tour .container {
        margin: 50px auto;
        padding: 0 15px;
    }
    #sub-tour .space-section h2 { font-size: 24px; font-weight: 600; }
    #sub-tour .space-section p { font-size: 18px; }

    /* 숨겨진 br 태그를 다시 보이게 하여 줄바꿈을 적용합니다. */
    .br-mobile {
        display: block;
    }

    /* ================== [요청사항] 모바일에서만 섹션 중앙 정렬 ================== */
    #sub-tour .space-section {
        text-align: center; /* 섹션의 전체 텍스트를 중앙 정렬합니다. */
    }
    #sub-tour .space-section h2 {
        display: inline-block; /* h2 요소를 인라인 블록으로 만들어 요소 자체를 중앙 정렬합니다. */
        text-align: left;    /* h2 내부의 텍스트(와 왼쪽 막대)는 왼쪽 정렬을 유지합니다. */
    }
}