The sds-scaleInteraction defines the background scale on interaction with the component.
The data-sds-move-with-shadow attribute defines the animation og the child element sticking to the scaled shape's edge.
Should the component not be interacted with, remove sds-scaleInteraction and replace it with sds-boxShadowActive. Remove the data attribute on any children that have it.
Classes for various variants include:
<article class="sds-product sds-box sds-scaleInteraction -insetLg">
<div class="sds-product__inner sds-stackXl">
<div class="sds-product__mainContent">
<div class="sds-product__imgWrapper -noTranslate">
<img src="https://design.spuerkeess.lu/media/illustrations/svg240x240/spot/sdsillu-safecover.svg" alt="">
</div>
<div class="sds-stackXs">
<h3 class="h3">Prêt personnel</h3>
<p class="sds-product__description">Empruntez au meilleur taux pour financer vos dépenses importantes</p>
</div>
</div>
<ul class="sds-list -checkIcon -checkIconAlt">
<li>
item
</li>
<li>
item
</li>
<li>
item
</li>
<li>
item
</li>
</ul>
<footer class="sds-product__footer sds-stackLg">
<div class="sds-box -insetLg sds-box__outOfBoundsMd -boxSunken">
<div class="d-flex justify-content-center">
<a href="" class="sds-btn -btnPrimary stretched-link">
<span class="sds-btn__text">Faire une demande</span>
<span class="sds-icon sds-icon-arrownext"></span>
</a>
</div>
</div>
</footer>
</div>
</article>
{% extends "@spk-product-frame" %}
{% block header %}
<div class="{{ namespace }}product__imgWrapper -noTranslate">
<img src="{{ imgSmall }}" alt="">
</div>
<div class="{{ namespace }}stackXs">
<h3 class="h3">{{ title }}</h3>
<p class="{{ namespace }}product__description">{{ text }}</p>
</div>
{% endblock %}
{% block body %}
{% render "@list--checked-alt" %}
{% endblock %}
{% block footer %}
<div class="{{ namespace }}box -insetLg {{ namespace }}box__outOfBoundsMd -boxSunken">
<div class="d-flex justify-content-center">
{% render "@btn-primary--icon-right",{
eltType: "a",
classes: ["stretched-link"],
text: "Faire une demande",
icon: "icon-arrownext"
},true %}
</div>
</div>
{% endblock %}