{% grid "o-grid--right o-grid--middle u-margin-top-huge" %}
  {% cell "u-1/2"%}

    {% if prev_href %}
      {% include "@atoms/links/link.twig" with {
        link: {
          text: "Previous: " ~ prev_text,
          href: prev_href,
          classes: "c-text--uppercase u-float-left u-margin-bottom-large"
        }
      } %}
    {% endif %}
  {% endcell %}

  {% cell "u-1/2" %}

    {% if next_href %}
      {% include "@atoms/links/link.twig" with {
        link: {
          text: "Next: " ~ next_text,
          href: next_href,
          classes: "c-text--uppercase u-float-right u-margin-bottom-large"
        }
      } %}
    {% endif %}

  {% endcell %}
{% endgrid %}
