I've read questions asking about align across multiple environments, but still am stumped about how I might address this situation.
The following code:
\section*{Solutions to Practice Problems}
\begin{enumerate}
\item Write down the meaning of the Commutative, Associative and Distributive properties. Create an example
that shows how each one works.\\[-2em]
\begin{align*}
\intertext{
\begin{description}[noitemsep, topsep=0pt]
\item[Commutative Property:] The order in which terms appear can be changed, but the
result remains unchanged.
\begin{example*} \end{example*}
\end{description}
}\\[-2em]
&&& \text{(Addition)} & 1,000 + x \ &= \ x + 1,000 &&&\\
&&& \text{(Multiplication)} & ab \ &= \ ba &&&
\intertext{
\begin{description}[noitemsep, topsep=0pt]
\item[Associative Property:] The order in which terms are \emph{grouped together} can be changed,
but the result remains unchanged.
\begin{example*} \end{example*}
\end{description}
}\\[-2em]
&&& \text{(Addition)} & (1,000 + 500) + y \ &= \ 1,000 + (500 + y) &&& \\
&&& \text{(Multiplication)} & a(bc) \ &= \ (ab)c &&&
\intertext{
\begin{description}[noitemsep, topsep=0pt]
\item[Distributive Property:] The product of the sums equals the sum of the products.
\begin{example*} \end{example*}
\end{description}
}\\[-2em]
&&& \text{(Numbers only)} & 3(40 - 2) \ &= \ 3 \cdot 40 - 3 \cdot 2 &&& \\
&&& \text{(With variables)} & 5(x - 12) \ &= \ 5x - 60 &&& \\
\end{align*}
\item Write down the meaning of the Additive and Multiplicative Identity properties. Create an example that
shows how each one works.
\begin{align*}
\intertext{
\begin{description}[noitemsep, topsep=0pt]
\item[Additive Identity:] There exists a number 0 such that addition with 0 and another term leaves the
term unchanged.
\begin{example*} \end{example*}
\end{description}
}\\[-2em]
&&& \text{(Numbers)} & 1,000 + 0 \ &= \ 1,000 &&&\\
&&& \text{(Variables)} & x + 0 \ &= \ x &&&
\intertext{
\begin{description}[noitemsep, topsep=0pt]
\item[Multiplicative Identity:] There exists a number 1 such that multiplication with 1 and another term
leaves the term unchanged.
\begin{example*} \end{example*}
\end{description}
}\\[-2em]
&&& \text{(Numbers)} & 12 \cdot 1 \ &= \ 12 &&& \\
&&& \text{(Variables)} & x \cdot 1 \ &= \ x &&&
\end{align*}
produces this result:

I can fudge this enough to align equations within each item, but not across items. What I'm looking for is uniformity with left aligning the (Numbers) text across every item, and ideally aligning every equation at the = sign across items. The closest question I found to this is here. I am looking for only a slight modification to what I have here, if possible.
If not, then are there ways to set "global" align parameters throughout a document that can be across multiple align environments?
