/* ── Бегущая строка (marquee) ── */
/* Высота строки задаётся переменной --marquee-h в style.css. */

.marquee {
    display: flex;
    align-items: center;
    height: var(--marquee-h);
    overflow: hidden;
    background: var(--color-accent);
    color: #fff;
}

.marquee-track {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    animation: marquee 40s linear infinite;
}

.marquee-logo {
    height: 28px;
    width: auto;
    margin-right: 40px;
}

.marquee-text {
    margin-right: 40px;
    font-family: var(--font-family-oswald);
    white-space: nowrap;
}

@keyframes marquee {
    to {
        transform: translateX(-100%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .marquee-track {
        animation: none;
    }
}
