{% for item in module.card_repeat %}
	{% if item.logo_image.src %}
		{% set sizeAttrs = 'width="" height=""' %}
		{% if item.logo_image.size_type == 'auto' %}
			{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
		{% elif item.logo_image.size_type == 'auto_custom_max' %}
			{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
		{% endif %}
		 {% set loadingAttr = item.logo_image.loading != 'disabled' ? 'loading=""' : '' %}
		<img src="" alt=""  >
	{% endif %}
	{% inline_rich_text field="subheading.sub_heading" value="" %}
	{% inline_rich_text field="text_heading" value="" %}
	{% inline_text field="button.button_link" value="" %}
	{% set href = item.button.link_button.url.href %}
	{% if item.button.link_button.url.type is equalto "EMAIL_ADDRESS" %}
	  {% set href = "mailto:" + href %}
	{% elif item.button.link_button.url.type is equalto "PHONE_NUMBER" %}
	  {% set href = "tel:" + href %}
	{% endif %}
	<a
	  {% if item.button.link_button.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_button.open_in_new_tab %}
	    target="_blank"
	  {% endif %}
	  {% if item.button.link_button.rel %}
	    rel=""
	  {% endif %}
	  >
	  Link text
	</a>
	{% if item.star_image_logo.src %}
		{% set sizeAttrs = 'width="" height=""' %}
		{% if item.star_image_logo.size_type == 'auto' %}
			{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
		{% elif item.star_image_logo.size_type == 'auto_custom_max' %}
			{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
		{% endif %}
		 {% set loadingAttr = item.star_image_logo.loading != 'disabled' ? 'loading=""' : '' %}
		<img src="" alt=""  >
	{% endif %}
	{% if item.slide_image.src %}
		{% set sizeAttrs = 'width="" height=""' %}
		{% if item.slide_image.size_type == 'auto' %}
			{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
		{% elif item.slide_image.size_type == 'auto_custom_max' %}
			{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
		{% endif %}
		 {% set loadingAttr = item.slide_image.loading != 'disabled' ? 'loading=""' : '' %}
		<img src="" alt=""  >
	{% endif %}
{% endfor %}