I'm working on an expose (research proposal) and I selected this template in overleaf which is 2 columns. now the problem is I want to include a short biography of 2 persons in the end without in form of text-wrap without using \begin{IEEEbiography} \end{IEEEbiography} since it messes up the designed template. Actually, in this template, they didn't use \documentclass{ieeeaccess} without cls file.
Considering I checked related post1, post2, so far I tried 2 methods as follows unsuccessfully after I had included \usepackage{wrapfig} \usepackage{lipsum}:
\documentclass[%
reprint,
%superscriptaddress,
%groupedaddress,
%unsortedaddress,
%runinaddress,
%frontmatterverbose,
%preprint,
%preprintnumbers,
%nofootinbib,
%nobibnotes,
%bibnotes,
amsmath,amssymb,
aps,
%pra,
%prb,
%rmp,
%prstab,
%prstper,
%floatfix,
]{revtex4-2}
\usepackage{graphicx}% Include figure files
\usepackage{dcolumn}% Align table columns on decimal point
\usepackage{bm}% bold math
\usepackage{hyperref}% enables hyperlinks in the PDF
\usepackage{wrapfig}
\usepackage{lipsum}
\begin{document}
\section{Introduction & Background}
\section{References}
\bibliography{bibfile}% Produces the bibliography via BibTeX.
%Method 1
\lipsum[1]
\begin{wrapfigure}{L}{0.5\textwidth}
\includegraphics[width=1in,height=1.25in,clip,keepaspectratio]{a1.png}
%blablabla
\end{wrapfigure}
%\lipsum[2-3]
%Method 2
\begin{wrapfigure}{l}{0.5\textwidth}
%\begin{center}
\includegraphics[width=0.18\textwidth]{a1.png}
%blablabla
\end{wrapfigure}
\end{document}
So far the output is as follows:

Any helps to improve this template will be appreciated.