For some text (\blindtext below), I would like to add 20pt to the left and right page margin, and I would like the text to be raggedright (no hyphenation).
The first try below does not add 20pt to the right margin. The second try below does not apply raggedright.
\documentclass{article}
\usepackage{blindtext}
\begin{document}
\setlength{\parindent}{0pt}
TEXT LEFT \hfill TEXT RIGHT
\begingroup\raggedright\leftskip=20pt \blindtext \par\endgroup
\par\vspace{20pt}
\begingroup\raggedright\leftskip=20pt\rightskip=20pt \blindtext \par\endgroup
\end{document}

