The alignment must be set manually by using column start and column span, that way the user can position the item exactly as intended with the flexibility doing more than the common start, center, and end alignments.
{% include '@bolt-layouts-grid/grid.twig' with {
items: [
{
column_start: '9',
column_span: '4',
content: item_end,
},
]
} only %}
<bolt-grid>
<bolt-grid-item column-start="9" column-span="4">
<!-- Item Content -->
</bolt-grid-item>
</bolt-grid>