The error you're encountering indicates that the @use rule in your _grid.scss file is being used after other rules, which is not allowed according to the Sass specification. The @use rule must come before any other CSS rules, including @import statements.
To resolve this issue, you need to ensure that @use is placed at the beginning of your _grid.scss file, before any other Sass rules.