.kf-slider-wrapper {
    position: relative;
    display: flex;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.kf-big-slider {
    width: 40%;
    height: 400px;
}

.kf-big-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kf-right-wrapper {
    width: 58%;
    display: flex;
    flex-direction: column;
}

.kf-thumbs-slider {
    width: 100%;
    height: 200px;
    margin-top: 20px;
}

.kf-thumbs-slider .swiper-slide {
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.kf-thumbs-slider .swiper-slide.active-thumb {
    opacity: 1;
}

.kf-thumbs-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kf-slider-navigation {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.kf-swiper-button-prev,
.kf-swiper-button-next {
    cursor: pointer;
}

.kf-swiper-pagination {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
}

.kf-swiper-pagination .swiper-pagination-bullet {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: #fff;
    border: 1px solid #000;
    opacity: 0.6;
    cursor: pointer;
}

.kf-swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: #000;
    color: #fff;
}

.kf-dynamic-title {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: bold;
}

.kf-block-title{
    margin-block-start: 0;
}

.kf-dynamic-description{
    margin-block-start: 20px;
}

.kf-info{
    display: flex
;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

/* Адаптивность */
@media (max-width: 768px) {
    .kf-slider-wrapper {
        flex-direction: column;
    }
    
    .kf-big-slider,
    .kf-right-wrapper {
        width: 100%;
    }
    
    .kf-big-slider {
        height: 300px;
    }
    
    .kf-thumbs-slider {
        height: 100px;
    }
}