.cta-block,
.editor-styles-wrapper .cta-block {
    margin-block: 48px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    justify-content: flex-start;
    border: 1px solid #7c5cff;
    border-radius: 16px;
    padding: 40px;
    background: linear-gradient(90deg, #1e1c26 0%, #0e0d12 100%);
}

.cta-block .cta-block__title,
.editor-styles-wrapper .cta-block .cta-block__title {
    font-weight: 600;
    font-size: 24px;
    line-height: 1.33;
    color: #fff;
    margin-top: 0;
    margin-bottom: 12px;
}

.cta-block p {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #a7a4b5;
    margin-top: 0;
    margin-bottom: 0;
}

.cta-block .btn {
    padding: 10px 16px;
    height: 44px;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
}

.cta-block__buttons,
.editor-styles-wrapper .cta-block__buttons {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}

.editor-styles-wrapper .cta-block .btn {
    height: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    white-space: nowrap;
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    line-height: 1.43;
    font-weight: 600;
    transition: .3s ease;
    outline: none;
}

.editor-styles-wrapper .cta-block .btn-primary {
    border: none;
    background-color: #6d4aff;
}

.editor-styles-wrapper .cta-block .btn-secondary {
    background-color: #16141c;
    border: 1px solid #5c5969;
}

@media(hover: hover) {
    .editor-styles-wrapper .cta-block .btn-primary:hover {
        background-color: #7c5cff;
    }
}

.editor-styles-wrapper .cta-block h2 {
    color: #fff;
}

@media (max-width: 576px) {
    .cta-block {
        padding: 24px;
    }

    .cta-block__buttons {
        flex-direction: column;
    }

    .cta-block .btn  {
        width: 100%;
    }

}