templates/galilea/import/components/sectiontitle-cols.twig line 1
<div class="bg-white text-balance hyphens-auto {{pt}} {{pb}}" {{ id ? ('id="' ~ id ~ '"')|raw }}>
<div class="container">
<div class="flex flex-col gap-8 lg:flex-row lg:items-end" x-reveal:stagger>
<div class="flex-none space-y-8 lg:w-3/5">
{% 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 %}
</div>
{% if text %}
<div class="text-black lg:text-xl lg:leading-normal lg:text-right grow">{{ text|raw }}</div>
{% endif %}
</div>
</div>
</div>