I need to create some figure with subfigures. My problem is that for "nice look" subfigures must have same height (original files have). I found solution with subfigures package. But next I read that it was deprecated

What to do?
My main tex file and all stuff in attachment.
Code: Select all
\documentclass[a4paper, 12pt, english, russian, ukrainian]{article}
\RequirePackage{geometry}
\geometry{left=30mm}
\geometry{right=15mm}
\geometry{top=15mm}
\geometry{bottom=25mm}
\RequirePackage[T1, T2A]{fontenc}
\RequirePackage[utf8]{inputenc}
\RequirePackage{babel}
\RequirePackage{
amssymb,
amsfonts,
amsmath,
mathtext,
mathrsfs,
cite,
enumerate,
lipsum,
float,
multicol,
titlesec,
caption,
subcaption,
lipsum
}
\RequirePackage{graphicx}
\begin{document}
\begin{figure}[h!]
\lipsum[1]
\centering
\begin{minipage}[h]{0.35\linewidth}
\center{\includegraphics[width=1\linewidth]{DAC-Signals-a}} a)\\
\end{minipage}
\hspace{0.01\linewidth}
\begin{minipage}[h]{0.53\linewidth}
\center{\includegraphics[width=1\linewidth]{DAC-Signals-a-Freq}} b)\\
\end{minipage}
\vfill
\begin{minipage}[h]{0.35\linewidth}
\center{\includegraphics[width=1\linewidth]{DAC-Signals-b}} c)\\
\end{minipage}
\hspace{0.01\linewidth}
\begin{minipage}[h]{0.53\linewidth}
\center{\includegraphics[width=1\linewidth]{DAC-Signals-b-Freq}} d)\\
\end{minipage}
\caption{Figures}
\label{fig - DAC Signals in Time and Freq Domain}
\lipsum[2]
\end{figure}
\end{document}