{% if alerts is defined %}
{% for alert in alerts %}
{#{{dump(alert["attention_description"])}}#}
<div class="attention js-alert">
<div class="attention__icon">
{% include 'parts/_img.html.twig' with {'imageName': alert['image-path'], 'imageAlt':alert['alt-text']} %}
</div>
<div class="attention__content">
<div class="attention__title">{{ alert["attention_content"]| raw }}</div>
<div class="attention__description">{{alert["attention_description"]| raw}}</div>
</div>
<div class="attention__buttons">
<a href="{{ alert["attention_btn_link"] }}" target="{{ alert["attention_btn_link_target"] }}" class="btn btn--md attention__btn">
<span>{{alert["attention_btn"]}}</span>
</a>
<a href="#" class="attention__close js-alert-close">
<svg width="24" height="25" viewBox="0 0 24 25" fill="none">
<path d="M18.0022 6.48755L5.99707 18.4927" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M18.0063 18.5L5.99121 6.48236" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</a>
</div>
</div>
{% endfor %}
{% endif %}