/* krátká animace "bliknutí" */
@keyframes anchorPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0,0,0,0);
        transform: scale(1);
    }

    20% {
        box-shadow: 0 0 0 6px rgba(59,130,246,.35);
        transform: scale(1.01);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(59,130,246,0);
        transform: scale(1);
    }
}

.anchor-focus {
    border-radius: 1rem;
    animation: anchorPulse 1200ms ease-out 1;
    outline: 2px solid rgba(59,130,246,.35);
    outline-offset: 6px;
}
