.split-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.split-carousel-slide {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    box-sizing: border-box;
}

/* 60% Image Width */
.split-carousel-image {
    width: 60%;
    height: 100%;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

/* 40% Text Width */
.split-carousel-content-wrap {
    width: 40%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    box-sizing: border-box;
    background: #fdfdfd;
    flex-shrink: 0;
}

.split-carousel-content {
    max-width: 90%;
}

/* Alternate positions */
.split-carousel-slide.img-left {
    flex-direction: row;
}

.split-carousel-slide.img-right {
    flex-direction: row-reverse;
}

/* Typography styles */
.split-carousel-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.split-carousel-desc {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.split-carousel-button {
    display: inline-block;
    padding: 12px 28px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.split-carousel-button:hover {
    opacity: 0.9;
}

/* Swiper navigation tweaks */
.swiper-button-next, .swiper-button-prev {
    color: #111;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .split-carousel-slide.img-left,
    .split-carousel-slide.img-right {
        flex-direction: column;
    }
    .split-carousel-image {
        width: 100%;
        height: 50% !important;
    }
    .split-carousel-content-wrap {
        width: 100%;
        height: 50% !important;
        padding: 20px;
    }
}
