<div class="vBSAT-description mb-4">
  {% if _block.itemTitle %}
    <h4 class="my-0">
      {{ _block.itemTitle }}
    </h4>
  {% endif %}
  {% if _block.body %}
    <section class="press__description">
      {{ _block.body }}
    </section>
  {% endif %}
  {% if _block.bullets.count() > 0 %}
    {% include 'components/_listTextC' with {
      list: _block.bullets.all(),
      customClass: 'col-lg-12 mx-auto'
    } only %}
  {% endif %}
  {% if _block.links.count() > 0 %}
    <ul class="p-0 m-0">
      {% for btn in _block.links.all() %}
        <li class="d-inline-block py-2">
          {% include 'components/_btnArrow' with {
            btn: btn.itemLink,
            classCustom: 'justify-content-start'
          } only %}
        </li>
        <br />
      {% endfor %}
    </ul>
  {% endif %}
</div>
