{% set isFullWidth = fullWidth is defined %}
<div class="image-text-section my-3 {{ backgroundColorClass ?? '' }}">
<div class="container py-5">
<div class="row {% if (textPosition is defined) %} justify-content-{{ textPosition ?? 'start' }} {% endif %}">
<div class="col-12">
<div>
{% if (title is defined) %}
<h2 class="mb-5 point {{ darkPoint|default(false) ? 'dark' : 'light' }}">{{ title }}</h2>
{% endif %}
<div class="mb-4 {{ title is not defined ? 'teaser-text' : '' }}">{{ text|raw }}</div>
</div>
{% if (link is defined and link.link is not empty) %}
<div class="pe-2 pb-2">
<a class="link d-inline-flex align-items-center fw-bolder mb-4" href="{{ link.link|default('#') }}">
<span class="me-2">{{ link.text|raw }}</span>
<i class="fa-solid fa-arrow-right"></i>
</a>
</div>
{% endif %}
</div>
</div>
</div>
</div>