<div class="w-full md:flex relative items-center <?php echo e(!$content->full_width ? 'print:grid print:grid-cols-2' : 'print:block'); ?> avoid-page-break max-w-6xl">

    <div class="flex-2 <?php echo e(!$content->full_width  && ($content->header && $content->body) ? 'md:relative w-full pb-4 md:pb-0 print:h-full flex-2' : 'relative w-full'); ?> min-h-[220px] <?php echo e($content->full_width ? 'md:min-h-[300px] lg:min-h-[460px]' : 'md:min-h-[264px] lg:min-h-[408px]'); ?> print:min-h-0">
        <youtube-player class="block w-full relative pb-video <?php echo e($content->full_width ? ( $content->body ? 'md:pb-40p' : 'md:pb-33p' ) : ''); ?>" :content='<?php echo json_encode($content, 15, 512) ?>' uuid="<?php echo e($content_element->uuid); ?>" :shadow="<?php echo e($content->full_width ? 'false' : 'true'); ?>"></youtube-player>
    </div>

    <?php if(!$content->full_width && $content->body): ?>
        <div class="flex-1 relative flex print:block items-center justify-center bg-highlight py-8 print:border-b-0 md:border-b-4 md:border-primary <?php echo e(!$content->full_width ? 'px-8 md:-ml-8 md:pl-16 md:pr-8' : ''); ?>">
            <div class="text-block relative <?php echo e($content->style ? 'pt-8' : ''); ?>">

                <div class="flex print:block items-center">

                    <?php if($content->header): ?>
                        <h<?php echo e($header ? '1' : '2'); ?> class="flex-1"><?php echo e($content->header); ?></h<?php echo e($header ? '1': '2'); ?>>
                        <div class="print:hidden hidden md:block cp h-8 -mr-4 overflow-visible px-2 relative text-gray-200 text-4xl" @click="queueVideoId('<?php echo e($content_element->uuid); ?>')"><fa-icon icon="fab fa-youtube"></fa-icon></div>
                    <?php endif; ?>
                    
                </div>

                <div class="body">
                    <?php echo $content->body; ?>

                </div>

                <div class="flex link print:hidden mt-4" @click="queueVideoId('<?php echo e($content_element->uuid); ?>')">
                    <div class=""><fa-icon icon="fab fa-youtube"></fa-icon></div>
                    <div class="pl-2">Play Video</div>
                </div>

                <?php if($dash): ?>
                    <img src="/images/dash.svg" class="text-block-dash fill-current" alt="closing text dash" />
                    <?php
                        $dash = false;
                    ?>
                <?php endif; ?>
            </div>
        </div>
    <?php endif; ?>

</div>

<?php if($content->full_width && ($content->header || $content->body)): ?>

    <div class="flex justify-center relative z-4 -mt-4 print:mt-0 md:-mt-16">
        <div class="bg-highlight p-8 md:px-16 mt-4 w-auto print:shadow-none md:shadow-lg md:rounded-b-lg">

            <div class="text-block print:max-w-prose">
                <div class="flex items-center print:block">

                    <?php if($content->header): ?>
                        <h1 class="flex-1"><?php echo e($content->header); ?></h1>
                    <?php endif; ?>

                    <?php if(!$content->full_width): ?>
                        <div class="print:hidden hidden md:block cp h-8 -mr-4 overflow-visible px-2 relative text-gray-200 text-4xl" @click="queueVideoId('<?php echo e($content_element->uuid); ?>')"><fa-icon icon="fab fa-youtube"></fa-icon></div>
                    <?php endif; ?>
                </div>

                <div class="body"><?php echo $content->body; ?> </div>

                <div class="flex link print:hidden mt-4" @click="queueVideoId('<?php echo e($content_element->uuid); ?>')">
                    <div class=""><fa-icon icon="fab fa-youtube"></fa-icon></div>
                    <div class="pl-2">Play Video</div>
                </div>

                <?php if($dash): ?>
                    <img src="/images/dash.svg" class="text-block-dash fill-current" alt="closing text dash" />
                    <?php
                        $dash = false;
                    ?>
                <?php endif; ?>
            </div>

        </div>
    </div>

<?php endif; ?>
<?php /**PATH /var/www/html/resources/views/content-elements/youtube-video.blade.php ENDPATH**/ ?>