<script>
  let { title, subtitle = '', children } = $props();
</script>

<div class="flex flex-col sm:flex-row sm:items-start sm:justify-between gap-3 pb-5 mb-6 border-b border-slate-200">
  <div class="min-w-0">
    <h1 class="text-xl font-semibold text-slate-800 truncate">{title}</h1>
    {#if subtitle}
      <p class="text-sm text-slate-500 mt-0.5 truncate">{subtitle}</p>
    {/if}
  </div>
  {#if children}
    <div class="flex items-center gap-2 flex-shrink-0">
      {@render children()}
    </div>
  {/if}
</div>
