/* Widget 12 (second half) — reading-progress bar. 3px brand-gradient bar fixed
   at the top of the viewport (design sample lines 38-42). */
.hc-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 50;
  pointer-events: none;
}
.hc-progress__fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #ff4d67, #fd788c);
}
