I want to change the font size of section and subsection titles in the header. It works fine for the section title, the header automatically increases its height (as stated in the beamer manual) but if I try the same thing with the subsection, I get following result.

Is there any way to set the subsection title's block height so the large subsection title fits?
I don't need that box to be of exact size, as I probably create a background using tkiz anyway. So if setting the size isn't possible, is there some way to just move the title it down a little bit?
\documentclass{beamer}
\setbeamerfont*{section in head/foot}{size=\huge}
\setbeamerfont*{subsection in head/foot}{size=\huge}
\usetheme{Berlin}
\begin{document}
\section{Section 1}
\subsection{Subsection 1}
\begin{frame}{Frame}
Content
\end{frame}
\end{document}
I get the same output when I try \subsection{\huge Subsection 1} instead of \setbeamerfont*.
