<div class="flex flex-col md:flex-row print:grid print:grid-cols-2 justify-center relative z-2 flex-col-reverse 
    <?php echo e($content->flip ? 'md:flex-row-reverse' : ''); ?> 
    <?php echo e($content_element->pivot?->randomize ? 'md:col-span-3 md:h-full' : ''); ?>

    avoid-page-break md:rounded-lg overflow-hidden w-full max-w-6xl">

    <div class="relative flex-1 quote-container md:w-1/2 print:w-auto shadow-inner print:shadow-none">

        
        <div class="p-8 md:px-16 quote-text relative">

            <div class="relative">
                <img class="-mx-12 -my-10 absolute top-0 h-16 opacity-10" src="/images/quote-start.png" alt="Open quote image" />
                <img class="-mx-12 -my-8 absolute right-0 bottom-0 h-16 opacity-10" src="/images/quote-end.png" alt="Close quote image" />
                <div class="relative z-3 italic leading-relaxed mb-4 md:mt-4 body">
                    <?php echo $content->body; ?>

                </div>
            </div>

            <img src="/images/dash.svg" class="quote-dash fill-current" alt="closing quote dash" />

            <div class="flex flex-col w-full md:items-end print:block">
                <div class="">
                    <?php echo e($content->author_name); ?><br/>
                    <?php echo e($content->author_details); ?>

                </div>
            </div>
        </div>

        <?php if($content->number): ?>
            <div class="content-number top-0 right-0"><?php echo e($content->number); ?></div>
        <?php endif; ?>

    </div>

    <?php if($content->photos->count()): ?>
        <div class="flex-1 flex relative w-full md:w-auto pb-75p md:pb-0 print:block">

            <div class="photo-border"></div>
            <?php echo $__env->make('content-elements.photo', ['photo' => $content->photos->first(), 'max_size' => 576], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>

        </div>
    <?php endif; ?>

</div>
<?php /**PATH /var/www/html/resources/views/content-elements/quote.blade.php ENDPATH**/ ?>