/* Styles for the Word Slider Block */
main .ws-splide-slider {
    padding: 0;
    margin-bottom: 10rem;
    margin-top: 10rem;
    max-width: 100%;
}

main .ws-splide-slider:first-child {
    margin-top: 0;
}

main .ws-splide-slider ul {
    width: 100%;
    gap: 5rem;
    width: max-content;
}

main .ws-splide-slider li {
    color: var(--headline-color);
    font-size: var(--mediumsize);
    font-weight: 700;
    width: max-content;
    max-width: none;
    flex-wrap: nowrap;
    max-width: max-content;
}

main .ws-splide-slider li:before {
    content: '';
    color: var(--secondary);
    opacity: 0.5;
    height: 0.5em;
    width: 0.5em;
    display: inline-block;
    background-color: var(--secondary);
    border-radius: 50%;
    margin-right: 5rem;
}

.ws-splide-slider .track {
    padding: 0;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.ws-splide-slider ul {
    display: flex;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none;
    width: max-content;
    max-width: max-content;
    gap: var(--gap);
    flex-wrap: nowrap;
    align-items: stretch;
    animation: partner var(--duration, 15s) linear 0s infinite normal both;
    min-width: 200vw;
    justify-content: space-evenly;
}

.ws-splide-slider ul:hover,
.ws-splide-slider ul:focus,
.ws-splide-slider ul:focus-within {
    animation-play-state: paused;
}

@keyframes partner {
    from {
        transform: translateX( 0px );
    }
    to {
        transform: translateX( calc(((100% + var(--gap)) / 5) * -1));
    }
}