/*
 * Styles for the scroll-triggered zoom effect.
 * This simplified version only handles the zoom and corner radius.
 */
.zoom-reveal-container {
    /* 
     * The calculations are done directly inside the properties to avoid
     * issues with the Elementor CSS editor linter.
     */
    transform: scale(calc(0.8 + 0.2 * var(--scroll-progress, 0)));
    border-radius: calc(50px * (1 - var(--scroll-progress, 0)));
}