templates/galilea/import/components/highlight-card.twig line 1

  1. <div class="h-full flex flex-col p-4 lg:p-10 rounded-2xl {{ bg }}">
  2.     <div class="mb-4 py-2 px-3 text-xs tracking-wider leading-none uppercase rounded-full inline-flex self-start {{ dark ? 'bg-white/10 text-white' : 'bg-black/5 text-black' }}">{{ topline }}</div>
  3.     <div class="text-xl lg:text-3xl lg:leading-[1.2] min-h-20 {{ dark ? 'text-white' : 'text-black' }}">{{ title }}</div>
  4.     <div class="-mx-4 lg:-mx-10">
  5.         <img src="{{ image }}" alt="{{ title }}" class="w-full">
  6.     </div>
  7.     <div class="lg:text-lg font-medium lg:leading-[1.3] mt-auto {{ dark ? 'text-white/70' : 'text-black/50' }}">{{ text }}</div>
  8. </div>