A cube has an edge length of $24$ units. It is tilted and rotated about one of its base vertices (vertex $A$), such that its four parallel edges that were vertical intersect the horizontal $xy$ plane passing through vertex $A$, at the points $A,B,C$ and $D$. If the coordinates of point $B$ are $(20, -15, 0)$, and point $C$ is $12$ units away from the base, what are the coordinates $(x,y,z)$ of the lowest point of the cube (vertex $E$)?
The only thing I could come up with, is the distance between point $B$ and the base. Using the distance $AB$ and the Pythagorean theorem, the distance between $B$ and the base is $7$ units.
Any hints, or solutions of this problem are appreciated.

Using the Rodrigues formula for rotation $(\theta)$ around an axis $\vec k$
$$ p^{\theta} = p\cos\theta+\vec k\times p\sin\theta+(\vec k\cdot p)\vec k(1-\cos\theta) $$
the rotated cube around $(A,\vec k)$ can be obtained calculating
$$ p^{\theta}_k = p_k\cos\theta+\vec k\times p_k\sin\theta+(\vec k\cdot p_k)\vec k(1-\cos\theta) $$
because $A=(0,0,0)$.
Now regarding the rotated edge containing $C$ we have
$$ \frac 12(p^{\theta}_t+p^{\theta}_b)\cdot(0,0,1)=0 $$
where $p^{\theta}_t,p^{\theta}_b$ are respectively the rotated edge extrema. Regarding the point $B$ we need to determine $0\le \lambda\le 1$ such that
$$ \lambda p^{\theta}_t+(1-\lambda)p^{\theta}_b= B $$
where $p^{\theta}_t,p^{\theta}_b$ are respectively the corresponding rotated edge extrema, and finally, the normalization condition $\|\vec k \|=1$. This gives us four conditions and five unknowns $(\vec k, \theta,\lambda)$. This can be solved as a minimization procedure as follows
$$ \min_{\vec k,\theta,\lambda}\|\lambda p^{\theta}_{t_1}+(1-\lambda)p^{\theta}_{b_1}- B\| \ \ \text{s. t}\ \ \ \cases{0\le \lambda\le 1\\ \|\vec k\| = 1\\ \frac 12(p^{\theta}_{t_2}+p^{\theta}_{b_2})\cdot(0,0,1)=0} $$
giving
$$ \vec k = (0.130848,-0.447689,0.884564), \theta = -0.751834, \lambda = 0.708333, E = (31.7616, 3.94883, -11.2963) $$
In blue the original cube, in red, rotated and in black the point $C$
Follows a MATHEMATICA script to perform this minimization