/* MoveDone Update 105 — Tips for Movers navigation cue */
header nav a[href="/moving-tips.html"] {
  position: relative;
  text-decoration: none;
}

header nav a[href="/moving-tips.html"]::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -9px;
  width: 30px;
  height: 2px;
  border-radius: 999px;
  background: #ff5b55;
  transform: translateX(-50%);
}

header nav a[href="/moving-tips.html"]:hover::after,
header nav a[href="/moving-tips.html"]:focus-visible::after,
header nav a[href="/moving-tips.html"][aria-current="page"]::after {
  width: 100%;
}

@media (prefers-reduced-motion: no-preference) {
  header nav a[href="/moving-tips.html"]::after {
    transition: width 160ms ease;
  }
}
