{% 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.media and section.media.src %}
{% if section.media.href %} {{ section.media.alt | default: section.title | default: 'Demo preview' }} {% else %} {{ section.media.alt | default: section.title | default: 'Demo preview' }} {% endif %}
{% endif %}
{% if section.media and section.media.kicker %}

{{ section.media.kicker }}

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

{{ section.media.title }}

{% endif %} {% if section.media and section.media.body %}
{{ section.media.body | markdownify }}
{% endif %} {% if section.media and section.media.items %}
    {% for item in section.media.items %}
  • {% if item.heading %} {{ item.heading }} {% endif %} {% if item.body %}
    {{ item.body | markdownify }}
    {% endif %}
  • {% endfor %}
{% endif %}
{% if section.gallery %} {% assign carousel_classes = section.gallery_class %} {% endif %}