.gallery-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.swiper-main {
    flex: 1;
    min-width: 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.swiper-main .swiper-slide {
    position: relative;
    height: 500px;
}

.swiper-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    color: #fff;
    background: rgba(255, 255, 255, 0.61);
}

.slide-caption h2 {
    margin: 0;
    font-size: 24px;
}

.swiper-thumbs {
    width: 150px;
    height: 500px;
}

.swiper-thumbs .swiper-slide {
    height: 100px;
    opacity: 0.5;
    cursor: pointer;
    transition: 0.3s;
}

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

.swiper-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

@media (max-width: 767px) {
    .gallery-wrapper {
        align-items: center;
    }

    .swiper-thumbs {
        width: 100%;
        height: auto;
        display: flex;
    }

    .swiper-thumbs .swiper-slide {
        width: 100px;
        height: 100px;
    }

    .swiper-main .swiper-slide {
        height: 400px;
    }

    .swiper-main img {
        height: 400px;
    }
}