.route-progress { --route-accent: #0c6545; --route-line: #c7d0ca; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); width: 100%; margin: 0; padding: 12px 0 8px; list-style: none; }
.route-progress--steps-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.route-progress--steps-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.route-progress__step { position: relative; display: grid; min-width: 0; padding: 31px 6px 0; color: #7b8780; font-size: 11px; line-height: 1.25; text-align: center; justify-items: center; }
.route-progress__step::after { position: absolute; z-index: 0; top: 12px; left: 50%; width: 100%; height: 2px; background: var(--route-line); content: ''; }
.route-progress__step:last-child::after { display: none; }
.route-progress__node { position: absolute; z-index: 2; top: 4px; left: 50%; display: grid; width: 18px; height: 18px; border: 1px solid var(--route-line); border-radius: 50%; background: #fff; color: #7b8780; font-size: 10px; font-weight: 600; place-items: center; transform: translateX(-50%); }
.route-progress__label { display: block; width: 100%; min-width: 0; min-height: 28px; overflow-wrap: anywhere; text-wrap: balance; }
.route-progress__step--done, .route-progress__step--current { color: #0c6545; }
.route-progress__step--done .route-progress__node { border-color: var(--route-accent); background: var(--route-accent); color: #fff; }
.route-progress__step--done::after { background: var(--route-accent); }
.route-progress__step--current .route-progress__node { border: 3px solid var(--route-accent); box-shadow: 0 0 0 3px #dcefe3; color: var(--route-accent); }
.route-progress__truck { position: absolute; z-index: 3; top: -3px; left: 57%; width: min(24px, 22%); padding: 0 2px; background: #fff; }
.route-progress__truck img { display: block; width: 18px; height: 18px; }
.route-progress--moving .route-progress__truck { animation: route-truck 2.8s ease-in-out infinite; }
@keyframes route-truck { 0%, 15% { transform: translateX(0); } 65%, 100% { transform: translateX(clamp(36px, 8vw, 108px)); } }
.route-progress--client { width: min(100%, 360px); padding-top: 6px; }
.route-progress--client .route-progress__step { font-size: 10.5px; }
.route-progress--office { max-width: 760px; margin-inline: auto; padding: 4px 0 20px; }
.route-progress--office .route-progress__step { font-size: 13px; text-align: center; }
@media (max-width: 720px) {
  .route-progress--office { padding-bottom: 10px; }
  .route-progress--office .route-progress__step { padding-right: 2px; padding-left: 2px; font-size: 11px; }
}
@media (prefers-reduced-motion: reduce) {
  .route-progress--moving .route-progress__truck { animation: none; }
}
