{% if section.kicker or section.title or section.body %}
{% if section.kicker %}

{{ section.kicker }}

{% endif %} {% if section.title %}

{{ section.title }}

{% endif %} {% if section.body %}
{{ section.body | markdownify }}
{% endif %}
{% endif %} {% if section.cards %}
{% for card in section.cards %}
{% if card.label %}

{{ card.label }}

{% endif %} {% if card.title %} {% if card.href %}

{{ card.title }}

{% else %}

{{ card.title }}

{% endif %} {% endif %} {% if card.body %}
{{ card.body | markdownify }}
{% endif %} {% if card.ctas %}
{% for cta in card.ctas %} {{ cta.label }} {% endfor %}
{% endif %}
{% endfor %}
{% endif %} {% if section.ctas %}
{% for cta in section.ctas %} {{ cta.label }} {% endfor %}
{% endif %}