/* Stili per la banda rossa */
.red-band-block {
    position: fixed;
    left: 0;
    right: 0;
    width: 100vw;     /* fallback */
    width: 100svw !important;
    box-sizing: border-box;
    overflow-x: clip; 
    background: #e30613;
    color: #fff;
    text-align: left;
    padding: 0;
    z-index: 9999;
    font-size: 0.8em;
    font-weight: 400;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.red-band-content {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}
.red-band-track {
    display: inline-flex;
    white-space: nowrap;
    animation: red-band-scroll 20s linear infinite;
}
.red-band-scroll {
    display: inline-block;
    white-space: nowrap;
    padding: 0 .5em;
}

.red-band-separator-icon {
    width: 18px; 
    height: auto;
    margin: 0 12px;
}
@keyframes red-band-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
@media (min-width: 901px) {
    .red-band-block {
        bottom: 0;
        top: auto;
    }
}
@media (max-width: 900px) {
    .red-band-block {
        top: 0;
        bottom: auto;
    }
}
.red-band-link {
    color: #fff;
    text-decoration: underline;
    margin-left: 1em;
    font-weight: 700;
}
