{% 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.people %}
{% for person in section.people %}
{% if person.image %} {{ person.name | default: 'Team member' }} {% endif %} {% if person.name %}

{{ person.name }}

{% endif %} {% if person.role %}

{{ person.role }}

{% endif %} {% if person.bio %}

{{ person.bio }}

{% endif %} {% if person.links %}
{% for link in person.links %} {% assign link_label = link.label | default: link.title | default: link.url %} {{ link_label }} {% endfor %}
{% endif %}
{% endfor %}
{% endif %}