/* Stili per la banda rossa */
.red-band-block {
    position: fixed;
    left: 0;
    width: 100vw;
    background: #e30613;
    color: #fff;
    text-align: left;
    padding: .5em !important;
    z-index: 9999;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    overflow: hidden;
}
.red-band-content {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}
.red-band-scroll {
    display: inline-block;
    white-space: nowrap;
    animation: red-band-scroll 20s linear infinite;
    width: max-content;
    padding: 0 .5em;
}
.red-band-scroll--hidden {
    position: absolute !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    padding: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
}
@keyframes red-band-scroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}
@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;
}
