I construct a TikZ image with nested nodes:
As you can see, I try to add arrows from the outer node to the inner one. How is it possible to target the arrows to the correct position of the inner node (west and south)?
MWE:
\documentclass[border=1pt, tikz]{standalone}
\usetikzlibrary{positioning}
\begin{document}
\begin{tikzpicture}[draw=black, scale=1, transform shape
, every node/.style = {rectangle, draw=black, align=center, inner xsep=6mm, inner ysep=3mm}
]
% change default arrow style
\tikzset{very thick, ->, -latex, shorten <=0pt, shorten >=0pt}
% nodes
\node (outer) {
Caption\\[3mm]
\begin{tikzpicture}[align=center]
\node (inner) {Inner Text};
\end{tikzpicture}
};
\node [above left=1mm and 10mm of inner.west] (leftabove) {left\\above};
\node [below left=1mm and 10mm of inner.west] (leftbelow) {left\\below};
% connections
\draw (leftabove.east) to (outer.west);
\draw (leftbelow.east) to (inner.west);
\draw (leftbelow.east) to (inner.south);
\end{tikzpicture}
\end{document}

