.vs-7d5e5220-container {
    position: relative;
    overflow: hidden;
    background: #fdfaf5; 
    width: 100%;
    height: 500px; /* Overridden by inline style from widget */
}

.vs-7d5e5220-track {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    transition: transform 0.6s cubic-bezier(0.7, 0, 0.3, 1);
}

.vs-7d5e5220-slide {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    flex: 0 0 100%;
    width: 100%;
}

.vs-7d5e5220-image-col {
    width: 50%;
    height: 100%;
    position: relative;
}

.vs-7d5e5220-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}

.vs-7d5e5220-content-col {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

.vs-7d5e5220-content {
    background: rgba(232, 222, 209, 0.85);
    border: 1px solid #1f3b60;
    padding: 3rem;
    width: 100%; 
    max-width: 450px;
    text-align: center;
    /* Margin removed so it no longer overlaps the image */
    margin-left: 0; 
}

.vs-7d5e5220-heading {
    color: #1f3b60;
    font-size: 24px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 600;
}

.vs-7d5e5220-desc {
    color: #333;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.vs-7d5e5220-btn {
    display: inline-block;
    padding: 10px 24px;
    background-color: transparent;
    color: #1f3b60;
    border: 1px solid #1f3b60;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.vs-7d5e5220-btn:hover {
    background-color: #1f3b60;
    color: #ffffff;
}

.vs-7d5e5220-nav {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 24px; /* Increased vertical spacing between dots */
    z-index: 10;
}

.vs-7d5e5220-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #1f3b60;
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.vs-7d5e5220-dot.active {
    background: #1f3b60;
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
    .vs-7d5e5220-container {
        height: auto; 
        min-height: 600px;
    }

    .vs-7d5e5220-slide {
        flex-direction: column; 
        justify-content: flex-start;
    }

    .vs-7d5e5220-image-col {
        width: 100%;
        height: 50vh; /* Image takes half the viewport height */
    }

    .vs-7d5e5220-content-col {
        width: 100%;
        height: auto;
        padding: 2rem 1rem;
    }

    .vs-7d5e5220-content {
        max-width: 100%;
    }
    
    .vs-7d5e5220-nav {
        flex-direction: row;
        right: 50%;
        top: auto;
        bottom: 20px;
        transform: translateX(50%);
    }
}
