{% for item in module.card_item %}
	
	{% if item.background_image.image_field.src %}
		{% set sizeAttrs = 'width="" height=""' %}
		{% if item.background_image.image_field.size_type == 'auto' %}
			{% set sizeAttrs = 'style="max-width: 100%; height: auto;"' %}
		{% elif item.background_image.image_field.size_type == 'auto_custom_max' %}
			{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
		{% endif %}
		 {% set loadingAttr = item.background_image.image_field.loading != 'disabled' ? 'loading=""' : '' %}
		<img src="" alt=""  >
	{% endif %}
	
	
	
	
	{% inline_rich_text field="card_content" value="" %}
	{% if item.image_icon.src %}
		{% set sizeAttrs = 'width="" height=""' %}
		{% if item.image_icon.size_type == 'auto' %}
			{% set sizeAttrs = 'style="max-width: 100%; height: auto;"' %}
		{% elif item.image_icon.size_type == 'auto_custom_max' %}
			{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
		{% endif %}
		 {% set loadingAttr = item.image_icon.loading != 'disabled' ? 'loading=""' : '' %}
		<img src="" alt=""  >
	{% endif %}
	{% for item2 in item.icon_with_text.icon_items %}
		{% icon
			name=""
			style=""
			unicode=""
			icon_set=""
		%}
		{% inline_text field="icon_text" value="" %}
	{% endfor %}
{% endfor %}