{% inline_text field="footer_contact_group.title" value="" %}
{% for item in module.footer_contact_group.footer_contact %}
	{% inline_text field="icon" value="" %}
	{% inline_text field="text" value="" %}
	
{% endfor %}

{% set href = item.url_field.href %}
						{% if item.url.type is equalto "EMAIL_ADDRESS" %}
						{% set href = "mailto:" + href %}
						{% elif item.url.type is equalto "PHONE_NUMBER" %}
						{% set href = "tel:" + href %}
						{% endif %}
						<a 
							 {% if item.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 item2.link.open_in_new_tab %}
							 target="_blank"
							 {% endif %}
							
/* Rechtstext-Links ueber der Copyright-Zeile */
.footer__legal{margin:0 0 1rem}
.footer__legal ul{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:.5rem 1.5rem;margin:0;padding:0;list-style:none}
.footer__legal li{margin:0}
.footer__legal a{font-size:.875rem;line-height:1.4;color:hsl(var(--muted-foreground));text-decoration:none;transition:color .2s}
.footer__legal a:hover{color:hsl(var(--primary));text-decoration:underline;text-underline-offset:2px}
.footer__legal a:focus-visible{outline:2px solid hsl(var(--primary));outline-offset:2px;border-radius:2px}
