{% if child.haveContent %}
{% if child.headline %}
<h2 class="c-cms-headline">
{{ child.headline }}
</h2>
{% endif %}
{% if child.image %}
<figure class="c-cms-image{% if child.isImagePortrait %} c-cms-image--portrait{% endif %}">
<img src="{{ child.getImageUrl }}" alt="{{ child.headline }}">
</figure>
{% endif %}
{% if child.youtubeId %}
<div class="c_cms-youtube">
<iframe
width="560"
height="315"
src="https://www.youtube.com/embed/{{ child.youtubeId }}?controls=0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
class="c_cms-youtube__iframe"
></iframe>
</div>
{% endif %}
{% if child.content %}
<div class="c-cms-content">
{{ child.content|raw }}
</div>
{% endif %}
{% endif %}