CSS quotes - general styling

Hi, a specific question:

Does anybody know the CSS of nested quotes, specifically the “first-level” nested quotes?

What I want to achieve is a different color scheme for nested quotes from the “main quote”.

From something like this

.quote aside .quote, .quote aside .title, .quote aside blockquote, .quote aside .onebox, .quote aside .onebox-result, blockquote, aside.quote .title {
        border-left: 5px solid #212121;
        background: #25272d;
        box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16),0 0 0 0 rgba(0,0,0,0.12);
        border-radius: 2px;
    }

I tried to make a different color scheme to just this part

.quote aside .quote, .quote aside .title, .quote aside blockquote, .quote aside .onebox, .quote aside .onebox-result

And I get a partial success, but not the entire nested quote.

Any ideas?