I am using the book class to write a document. I have a long chapter title that only fits in two lines. I'm using a custom chapter heading font and the justification of the chapter title in the second line is hidden by the black box.
\documentclass[12pt, twoside]{book}
\usepackage{lipsum}
\usepackage{titlesec,calc,xcolor}
\usepackage{lmodern}
\titleformat{\chapter}[display]{\fontsize{18}{16}\usefont{OT1}{phv}{m}{n}\bfseries}{}{0pt}{
\raisebox{-5mm}[0pt][0pt]{%<<
\begin{minipage}{20mm}
\centering{\mdseries\footnotesize\normalsize\textsc{Chapter}}\\[5pt]%
\rule{10mm}{30mm}\hspace{-10mm}%
\raisebox{23mm}{\parbox{10mm}{\centering\LARGE\textcolor{white}{\thechapter}}}%
\end{minipage}
}%
\rule{\textwidth-20mm}{.4pt}\\%
\hspace*{20mm}
}[\vspace*{10mm}]
\begin{document}
\chapter{This is an example of a very long title that only fits in two lines}
\section{Section 1}
\lipsum[1]
\end{document}
How do I do this please ?



