@php($logos = array_values($block->get('logos', []))) @php($count = count($logos)) {{-- Pace the scroll by the number of logos so the speed stays constant and subtle regardless of how many the client adds (≈4s per logo, slow). --}} @php($duration = max(24, $count * 4))

{{ $block->get('eyebrow') }}

{!! $block->get('title_html') !!}

@if ($block->get('body_html'))

{!! $block->get('body_html') !!}

@endif
@if ($count)
@foreach ($logos as $logo)
{{ $logo['alt'] ?? '' }}
@endforeach {{-- A second, identical set makes the loop seamless; it is decorative, so it is hidden from assistive tech (the first set already names every logo). --}} @foreach ($logos as $logo) @endforeach
@endif