<div class="block-wrapper title-text-button">
    <div class="block-container">
        <?php if($object->subtitle): ?>
          <h1><?php echo $object->subtitle; ?></h1>
        <?php endif; ?>
        <?php echo $__env->make('frontend.partials.reusables.social', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
        <div class="info-wrapper">
            <div class="image">
                <?php if($object->featured_image): ?>
                <img src="<?php echo Config::get('path.frontend.img'); ?>/content/<?php echo $object->featured_image; ?>" alt="family logo">
                <?php endif; ?>
            </div>
            <div class="button-read-more">
                <div class="text-wrapper">
                    <div class="paragraphs-wrapper">
                        <div class="paragraphs">
                            <?php if($object->content): ?>
                            <?php echo formatParagraphs($object->content); ?>

                            <?php endif; ?>
                        </div>
                    </div>
                    <a class="js-toggle-text" href="#">Ler mais</a>
                </div>
            </div>
        </div>
    </div>
  </div>
  