{% for item in module.card %}
	{% inline_text field="title.first_normal" value="" %}
	{% inline_text field="title.highlighted" value="" %}
	{% inline_text field="title.second_normal" value="" %}
	{% for item2 in item.bullet_points %}
		{% inline_text field="text" value="" %}
		{% if item2.icon.src %}
			{% set sizeAttrs = 'width="" height=""' %}
			{% if item2.icon.size_type == 'auto' %}
				{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
			{% elif item2.icon.size_type == 'auto_custom_max' %}
				{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
			{% endif %}
			 {% set loadingAttr = item2.icon.loading != 'disabled' ? 'loading=""' : '' %}
			<img src="" alt=""  >
		{% endif %}
	{% endfor %}
	{% for item2 in item.partner_logo %}
		{% if item2.src %}
			{% set sizeAttrs = 'width="" height=""' %}
			{% if item2.size_type == 'auto' %}
				{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
			{% elif item2.size_type == 'auto_custom_max' %}
				{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
			{% endif %}
			 {% set loadingAttr = item2.loading != 'disabled' ? 'loading=""' : '' %}
			<img src="" alt=""  >
		{% endif %}
	{% endfor %}
	{% if item.image.src %}
		{% set sizeAttrs = 'width="" height=""' %}
		{% if item.image.size_type == 'auto' %}
			{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
		{% elif item.image.size_type == 'auto_custom_max' %}
			{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
		{% endif %}
		 {% set loadingAttr = item.image.loading != 'disabled' ? 'loading=""' : '' %}
		<img src="" alt=""  >
	{% endif %}
	{% inline_text field="button_label" value="" %}
	{% set href = item.button_link.url.href %}
	{% if item.button_link.url.type is equalto "EMAIL_ADDRESS" %}
	  {% set href = "mailto:" + href %}
	{% endif %}
	<a
	  {% if item.button_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 item.button_link.open_in_new_tab %}
	    target="_blank"
	  {% endif %}
	  {% if item.button_link.rel %}
	    rel=""
	  {% endif %}
	  >
	  Link text
	</a>
{% endfor %}