.adesso-marquee {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  height: 40px;
  overflow: hidden;
  background: color-mix(in srgb, var(--theme-bg) 94%, transparent);
  border-top: 1px solid var(--theme-border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--theme-text);
  text-decoration: none;
  cursor: pointer;
}
.adesso-marquee:hover { color: var(--theme-accent); }
.adesso-marquee-track {
  display: flex;
  width: max-content;
  height: 100%;
  white-space: nowrap;
  animation: adessoMarqueeMove 62s linear infinite;
  will-change: transform;
}
.adesso-marquee-group {
  display: flex;
  align-items: center;
  flex: none;
  height: 100%;
}
.adesso-marquee-item {
  display: inline-flex;
  align-items: center;
  flex: none;
  height: 100%;
  padding: 0 1.6rem 0 3.25rem;
  box-sizing: border-box;
  font-family: var(--theme-font-body, Inter, sans-serif);
  font-size: 13px;
  line-height: 1;
  letter-spacing: .055em;
  text-transform: uppercase;
}
.adesso-marquee-item strong {
  font-weight: 800;
}
.adesso-marquee-live {
  color: #d40000;
  font-style: normal;
  font-weight: 800;
}
.adesso-marquee.is-active .adesso-marquee-item {
  letter-spacing: .075em;
}
.adesso-marquee-copy {
  display: inline-flex;
  align-items: center;
}
.adesso-marquee-gap {
  display: inline-block;
  white-space: pre;
}
.adesso-marquee-dot {
  width: 7px;
  height: 7px;
  margin: 0 .7rem 0 0;
  border-radius: 50%;
  background: #e32727;
  box-shadow: 0 0 0 0 rgba(227,39,39,.42);
  flex: none;
  animation: adessoMarqueeBreathe 1.8s ease-in-out infinite;
}
@keyframes adessoMarqueeBreathe {
  0%,100% { opacity:.38; transform:scale(.72); box-shadow:0 0 0 0 rgba(227,39,39,0); }
  50% { opacity:1; transform:scale(1.18); box-shadow:0 0 0 5px rgba(227,39,39,.12); }
}
.adesso-marquee:hover .adesso-marquee-track { animation-play-state: paused; }

@keyframes adessoMarqueeMove {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(-50%,0,0); }
}
@media (max-width: 700px) {
  .adesso-marquee { height: 37px; }
  .adesso-marquee-track { animation-duration: 54s; }
  .adesso-marquee-item { font-size: 11.5px; padding: 0 1.25rem 0 2rem; }
}
@media (prefers-reduced-motion: reduce) {
  .adesso-marquee-track { animation: none; }
  .adesso-marquee-dot { animation:none; opacity:1; }
}

@media (max-width:700px){.adesso-marquee-dot{width:6px;height:6px;margin:0 .58rem 0 0}}

/* RC4.80 — marquee informativo interno ad ADESSO È ORA. */
.adesso-marquee-on-air {
  pointer-events: none;
  cursor: default;
  z-index: 60;
}



/* STEP 9.15 — movimento verticale mobile più fluido */
@media(max-width:700px),(pointer:coarse){
  .adesso-marquee{
    will-change:top;
    backface-visibility:hidden;
    -webkit-backface-visibility:hidden;
  }
}
