I would like to use the enumitem package to define a custom enumerate list such that the label occupies its own line. An example would be:
\documentclass{article}
\usepackage[shortlabels]{enumitem}
\setlength{\parindent}{0pt}
\setlength{\parskip}{1ex}
\begin{document}
\begin{center}
{\Large\sc Assignment 1}\\[2ex]
\end{center}
\begin{enumerate}[label={\large\bf Problem \arabic*.},wide]
\item
\begin{enumerate}[(a)]
\item First question.
\item Second question.
\end{enumerate}
\item
\begin{enumerate}[(a)]
\item First question.
\item Second question.
\end{enumerate}
\end{enumerate}
\end{document}

I would like the labels (Problem 1., Problem 2.) to appear on their own line, i.e., to force a line break right after the label.
According to this post putting \mbox{}\\ after \item works, but I thought it could be possible to avoid that using features of enumitem.


