{#--- Configs ---
    alinhamento
    tamanho_titulo
    tamanho_texto
    layout
#}
{#
--- Content ---
titulo
texto
headline
#}

{% set item = item %}

<div class="Secao-titulo-texto Row _content-{{item.alinhamento}}">
	<div class="col-{{item.layout}} _flex _flex-column _text-{{item.alinhamento}} _space-16">
		{% if item.headline %}
			<span class="Headline">{{item.headline}}</span>
		{% endif %}
		{% if item.titulo %}
			<h2 class="Title {{ item.tamanho_titulo != 'df' ? '_' ~ item.tamanho_titulo : '' }}">{{ item.titulo }}</h2>
		{% endif %}
		{% if item.texto %}
			<div class="_text-body {{ item.tamanho_texto != 'df' ? '_' ~ item.tamanho_texto : '' }}">{{item.texto | wpautop}}</div>
		{% endif %}
	</div>
</div>
