@if(isset($content['title']))

{{ $content['title'] }}

{{ $content['subtitle'] }}

@endif
@if ($layout === 'right') {{-- Layout Right: Bild zuerst, dann Text --}} {{-- Bild --}}
@if(isset($content['image'])) {{ $content['image_alt'] ?? 'Benefits Image' }}
@endif
{{ $content['highlight']['value'] }}

{{ $content['highlight']['text'] }}

{{-- Text --}}
@svg('heroicon-o-'.$content['tag_icon'], 'w-4 h-4') {{ $content['tag'] }}

{!! $content['tag_title'] !!}

@foreach ($content['features'] as $index => $feature)
@if (isset($feature['icon'])) @svg('heroicon-o-'.$feature['icon'], 'w-6 h-6 text-secondary') @endif

{{ $feature['title'] }}

{{ $feature['description'] }}

@endforeach
@else {{-- Layout Left (Standard): Text zuerst, dann Bild --}} {{-- Text --}}
@svg('heroicon-o-'.$content['tag_icon'], 'w-4 h-4') {{ $content['tag'] }}

{!! $content['tag_title'] !!}

@foreach ($content['features'] as $index => $feature)
@if (isset($feature['icon'])) @svg('heroicon-o-'.$feature['icon'], 'w-6 h-6 text-secondary') @endif

{{ $feature['title'] }}

{{ $feature['description'] }}

@endforeach
{{-- Bild --}}
@if(isset($content['image'])) {{ $content['image_alt'] ?? 'Benefits Image' }}
@endif
{{ $content['highlight']['value'] }}

{{ $content['highlight']['text'] }}

@endif