/* Main Wrapper */
.svg-wrapper {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

/* Columns */
.svg-left-col {
    /* Default is now overridden by control, but kept for fallback */
    flex-grow: 0;
    flex-shrink: 0;
    position: relative;
}

.svg-right-col {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0; /* Prevents flex items from overflowing container */
}

/* Slider */
.svg-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
}

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

/* Video Items */
.svg-video-item {
    flex: 1;
    background: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.svg-video-embed {
    width: 100%;
    height: 100%;
}

.svg-video-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.svg-video-placeholder {
    color: #999;
    font-size: 14px;
    padding: 20px;
    text-align: center;
}

/* Swiper Controls Customization */
.swiper-button-next, .swiper-button-prev {
    color: #fff !important;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.swiper-pagination-bullet-active {
    background: #fff !important;
}

/* Responsive: Stack on mobile */
@media (max-width: 767px) {
    .svg-left-col, 
    .svg-right-col {
        flex-basis: 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }
}
