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

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

.tpl-text-image-section .tpl-text-image__text-content p {
    font-family: 'Fira Sans', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 18px;
    letter-spacing: -0.28px;
    color: var(--color-text, #262626);
}

.tpl-text-image-section .tpl-text-image__text-content ul {
    list-style-type: disc;
    margin: 8px 0 8px 20px;
}

.tpl-text-image-section .tpl-text-image__text-content ul li {
    margin-bottom: 8px;
    color: var(--color-text, #262626);
}

.tpl-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;
}

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

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

    .tpl-text-image-section .tpl-text-image__text-content p {
        font-size: 16px;
        line-height: 20px;
        letter-spacing: -0.32px;
    }

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

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