<section class="news-image-panel w-full relative">
    <div class="container-wrapper max-w-{{ panel.containerSize }} mx-auto">
        <div class="padding-wrapper px-6 sm:px-8 lg:px-10 py-8 sm:py-10 lg:py-12">
            <div class="image-wrapper w-full flex flex-col justify-start items-start">
                <div class="aspect-wrapper w-full {{ panel.useAspectRatio ? 'aspect-w-4 aspect-h-3 sm:aspect-w-5 sm:aspect-h-3 lg:aspect-w-7 lg:aspect-h-3' : '' }}">
                    {% for image in panel.image.all() %}
                        {% include themeDir ~ '/_includes/_modules/_optimized-image.twig' with
                            {
                                'containerStyles': panel.useAspectRatio ? '!absolute rounded-lg' : 'rounded-lg',
                                'imgStyles': '!w-full !h-full !object-cover !object-center'
                            }
                        %}
                    {% endfor %}
                </div>
            </div>
        </div>
    </div>
</section>