@if ($layout === 'right') {{-- Layout Right: Image zuerst, dann Content --}} {{-- Image --}}
{{ $content['image_alt'] }}
{{ $content['image_caption'] }}
{{-- Content --}}

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

@foreach ($content['paragraphs'] as $paragraph)

{!! $paragraph !!}

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

{{ $item['title'] }}

@endforeach
@endif
@else {{-- Layout Left (Standard): Content zuerst, dann Image --}} {{-- Content --}}

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

@foreach ($content['paragraphs'] as $paragraph)

{!! $paragraph !!}

@endforeach
{{-- Image --}}
{{ $content['image_alt'] }}
{{ $content['image_caption'] }}
@endif