/* Shared right-to-left marquee for decorative full-width English text. */
.c-text-marquee {
    overflow: hidden;
    width: 100%;
    pointer-events: none;
}

.c-text-marquee__track {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: text-marquee-scroll var(--text-marquee-duration, 30s) linear infinite;
}

.c-text-marquee__item {
    display: block;
    flex: 0 0 auto;
    padding-right: .35em;
    white-space: nowrap;
}

/* Typography shared by every full-width decorative English marquee. */
.c-edge-marquee-text {
    font-family: Arial, sans-serif;
    font-size: clamp(100px, 8.333vw, 160px);
    font-weight: var(--fw-bold);
    line-height: 1;
    letter-spacing: .08em;
    white-space: nowrap;
}

@media (max-width: 767px) {
    .c-edge-marquee-text {
        font-size: 56px;
    }
}

@keyframes text-marquee-scroll {
    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .c-text-marquee__track {
        animation-play-state: paused;
    }
}
