<?php if (!empty($posts)) : ?>
    <div class="igg-grid-gallery">
        <?php foreach ($posts as $post) : 
            $img = esc_url($post['media_url']);
            $link = esc_url($post['permalink']);
            $caption = isset($post['caption']) ? esc_attr($post['caption']) : '';
        ?>
            <a href="<?php echo $link; ?>" target="_blank" class="igg-item" aria-label="<?php echo $caption; ?>">
                <img src="<?php echo $img; ?>" alt="<?php echo $caption; ?>" loading="lazy" />
            </a>
        <?php endforeach; ?>
    </div>
<?php endif; ?>
