I want all equations to bo properly aligned along the '=' sign. But what I get is the following: Consider this MWE
\documentclass{scrreprt}
\usepackage{amsmath}
\usepackage{mathtools}
\begin{document}
\begin{align}
\begin{aligned}
a &= b + c + d\\
e &= f\\
\begin{rcases}
g &= h\\
i &= j
\end{rcases}
\quad \forall k < l
\end{aligned}
\end{align}
\end{document}
Is there a global solution to fix the alignment and get rid of the extra white space between the left expression and the '=' sign inside the rcases environment?
Thank you in advance!



