.vs-text-image-section .vs-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.vs-text-image-section .vs-heading {
    align-items: start;
}

.vs-text-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-image: var(--background-image-section);
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    min-width: 50%;
    min-height: 400px;
}

.vs-text-image-section .vs-wrapper.vs-container-left {
    flex-direction: column-reverse;
}

@media (min-width: 768px) {
    .vs-text-image-section .vs-wrapper {
        flex-direction: row;
        gap: 48px
    }

    .vs-text-image-section .vs-wrapper.vs-container-left {
        flex-direction: row-reverse;
    }

    .vs-text-image {
        border-radius: 32px;
    }
}