.wr-cbf {
    --wr-cbf-text: #ffffff;
    --wr-cbf-gap: 48px;
    --wr-cbf-speed: 18s;
    position: relative;
    display: block;
    width: 100%;
    max-width: 100%;
    background: #000000;
    color: var(--wr-cbf-text);
    border-radius: 10px;
    overflow: hidden;
    box-sizing: border-box;
}

.wr-cbf__link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
    width: 100%;
}

.wr-cbf__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: inherit;
    box-sizing: border-box;
    gap: var(--wr-cbf-gap);
}

.wr-cbf__text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--wr-cbf-text);
    white-space: nowrap;
}

.wr-cbf__marquee {
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
}

.wr-cbf__marquee-content {
    display: inline-flex;
    align-items: center;
    gap: var(--wr-cbf-gap);
    animation: wr-cbf-marquee var(--wr-cbf-speed) linear infinite;
    min-width: 200%;
}

@keyframes wr-cbf-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.wr-cbf.is-marquee .wr-cbf__marquee-content {
    will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
    .wr-cbf__marquee-content {
        animation: none;
    }
}

.wr-cbf.is-fullwidth {
    position: relative;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
    max-width: 100vw;
}

.wr-cbf.is-fullwidth .wr-cbf__inner {
    max-width: 100%;
    overflow: hidden;
}

.wr-cbf.has-link:hover {
    cursor: pointer;
}
