templates/galilea/import/components/sectiontitle.twig line 1
<div class="text-center bg-white text-balance max-lg:hyphens-auto {{pt}} {{pb}}" {{ id ? ('id="' ~ id ~ '"')|raw }}>
<div class="container space-y-8 max-w-6xl" x-reveal:stagger>
{% if topline %}
<div class="inline-flex gap-2 items-center text-sm tracking-wider leading-none uppercase text-brand-50">
<div class="bg-current rounded-full size-1"></div>
{{ topline|raw }}
</div>
{% endif %}
{% if title %}
<div class="text-3xl lg:text-5xl text-brand-100 highlight-brand-50 lg:leading-[1.2]">{{ title|raw }}</div>
{% endif %}
{% if text %}
<div class="text-black lg:text-xl lg:leading-normal">{{ text|raw }}</div>
{% endif %}
</div>
</div>