/*
Theme Name: Hello Elementor Child
Template: hello-elementor
Version: 1.0.0
*/

body {
    /* Optional: Custom styles */
}

 .card {
            position: relative;
            overflow: hidden;
        }
        /* Spotlight nur bei Hover einblenden */
        
        .card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            background: radial-gradient( circle at var(--cursorX, 50%) var(--cursorY, 50%), var(--e-global-color-889c05d) 0%, transparent 40%);
            opacity: 1;
            transition: opacity 0.3s ease, background-position 0.1s;
			inset: 0;
        }