/* ASG case studies - shared: read-progress bar + quicknav active state */
.asg-cs-progress{
  position:fixed;left:0;top:0;z-index:9999;
  height:3px;width:100%;background:transparent;pointer-events:none;
}
.asg-cs-progress i{
  display:block;height:100%;width:0;
  background:linear-gradient(90deg,#C8A24C,#2E6BE6);
  transition:width .12s linear;
}
.asg-cs-quicknav a.asg-active{
  border-color:#C8A24C!important;
  color:#fff!important;
  background:rgba(200,162,76,.16)!important;
}
@media(prefers-reduced-motion:reduce){
  .asg-cs-progress i{transition:none;}
}
