.wp-block-list.is-style-list-arrow {
    list-style: none;
    padding-left: 0;
}

.wp-block-list.is-style-list-arrow li {
    background-color: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    width: fit-content;
    border: none;
    position: relative;
    min-height: 2rem;
    font-size: inherit;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.wp-block-list.is-style-list-arrow li::before {
    content: url("../../assets/svg/arrows.svg");
    transition: transform 0.2s ease-in-out;
    border-image: linear-gradient(to bottom, rgba(133, 128, 137, 0.1), transparent) 1;
    border-style: solid;
    border-width: 1px;
    width: 2.25rem;
    height: 2rem;
    align-items: center;
    padding-block: .25rem;
    display: flex;
    justify-content: center;
    flex-shrink: 0;
}

.wp-block-list.is-style-list-arrow li:hover::before {
    animation: iconBorderGradient 0.8s linear forwards;
}

@keyframes iconBorderGradient {
    0% {
        border-image: linear-gradient(0deg, rgba(171, 26, 220, 0), rgba(171, 26, 220, 0.8)) 1;
    }

    25% {
        border-image: linear-gradient(90deg, rgba(171, 26, 220, 0.8), rgba(171, 26, 220, 0)) 1;
    }

    50% {
        border-image: linear-gradient(180deg, rgba(171, 26, 220, 0), rgba(171, 26, 220, 0.8)) 1;
    }

    75% {
        border-image: linear-gradient(270deg, rgba(171, 26, 220, 0.8), rgba(171, 26, 220, 0)) 1;
    }

    100% {
        border-image: linear-gradient(360deg, rgba(171, 26, 220, 0.8), rgba(171, 26, 220, 0.8)) 1;
    }
}