I am trying to arrange the subimages (a) and (b) of the following MWE such as that they are aligned on top. I tried it such as explained in the solution of How to achieve top-alignment of images in subfigure? but that solution works only with one subfloatrow.
How can it be achieved with multiple subfloatrow?
\documentclass{article}
\usepackage[showframe, margin=25mm]{geometry}
\usepackage{graphicx}
\usepackage{subcaption}
\usepackage{floatrow}
\begin{document}
\thisfloatsetup{style=plain}
\begin{figure}
\ffigbox[\textwidth]
{
\thisfloatsetup{heightadjust=all
}
\begin{subfloatrow}[2]\useFCwidth
\ffigbox[\FBwidth][\FBheight][t]
{\caption{} \label{}}
{\includegraphics[width=0.5\textwidth,height=4.5cm]{example-image-a}}
\hspace{10pt}
\ffigbox[\FBwidth][\FBheight][t]
{\caption{} \label{}}
{\includegraphics[width=0.4\textwidth,height=5.5cm]{example-image-b}}
\vspace{20pt}
\end{subfloatrow}
\thisfloatsetup{capbesideposition={left,top},
capbesidesep=none,
}
\begin{subfloatrow}[1]
\fcapside[\FBwidth]
{\caption{} \label{}}
{\includegraphics[width=0.9\textwidth,height=4.5cm]{example-image-c}}
\vspace{10pt}
\end{subfloatrow}
\thisfloatsetup{capbesideposition={left,top},
capbesidesep=none,
}
\begin{subfloatrow}[1]
\fcapside[\FBwidth]
{\caption{} \label{}}
{\includegraphics[width=0.9\textwidth,height=4.0cm]{example-image-a}}
\end{subfloatrow}
}
{\caption{Caption of all figures} \label{fig:}
}
\end{figure}
\end{document}



