{% comment %} Process Switcher Component - Displays an interactive, tabbed "How it Works" section. - Expects `page` context: - process_steps (array of objects), where each object has: - id (e.g., "process", "assess") - label (e.g., "Process", "Step 1") - title - description - image_class (for the background image) {% endcomment %} {% if page.process_steps.size > 0 %}
{% for step in page.process_steps %}

{{ step.title }}

{{ step.description }}

{{ step.title }}
{% endfor %}
{% for step in page.process_steps %} {% endfor %}
{% endif %}