.blinking-job-link-container-ba135314 {
    display: flex;
    width: 100%;
}
.elementor-align-left .blinking-job-link-container-ba135314 { justify-content: flex-start; }
.elementor-align-center .blinking-job-link-container-ba135314 { justify-content: center; }
.elementor-align-right .blinking-job-link-container-ba135314 { justify-content: flex-end; }
.elementor-align-justify .blinking-job-link-container-ba135314 { justify-content: stretch; }
.elementor-align-justify .blinking-job-link-container-ba135314 a { width: 100%; text-align: center; }

.blinking-job-link-ba135314 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    position: relative;
    --pulse-color: rgba(227, 52, 47, 0.6);
}

.blinking-job-link-icon-ba135314 {
    display: inline-flex;
    align-items: center;
}
.blinking-job-link-icon-ba135314.icon-left {
    margin-right: 10px;
}
.blinking-job-link-icon-ba135314.icon-right {
    margin-left: 10px;
}

/* Animations */
.blinking-job-link-ba135314.effect-pulse {
    animation: pulse-glow-ba135314 1.5s infinite;
}

.blinking-job-link-ba135314.effect-flash {
    animation: smooth-flash-ba135314 1s infinite alternate;
}

.blinking-job-link-ba135314.effect-scale {
    animation: scale-beat-ba135314 1.2s infinite;
}

@keyframes pulse-glow-ba135314 {
    0% {
        box-shadow: 0 0 0 0 var(--pulse-color);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

@keyframes smooth-flash-ba135314 {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 1;
    }
}

@keyframes scale-beat-ba135314 {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}
