**Styles stop working when inside styled you try to style a nested element** Style border-top for InnerContainer not working ``` const InnerContainer = styled.div' align-items: center; display: flex; justify-content: space-between; padding: 16px 0; '; const Container = styled.div' padding: 0 24px; & + & { ${InnerContainer} { border-top: 1px solid ${theme.palette.bg.level3}; } } '; ``` <img width="392" alt="image" src="https://user-images.githubusercontent.com/54779368/182648340-003eed7f-5ae5-4f0e-84ba-d05a9b8dd8aa.png"> <img width="631" alt="image" src="https://user-images.githubusercontent.com/54779368/182648386-c4e38de1-67be-4b33-bea6-bef53e2843ac.png"> Expected: Style border-top for InnerContainer working.