(paused = true)}
onmouseleave={() => (paused = false)}
role="region"
aria-roledescription="carousel"
aria-label={block.headline ?? "Zitat-Karussell"}
>
{#if block.headline}
{block.headline}
{/if}
{#if quotes.length === 0}
Keine Zitate vorhanden.
{:else}
{#if showArrows && quotes.length > 1}
{/if}
{#each quotes as q, i (i)}
{/each}
{#if showArrows && quotes.length > 1}
{/if}
{#if quotes.length > 1}
{#each quotes as _, i}
{/each}
{/if}
{/if}