{% extends "single-news-base.html.twig" %}
{% import "./macros_typography.html.twig" as macrosTypography %}
{% import "./macros_button.html.twig" as macrosButton %}
{% set headerColor = 'header-white'%}
{% set bodyClass = 'bg-white'%}
{% block content %}
<section class="news-single-section pt-48 xl:pt-64 md:pb-24"
section-shade="light">
<div class="custom-text-wrapp mx-auto max-w-[984px] px-8 pb-16 lg:pb-44">
{% for item in content.blocks %}
{{ include('includes/blocks/' ~ item.type ~ '.html.twig', { content : item, template : template, globalContent: content}) }}
{% endfor %}
</div>
</section>
{% endblock %}