I'm trying to put a picture on the left of an enumerate to exploits the space on the left. However, as you can see the result is quite dirty because of the dot appearing just on top of my picture. Is it possible to move this dot to the right, next to "Lorem"? Ideally I'd love to be able to wrap the text around the image (let me know if you know how to do), but for now I'm just using a simple minipage.
MWE:
\usepackage{wrapfig}
\usepackage{adjustbox}
\usepackage{lipsum}
\usepackage{graphicx}
\begin{document}
\begin{enumerate}
\item \begin{itemize}
\item \lipsum[1]
\item
\begin{minipage}[t]{.3\linewidth}
\lapbox[\textwidth]{0cm}{
\raisebox{-\height}{\includegraphics[width=4.5cm]{example-image-a}}
}
\end{minipage}\begin{minipage}[t]{.7\linewidth}
\lipsum[1]
\end{minipage}
\end{itemize}
\end{enumerate}
\end{document}
EDIT
Breaking the enumerate in the middle allows me to do what I want. But still, the wrapping is not present. Do you know how to wrap the text around my picture?

\documentclass[a4paper,11pt]{article}
\usepackage{wrapfig}
\usepackage{adjustbox}
\usepackage{lipsum}
\usepackage{graphicx}
\begin{document}
\begin{enumerate}
\item \begin{itemize}
\item \lipsum[1]
\end{itemize}
\begin{minipage}[t]{.3\linewidth}
\lapbox[\textwidth]{0cm}{
\raisebox{-\height}{\includegraphics[width=4.5cm]{example-image-a}}
}
\end{minipage}%
\begin{minipage}[t]{.7\linewidth}
\begin{itemize}
\item
\lipsum[1]
\end{itemize}
\end{minipage}
\end{enumerate}
\end{document}


