/* --- Styling for Swiper Hero Gallery --- */
.tour-hero-gallery {
    width: 100%;
}

.swiper-main {
    width: 100%;
    height: 350px;
    aspect-ratio: 16 / 9;
    border-radius: var(--border-radius-lg);
    margin-bottom: 0.5rem;
}

.swiper-main .swiper-slide {
    background-color: #eee;
}
.swiper-main .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-thumbs {
    height: 80px;
    box-sizing: border-box;
    padding: 0;
}

.swiper-thumbs .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.5;
    transition: opacity 0.3s;
    cursor: pointer;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.swiper-thumbs .swiper-slide-thumb-active {
    opacity: 1;
}

.swiper-thumbs .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 768px) {
    .swiper-thumbs {
        height: 100px;
    }
    .swiper-thumbs .swiper-slide {
         width: 16.666%;
    }
}
/* --- Ends Swiper CSS --- */