Theme Update - Refreshed UI

Hi John! It looks like you’re repeating the hh-universal-grid variables in the definition. So

–hh-universal-grid-three-columns-width: --hh-universal-grid-three-columns-width: calc(calc(100% - var(–hh-universal-grid-margin) * 6) / 3);
–hh-universal-grid-two-columns-width: --hh-universal-grid-two-columns-width: calc(calc(100% - var(–hh-universal-grid-margin) * 4) / 2);

should instead be

–hh-universal-grid-three-columns-width: calc(calc(100% - var(–hh-universal-grid-margin) * 6) / 3);
–hh-universal-grid-two-columns-width: calc(calc(100% - var(–hh-universal-grid-margin) * 4) / 2);

We used the above formatting because we figured it’d be easiest to copy paste the whole definition, but definitely open to alternatives!