.guide-check-progress {
  position: sticky;
  top: 86px;
  z-index: 12;
  margin: 0 0 44px;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto;
  gap: 18px;
  align-items: center;
  border: 2px solid var(--ink);
  border-radius: 16px;
  background: var(--cream);
  box-shadow: 5px 6px 0 var(--ink);
}
.guide-check-progress > div:first-child { display: grid; gap: 8px; }
.guide-check-progress b { font: 800 12px/1 var(--mono); text-transform: uppercase; letter-spacing: .06em; }
.guide-check-progress i { height: 8px; overflow: hidden; border-radius: 99px; background: #e5dccd; }
.guide-check-progress i span { width: 0; height: 100%; display: block; background: var(--blue); transition: width .25s; }
.guide-check-actions { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; justify-content: flex-end; }
.guide-check-actions > span { color: #625d6d; font-size: 11px; }
.guide-check-actions button {
  padding: 8px 10px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font: 750 10px/1 var(--mono);
  cursor: pointer;
}
.guide-check-actions button:hover:not(:disabled) { background: var(--ink); color: #fff; }
.guide-check-actions button:disabled { opacity: .45; cursor: not-allowed; }
.guide-step-check {
  margin: -12px 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}
.guide-step-check input { width: 22px; height: 22px; accent-color: var(--blue); }
.guide-step-check:has(input:checked) span { text-decoration: line-through; color: #716b79; }
@media (max-width: 760px) {
  .guide-check-progress { position: static; grid-template-columns: 1fr; }
  .guide-check-actions { justify-content: flex-start; }
  .guide-check-actions > span { width: 100%; }
}
