I have the following code
\begin{figure}[h]
\begin{subfigure}[h]{0.4\linewidth}
\includegraphics[width=\linewidth]{Plots/scatterpng.png}
\end{subfigure}
\hfill
\begin{subfigure}[h]{0.65\linewidth}
\includegraphics[width=\linewidth]{Plots/lollipng.png}
\end{subfigure}%
\caption{\textbf{Search trends for cyber insurance in the US and in Germany}}
\label{fig:1}
\begin{minipage}{0.87\textwidth}\footnotesize
\emph{Note:} This figure was created scraping data from Google search trends. In the USA, the term cyber insurance was used whereas in Germany, the term cyber versicherung was used. The vertical lines have been added to show the occurence of significant events during that time period.
\end{minipage}
\label{f:3}
\end{figure}
I want to have both figures side by side. I also want to have a minipage/description that aligns neatly below the title of the figure.
If I keep the code as above, it is impossible to center the minipage-text below the title.
If I add \center to the code the minipage subtext is perfectly aligned below the title. However, the figures are then not side by side each other but on top of each other.
I can't fathom how to come up with a proper solution.
Any help would be highly appreciated


\centering\begin{minipage}...– John Kormylo Apr 02 '23 at 15:22