/* Posoria Hero "Try Free on WordPress" button pulse */

.elementor-element-11691bb .pxl-button a {
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    animation: posoria-hero-pulse 2s ease-out infinite;
}

.elementor-element-11691bb .pxl-button a:hover {
    animation-play-state: paused;
    background-color: rgba(204, 241, 135, 0.12);
    box-shadow: 0 0 0 1px rgba(204, 241, 135, 0.55);
}

@keyframes posoria-hero-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(204, 241, 135, 0.55);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(204, 241, 135, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(204, 241, 135, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .elementor-element-11691bb .pxl-button a {
        animation: none;
    }
}
