{% for item in module.card %}
	{% if item.reverse %}
		<!-- HTML to show when checked -->
	{% endif %}
	{% inline_text field="title" value="" %}
	{% 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 %}
	{% if item.boolean_field %}
		<!-- HTML to show when checked -->
	{% endif %}
	{% inline_text field="description" value="" %}
	{% for item2 in item.sub_heading_title %}
		{% inline_text field="content_title" value="" %}
		{% inline_text field="content_subtitle" value="" %}
	{% endfor %}
{% endfor %}