/* 몽골원정대 전용 스타일 */
/* 헤더 하단선(스크롤 시 표시)은 전역 header-scroll-border.css 참고 */

/* 모바일 전용 줄바꿈 */
.mobile-br {
    display: inline;
}

@media (min-width: 768px) {
    .mobile-br {
        display: none;
    }
}

/* 여정의 기록 Swiper */
.itinerarySwiper {
    padding-bottom: 60px;
}

.itinerarySwiper .swiper-slide {
    height: auto;
}

.itinerarySwiper .swiper-button-next,
.itinerarySwiper .swiper-button-prev {
    color: white;
    background: rgba(0, 0, 0, 0.5);
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

.itinerarySwiper .swiper-button-next:after,
.itinerarySwiper .swiper-button-prev:after {
    font-size: 20px;
}

/* 타임라인 Swiper (모바일) */
.timelineSwiper {
    padding-bottom: 50px;
}

.timelineSwiper .swiper-slide {
    height: auto;
}

.timelineSwiper .swiper-pagination {
    bottom: 10px;
}

.timelineSwiper .swiper-pagination-bullet {
    background: #0071e3;
    opacity: 0.5;
}

.timelineSwiper .swiper-pagination-bullet-active {
    opacity: 1;
}

/* 포함사항 카드 스타일 */
.incl-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
    transition: all 0.3s ease;
    cursor: pointer;
}

.incl-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.incl-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.incl-card:hover .incl-bg-img {
    transform: scale(1.1);
}

.incl-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    z-index: 1;
}

.incl-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 16px;
    text-align: center;
    z-index: 2;
}

.incl-title {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.incl-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
