{% set title = title|default(false) %}
{% set titleBold = titleBold|default('') %}
{% set subtitle = subtitle|default(false) %}
{% set titleStyle = titleStyle|default(false) %}
{% set titleBlockIntro = titleBlockIntro|default(false) %}
{% set breakTitle = breakTitle|default(false) %}
{% set intro = intro|default(false) %}
{% set content = content|default(false) %}
{% set cta = cta|default(false) %}
{% set wideContent = wideContent|default(false) %}
<section class="wysiwyg-area {{ wideContent ? '' : 'container-narrow' }} content-block {{ className|default('') }}">
{% if title or titleBold or subtitle or intro %}
{{ include('includes/title-blocks/title-block-object.html.twig', {
title: title,
titleBold: titleBold,
subtitle: subtitle,
intro: titleBlockIntro,
titleStyle: titleStyle,
breakTitle: breakTitle
}) }}
{% endif %}
{% if intro %}
<div class="wysiwyg-area__intro wysiwyg">
{{ intro|raw }}
</div>
{% endif %}
{% if content %}
<div class="wysiwyg-area__content wysiwyg">
{{ content|raw }}
</div>
{% endif %}
{% if cta and cta['href'] is defined %}
<a href="{{ cta['href']|default() }}" target="{{ cta['target']|default('_self') }}" class="link-primary">
{{ cta['text']|default('') }}
<span class="link-primary__icon icon icon-arrow" aria-hidden="true"></span>
</a>
{% endif %}
</section>