<?php 
/* 
* Block Name: Case study
* Post Type: page, post
*/
?>
<?php if (isset($block['data']['previewImage'])): ?>
    <?php do_action('block_image', __FILE__); ?>
<?php else: ?>
    <?php

    // Block helper
    require \get_template_directory() . '/template-parts/base/block-helper.php';
    if (isset($disable) && $disable) {
        return;
    }

    // Load values and assing defaults
    $casestudy = get_field('case_study') ?: [];
?>
    <section class="section case-study-section block <?php echo $className; ?>" 
        <?php if ($bgUrl): ?>
            style="background-image: url('<?php echo $bgUrl; ?>');"
            data-desktop-image="<?php echo $bgUrl; ?>"
        <?php endif; ?>
        <?php if ($mobileBgUrl): ?>
            data-mobile-image="<?php echo $mobileBgUrl; ?>"
        <?php endif; ?>
        <?php if ($sectionId): ?>
            id="<?php echo $sectionId; ?>"
        <?php endif; ?>
    >
        <div class="container">
            <div class="row">
                <div class="col-lg-8 offset-lg-2">
                    <?php if ($title): ?>
                        <h2 class="h2 d-block text-center"><?php echo $title; ?></h2>
                    <?php endif; ?>
                    <?php if ($text): ?>
                        <div class="text pb-5"><?php echo $text; ?></div>
                    <?php endif; ?>
                </div>
            </div>
            <div class="row g-4">
                <?php foreach ($casestudy as $item): ?>
                    <div class="col-md-6 col-xl-4">
                        <div class="item">
                            <?php if (array_key_exists('title', $item) && $title = $item['title']): ?>
                                <h3 class="h4 mt-0"><?php echo $title; ?></h3>
                            <?php endif; ?>
                            <?php if (array_key_exists('text', $item) && $text = $item['text']): ?>
                                <div class="text"><?php echo $text; ?></div>
                            <?php endif; ?>
                        </div>
                    </div>
                <?php endforeach; ?>
            </div>
        </div>
    </section>
<?php endif; ?>

