{% set bgClass = 'section' %} {# Set background class based on selection #} {% if box.background_color == 'custom' and box.custom_bg_color %} {% set bgStyle = 'background-color: ' ~ box.custom_bg_color ~ ';' %} {% elseif box.background_color == 'grey' %} {% set bgClass = bgClass ~ ' section--grey' %} {% elseif box.background_color == 'orange' %} {% set bgClass = bgClass ~ ' section--orange' %} {% elseif box.background_color == 'blue' %} {% set bgClass = bgClass ~ ' section--blue' %} {% else %} {% set bgClass = bgClass ~ ' section--white' %} {% endif %}
{% if box.title %}

{{ box.title }}

{% if box.subtitle %}

{{ box.subtitle }}

{% endif %} {% endif %}
{{ box.content|raw }}
{{ box.title }}