
/* v25 - isolated professional newsbar inside tablet */
.tablet-newsbar{
  position:absolute;
  left:18px;
  right:18px;
  bottom:14px;
  height:42px;
  z-index:30;
  display:flex;
  align-items:stretch;
  overflow:hidden;
  border-radius:12px;
  background:linear-gradient(90deg,#052f28 0%,#064e3b 52%,#08705a 100%);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 7px 20px rgba(2,44,34,.12);
}
.tablet-newsbar-label{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  gap:8px;
  padding:0 15px;
  background:#032f27;
  border-right:1px solid rgba(255,255,255,.12);
  color:#fff;
  font-size:11px;
  font-weight:850;
  letter-spacing:.08em;
  white-space:nowrap;
}
.tablet-newsbar-dot{
  width:7px;
  height:7px;
  border-radius:50%;
  background:#6ee7b7;
}
.tablet-newsbar-window{
  position:relative;
  flex:1 1 auto;
  min-width:0;
  overflow:hidden;
  background:transparent;
}
.tablet-newsbar-marquee{
  position:absolute;
  top:0;
  left:0;
  height:42px;
  display:flex;
  align-items:center;
  gap:28px;
  width:max-content;
  min-width:200%;
  color:#fff;
  font-size:12px;
  font-weight:750;
  white-space:nowrap;
  animation:tabletNewsbarScroll 24s linear infinite;
  will-change:transform;
}
.tablet-newsbar-marquee span{
  color:#fff;
}
.tablet-newsbar-sep{
  color:#a7f3d0!important;
  font-size:16px;
}
@keyframes tabletNewsbarScroll{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}
.hero-tablet-screen{
  padding-bottom:60px!important;
}
@media (prefers-reduced-motion: reduce){
  .tablet-newsbar-marquee{animation:none;position:static;padding-left:16px;min-width:0}
}
@media(max-width:760px){
  .hero-tablet-screen{padding-bottom:52px!important}
  .tablet-newsbar{
    left:9px;
    right:9px;
    bottom:9px;
    height:35px;
    border-radius:9px;
  }
  .tablet-newsbar-label{
    padding:0 9px;
    gap:6px;
    font-size:9px;
  }
  .tablet-newsbar-marquee{
    height:35px;
    font-size:10px;
    gap:20px;
  }
}
