.full-width-cta {
    .richtext {
        ol {
            &.counter-list {
                counter-reset: section;
                li:before {
                    counter-increment: section;
                    content: counters(section, ".") " ";
                }
                ol {
                    counter-reset: section;
                }
            }
            li {
                & + & {
                    margin-top: 1.5em;
                }
                ol {
                    li {
                        padding: 0 10px 20px 2.5em;
                        & + & {
                            margin-top: .5em;
                        }
                    }
                }
            }
        }
    }
}