.cmt-wrap {
    display: flex; align-items: center; background: #fff; color: #000;
    border: none; border-radius: 6px; overflow: hidden; font-size: 14px;
}
.cmt-etiqueta {
    flex-shrink: 0; background: #E43307; color: #fff; padding: 10px 16px; font-weight: 700;
    white-space: nowrap; font-size: 13.5px;
}
.cmt-cinta {
    flex: 1; overflow: hidden; position: relative; height: 40px;
    mask-image: linear-gradient(to right, transparent, #000 24px, #000 calc(100% - 24px), transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 24px, #000 calc(100% - 24px), transparent);
}
.cmt-pista {
    display: flex; align-items: center; white-space: nowrap; position: absolute;
    height: 40px; animation: cmt-scroll 25s linear infinite;
}
.cmt-wrap:hover .cmt-pista { animation-play-state: paused; }

.cmt-item {
    color: #000; text-decoration: none; font-weight: 600; padding: 0 8px;
}
.cmt-item:hover { text-decoration: underline; color: #1a3a6b; }
.cmt-separador { opacity: .4; padding: 0 6px; color: #000; }

@keyframes cmt-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@media (max-width: 600px) {
    .cmt-etiqueta { padding: 8px 10px; font-size: 12px; }
    .cmt-item { font-size: 13px; }
}
