I know how to draw 3 rhombi above each other as follows:
\documentclass{article}
\usepackage{amsmath}
\usepackage{tikz-cd}
\usetikzlibrary{shapes.geometric}
\begin{document}
\[\begin{tikzcd}[sep = 2em,
/tikz/rhombus/.style={shape=diamond,draw,minimum size=2em}]
|[rhombus,draw,minimum size=3em]|{}\arrow[r,shorten >=0.5em,shorten <=0.5em] &
|[rhombus,append after command={\pgfextra{\let\myln\tikzlastnode}
(\myln.north) node[anchor=south,rhombus] {}
(\myln.south) node[anchor=north,rhombus] {}}]|{}\\
\end{tikzcd}\]
\end{document}
But what if inside the big rhombus I want to put 2 dotted lines to indicate the places where I will pinch it to get the 3 rhombi?
Any help in drawing this will be greatly appreciated!
