Hi,
Sorry for the misunderstanding, but the full-width and sticky container options cannot work simultaneously because the full-width option uses the CSS property position: relative
to stretch the container to the full width, while the sticky option uses position: sticky
to create the sticky effect. These cannot coexist on the same element in CSS, so position: sticky is applied, and the full-width stretching will not work as a result.
To achieve the desired effect, you need to create two containers nested inside each other instead of one container that both stretches and sticks (screenshot https://monosnap.com/file/f0Sprjub8Nip3tuVDhIz7nnMs1sO2J). The outer container should be sticky (red), and the inner container should stretch to the full width, contain the content, and hold all background color and shadow styles (green).
As an example, we created an updated demo block on your FAQ page that you can modify and use as a reference for creating similar blocks. The old block remains in place; it is simply hidden for all device types on the frontend.
Kind Regards