templates/galilea/import/components/sectiontitle-cols.twig line 1

  1. <div class="bg-white text-balance hyphens-auto {{pt}} {{pb}}" {{ id ? ('id="' ~ id ~ '"')|raw }}>
  2.     <div class="container">
  3.         <div class="flex flex-col gap-8 lg:flex-row lg:items-end" x-reveal:stagger>
  4.             <div class="flex-none space-y-8 lg:w-3/5">
  5.                 {% if topline %}
  6.                     <div class="inline-flex gap-2 items-center text-sm tracking-wider leading-none uppercase text-brand-50">
  7.                         <div class="bg-current rounded-full size-1"></div>
  8.                         {{ topline|raw }}
  9.                     </div>
  10.                 {% endif %}
  11.                 {% if title %}
  12.                     <div class="text-3xl lg:text-5xl text-brand-100 highlight-brand-50 lg:leading-[1.2]">{{ title|raw }}</div>
  13.                 {% endif %}
  14.             </div>
  15.             {% if text %}
  16.                 <div class="text-black lg:text-xl lg:leading-normal lg:text-right grow">{{ text|raw }}</div>
  17.             {% endif %}
  18.         </div>
  19.     </div>
  20. </div>