The Amazium grid system supports a fluid mode that allows layouts to adapt to the full width of their container instead of using a fixed maximum width.
.grid--fluid modifier removes the fixed container constraint, allowing the grid to expand to 100% width of its parent element.<div class="grid grid--fluid">
<div class="grid__item grid__item--span-4">...</div>
<div class="grid__item grid__item--span-6">...</div>
</div>