I'm trying to create a tabularx environment that will align a two column table table like in the picture, but I want the text on the right to wrap at a certain width.
What I've done:
I've tried using w{align}{width} to set the alignment and the width. But here it seems that the "width" is the width of the cell itself, and doesn't care about the text inside of the cell. I've experimented in \newcolumntype which I think is where the answer lies, but I am having trouble understanding how it works. The 'declarations' don't make sense.
The behaviour I'm looking for is something like the p{#cm} while still being able to control alignment to the left. Would you help a LaTeX newbie out? :)
MWE:
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage{tabularx}
\setlength{\tabcolsep}{3pt}
\renewcommand{\arraystretch}{0.3}
\begin{document}
\hspace{3cm}
\vspace{3cm}
\begin{tabularx}{\textwidth}{rl}
\color{black}\textbf{\scalebox{0.5}{decision}} & \color{black}\textbf{\scalebox{0.5}{this is some text meant to be very long so I would have to wrap it. It's a puzzling experience.}} \
\color{black}\textbf{\scalebox{0.5}{decisions, decisions}} & \color{black}\textbf{\scalebox{0.5}{this is some text meant to be very long so I would have to wrap it. It's a puzzling experience.}} \
\color{black}\textbf{\scalebox{0.5}{decisions, decisions, decisions}} & \color{black}\textbf{\scalebox{0.5}{this is some text meant to be very long so I would have to wrap it. It's a puzzling experience.}} \
\color{black}\textbf{\scalebox{0.5}{decision}} & \color{black}\textbf{\scalebox{0.5}{this is some text meant to be very long so I would have to wrap it. It's a puzzling experience.}} \
\color{black}\textbf{\scalebox{0.5}{decision}} & \color{black}\textbf{\scalebox{0.5}{this is some text meant to be very long so I would have to wrap it. It's a puzzling experience.}} \
\color{black}\textbf{\scalebox{0.5}{decision}} & \color{black}\textbf{\scalebox{0.5}{this is some text meant to be very long so I would have to wrap it. It's a puzzling experience.}} \
\color{black}\textbf{\scalebox{0.5}{decision}} & \color{black}\textbf{\scalebox{0.5}{this is some text meant to be very long so I would have to wrap it. It's a puzzling experience.}} \
\color{black}\textbf{\scalebox{0.5}{decision}} & \color{black}\textbf{\scalebox{0.5}{this is some text meant to be very long so I would have to wrap it. It's a puzzling experience.}} \
\end{tabularx}
\end{document}

