Espaciado adecuado en múltiples opciones.

Espaciado adecuado en múltiples opciones.

Estoy preparando algunas preguntas de prueba usando enumitemel paquete. MWE que encontré y modifiqué ligeramente una pregunta de hace 4 años aquí.

\documentclass{article}
\usepackage{amsmath}
\usepackage{enumitem}
\usepackage{multicol}

\newlist{choices}{enumerate}{1}
\setlist[choices]{label*=(\Alph*)}
\newcommand{\choice}{\item}

\SetEnumitemKey{twocol}{
  before=\raggedcolumns\begin{multicols}{2},
  after=\end{multicols}}

\SetEnumitemKey{threecol}{
  before=\raggedcolumns\begin{multicols}{3},
  after=\end{multicols}}

\begin{document}
Which fractions are reduced (one column)?
\begin{choices}
  \choice long answer long answer long answer
   \choice $\dfrac{8}{24}$
   \choice $\dfrac{44}{121}$
   \choice $\dfrac{9}{11}$
\end{choices}

Which fractions are reduced (two columns)?
\begin{choices}[twocol]
   \choice long answer  long answer  long answer
   \choice $\dfrac{8}{24}$
   \choice $\dfrac{44}{121}$
   \choice $\dfrac{9}{11}$
\end{choices}

Which fractions are reduced (three columns)?
\begin{choices}[threecol]
   \choice long answer  long answer  long answer
   \choice $\dfrac{8}{24}$
   \choice $\dfrac{44}{121}$
\end{choices}

\end{document}

Mi pregunta es: ¿Cómo conseguir columnas del ancho adecuado? La larga respuesta no debe romperse. He leído el manual y enumitemtodavía no tengo ideas. Por favor, ¿alguna sugerencia?

información relacionada