I need help please with indentation within a description list where custom labels are being used. The mwe below shows my problem. Thanks!
\documentclass{article}
\usepackage{enumitem}
\setlist[description]{leftmargin=\parindent}
\begin{document}
\begin{description}
\item[3.] My issue is indentation within this list. I need the custom labels because I might have to skip numbers. This particular item is indented the way I want it, namely, the second line is aligned with the first word ``My'' of the first line.
\item[30.] Here is where the problem lies. In this item the custom label consists of two digits and a period, and as a result, the second line is no longer aligned with the first letter ``H'' of the first line. Looks bad.
\item[Idea.] If we use the ordinary enumerate environment without custom labels, then as the labels get longer (1, 10, 100, etc.), they ``grow'' to the left rather than to the right, as my labels here are doing. Maybe there is an easy way for me to tell my custom labels that they too should grow to the left? If so, would that solve my indentation problem?
\end{description}
\end{document}

