.splide-slider-navigation {
    a {
        align-items: center;
        background-color: var(--wp--preset--color--secondary);
        border: 1px solid var(--wp--preset--color--secondary);
        cursor: pointer;
        display: inline-flex;
        height: 42px;
        justify-content: center;
        margin-right: 10px;
        min-width: unset !important;
        padding-left: 0;
        padding-right: 0;
        transition-property: background-color, border-color;
        transition-duration: 0.2s;
        transition-timing-function: ease-in-out;
        width: 42px;

        svg {
            width: 10px;
        }

        &.previous {
            svg {
                transform: rotate(180deg);
            }
        }
    }
}

.has-secondary-background-color {
    .splide-slider-navigation {
        a {
            background-color: transparent;
            border: 1px solid white;
        }
    }
}