.c-card--v2 .c-card__url { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 9; }
.c-cards .row { display: flex; flex-wrap: wrap; width: 100%; }
.c-cards .row h2 { font-weight: 800; margin: 50px 0; width: 100%;  }

@media only screen and (max-width: 1199px) {
  .c-cards--3 .row { justify-content: space-between; }
}

@media only screen and (max-width: 990px) {
  .c-cards--4 .row { justify-content: space-between; }
}

{% for item in module.default.card %}
	{% if item.start_row %}
		<!-- HTML to show when checked -->
	{% endif %}
	{% if item.end_row %}
		<!-- HTML to show when checked -->
	{% endif %}
	{% inline_text field="heading_title" value="" %}
	{% inline_text field="title" value="" %}
	{% inline_text field="card_excerpt" value="" %}
	{% if item.card_icon_sw %}
		<!-- HTML to show when checked -->
	{% endif %}
	{% if item.card_icon.src %}
		{% set sizeAttrs = 'width="" height=""' %}
		{% if item.card_icon.size_type == 'auto' %}
			{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
		{% elif item.card_icon.size_type == 'auto_custom_max' %}
			{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
		{% endif %}
		 {% set loadingAttr = item.card_icon.loading != 'disabled' ? 'loading=""' : '' %}
		<img src="" alt=""  >
	{% endif %}
	{% if item.card_image.src %}
		{% set sizeAttrs = 'width="" height=""' %}
		{% if item.card_image.size_type == 'auto' %}
			{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
		{% elif item.card_image.size_type == 'auto_custom_max' %}
			{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
		{% endif %}
		 {% set loadingAttr = item.card_image.loading != 'disabled' ? 'loading=""' : '' %}
		<img src="" alt=""  >
	{% endif %}
	{% set href = item.card_url.url.href %}
	{% if item.card_url.url.type is equalto "EMAIL_ADDRESS" %}
		{% set href = "mailto:" + href %}
	{% endif %}
	<a href=""
		{% if item.card_url.open_in_new_tab %}target="_blank"{% endif %}
		{% if item.card_url.rel %}rel=""{% endif %}
		>
		Link text
	</a>
{% endfor %}