<section class="article-content mt-40px plr-16px">
{% if main_h2_title is defined and main_h2_title is not empty %}
<h2 class="main-h2-title fs36 lh40 fw400 p-26-10px dflex jcsb aic {% if mobile_gray_theme is defined and mobile_gray_theme is not empty %} {{ mobile_gray_theme }}{% endif %}">
{{ main_h2_title }}
{{ source('svg/arrow-icon.html.twig') }}
</h2>
{% endif %}
{% if h2_in_list is not defined %}
{% include "articles-blocks/title-h2.html.twig" %}
{% endif %}
<div>
{% if content.main_content is defined and content.main_content is not empty and content.main_content|length > 0 %}
{% for data in data.content %}
{% if h2_in_list is defined and h2_in_list is not empty %}
{% if data.type == "title_h2_with_chapo" %}
{% include "articles-blocks/title-h2.html.twig" %}
{% endif %}
{% endif %}
{% if data.type == "title_h3" %}
{% include "articles-blocks/title-h3.html.twig" %}
{% endif %}
{% if data.type == "freetext" %}
{% include "articles-blocks/freetext.html.twig" %}
{% endif %}
{% if data.type == "media" %}
{% include "articles-blocks/media.html.twig" %}
{% endif %}
{% if data.type == "citation" %}
{% include "articles-blocks/citation.html.twig" %}
{% endif %}
{% if data.type == "photo_report" %}
{% include "articles-blocks/photo-report.html.twig" %}
{% endif %}
{% if data.type == "cta_block" %}
{% include "articles-blocks/cta-block.html.twig" %}
{% endif %}
{% endfor %}
{% endif %}
</div>
</section>