I am trying to align equations on two points throughout my whole document. I know about \documentclass[fleqn], but this only aligns the first part of an equation.
Minimal working example:
\documentclass[fleqn]{article}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\begin{document}
\section*{Section 1}
\begin{align}
&some left text &&some right text\\
&some more left text &&some right text
\end{align}
\section*{Section 2}
\begin{align}
&some left text that is wider &&some right text\\
&some more left text that is wider &&some right text
\end{align}
\end{document}
which produces:
This correctly aligns the first &s but not the second &&s, is there any nice way to make this happen? The only way I can think of is using \intertext for the whole document which brings a whole other range of issues with it.

