@if($welcomeSection->image)

@endif
@php
// Reference content: ~1450 characters
// Show Read More if content exceeds this length
$content = strip_tags($welcomeSection->content);
$contentLength = strlen($content);
$showReadMore = $contentLength > 1500;
if ($showReadMore) {
// Show first 1200 characters
$limitedContent = substr($content, 0, 1200);
// Find last complete word to avoid cutting mid-word
$lastSpace = strrpos($limitedContent, ' ');
if ($lastSpace !== false) {
$limitedContent = substr($limitedContent, 0, $lastSpace);
}
} else {
$limitedContent = $content;
}
@endphp
{!! nl2br(e($limitedContent)) !!}
@if($showReadMore)
...
@endif
@if($showReadMore)
@endif