<div class="title-block title-block--main title-block--splitted content-block container container-sm {{ styleModifier|default('') }}">
<div class="row">
<div class="col-6 text-right">
{% if subtitle|default(false) %}
<div class="title-block__sub-title">{{ subtitle }}</div>
{% endif %}
<h1 class="title-block__title js-toc__title">{{ headline|default('') }}</h1>
{% if badgeAddon|default(false) or badge | default(null) %}
<div class="tour-detail__info-wrapper">
{% if badgeAddon|default(false) %}
{{ badgeAddon|raw }}
{% endif %}
{% if badge | default(null) %}
<span class="px-4 badge badge-{{ badge.color | default('success') }}">
{{ badge.text }}
</span>
{% endif %}
</div>
{% endif %}
</div>
<div class="col-6">
{% if description|default(false) %}
<div class="wysiwyg title-block__wysiwyg">{{ description|raw }}</div>
{% endif %}
</div>
</div>
{% if expand|default(false) %}
<div class="wysiwyg mt-4">
{{ expand|raw }}
</div>
{% if expandHidden|default(false) %}
<div id="titleBlockExpand" class="collapse" aria-labelledby="titleBlockExpandTitle">
<div class="wysiwyg pt-4">
{{ expandHidden|raw }}
</div>
</div>
<button type="button" class="btn btn-link collapsed mt-3 collapse-btn" data-toggle="collapse" data-target="#titleBlockExpand" id="titleBlockExpandTitle" aria-expanded="false" aria-controls="titleBlockExpand">
<span class="collapse-btn__more">{{ 'content.Mehr erfahren'|trans }}</span>
<span class="collapse-btn__less">{{ 'content.Weniger anzeigen'|trans }}</span>
</button>
{% endif %}
{% endif %}
</div>