{% for item in module.team_single_item_area %}
	{% if item.single_team_content.single_team_content_image.src %}
		{% set sizeAttrs = 'width="" height=""' %}
		{% if item.single_team_content.single_team_content_image.size_type == 'auto' %}
			{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
		{% elif item.single_team_content.single_team_content_image.size_type == 'auto_custom_max' %}
			{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
		{% endif %}
		 {% set loadingAttr = item.single_team_content.single_team_content_image.loading != 'disabled' ? 'loading=""' : '' %}
		<img src="" alt=""  >
	{% endif %}
	{% inline_text field="single_team_content.single_team_content_title" value="" %}
	{% inline_text field="single_team_content.single_team_content_subtitle" value="" %}
	{% inline_rich_text field="single_team_content.single_team_content_description" value="" %}
	{% inline_text field="single_team_content.single_social_sharetitle" value="" %}
	{% for item2 in item.single_team_content.social_icon %}
		{% set href = item2.single_team_social_link.url.href %}
		{% if item2.single_team_social_link.url.type is equalto "EMAIL_ADDRESS" %}
		  {% set href = "mailto:" + href %}
		{% endif %}
		<a
		  {% if item2.single_team_social_link.url.type is equalto "CALL_TO_ACTION"  %}
		    href="" {# The href here is not escaped as it is not editable and functions as a JavaScript call to the associated CTA #}
		  {% else %}
		    href=""
		  {% endif %}
		  {% if item2.single_team_social_link.open_in_new_tab %}
		    target="_blank"
		  {% endif %}
		  {% if item2.single_team_social_link.rel %}
		    rel=""
		  {% endif %}
		  >
		  Link text
		</a>
		{% inline_text field="single_team_social_icon_text" value="" %}
	{% endfor %}
{% endfor %}