Eigenschafts-Ausprägung in Erlebniswelt ausgeben

Hallo zusammen :wave:

Ich stehe eben auf dem Schlauch und bitte um Eure Mithilfe.

Mein Problem besteht darin, dass ich in den Produkt-Boxen der Erlebiswelt zusätzlich zum Produktnamen auch die Eigenschafts-Ausprägung von Varianten-Artikeln ausgeben möchte.

Im Listing geht dies recht gut über die /component/product/card/box-standard.html.twig mit:

{% sw_extends '@Storefront/storefront/component/product/card/box-standard.html.twig' %}
{% block component_product_box_variant_characteristics %}
                                <div class="product-variant-characteristics">
                                    <div class="product-variant-characteristics-text">
                                        {% if not displayParent %}
                                            {% for variation in product.variation %}
                                                {{ variation.group }}:
                                                <span class="product-variant-characteristics-option">
                                                    {{ variation.option }}
                                                </span>

                                                {% if product.variation|last != variation %}
                                                    {{ "  " }}
                                                {% endif %}
                                            {% endfor %}
                                        {% endif %}
                                    </div>
                                </div>
                            {% endblock %}


Nur in den Erlebniswelten finde ich nicht die passende Lösung bzw. die passende *.twig

Ich hoffe sehr auf Eure Hilfe.

Grüße Dreamland