I have a nested item list of large bold text in beamer. Somehow, it looks like the vertical alignment of the items of the top level list is incorrect, as the item containing the nested list is too close to the previous item.
Here is a minimal example :
\documentclass{beamer}
\usetheme{metropolis}
\begin{document}
\setsansfont{Fira Sans Bold}
\begin{frame}
\frametitle{Test}
\begin{Large}
\begin{itemize}
\item Give you up
\item Let you down
\item Never gonna
\begin{itemize}
\item Run around
\item And
\item Desert you
\end{itemize}
\end{itemize}
\end{Large}
\end{frame}
\end{document}
And the result :
I would expect the top level elements to be equally spaced, but element 3 is too close from element 2. What is causing this problem ? What are the possible solutions ?

