Amazium provides offset utilities that allow grid items to be shifted horizontally within the active grid without the need for empty spacer elements.
Offsets are applied using .grid__item--offset-* classes, which shift an element to the right by a defined number of grid columns.
Offsets respect the active grid system (12-column layout by default) and do not require manual empty columns or additional markup.
<div class="grid grid--6">
<div class="grid__item--8">...</div>
<div class="grid__item--2 grid__item--start-10">...</div>
</div>