I'm trying to create two columns in my \tcolorbox
that allow for a title of sorts to the left with a small paragraph to the right. However, my current code just puts the first line of the paragraph to the left and creates a body next to it (see photo). I want the ABC to be alone in the middle to the left, but the remaining text to be in one paragraph together.
\documentclass[11pt]{article}
\usepackage[utf8]{inputenc}
\usepackage{tikz,tcolorbox}
\usepackage{xcolor}
\usepackage{geometry}
\usepackage{helvet}
\usepackage{moresize}
\usepackage{multicol}
\begin{document}
\definecolor{burgundy}{HTML}{CC0000}
\begin{tcolorbox}[colback=burgundy, colframe=burgundy, width=5.65in, coltext=white,lefthand width=1.2in, righthand width=4.06in] %Impact block
\begin{multicols}{2}
{\HUGE ABC}
\columnbreak
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
\end{multicols}
\end{tcolorbox}
\end{document}
I want something more like this