{% comment %} Solution Overview Component - Displays a two-column layout with text and a grid of images. - Expects `page` context: - overview_label - overview_heading - overview_content (markdown body copy) - overview_images (array of image paths) {% endcomment %} {% if page.overview_heading %}

{{ page.overview_heading }}

{{ page.overview_content | markdownify }}
{% if page.overview_images.size > 0 %}
{% for image in page.overview_images %}
{{ page.title }} overview image
{% endfor %}
{% endif %}
{% endif %}