{% if content is defined and content is not empty and content|length > 0 %}
{% set class = '' %}
{% if classCSS is defined and classCSS is not empty %}
{% set class = classCSS %}
{% endif %}
<div class="mb-1em">
{% if title is defined and title is not empty and title|length > 0 %}
<div class="fw600{{class}}">{{title|raw}}</div>
{% endif %}
<div class="lh24 freetext">{{content|raw}}</div>
</div>
{% endif %}