/* CodeBack custom minimal overrides */
html, body { scroll-behavior: smooth; }
.nav-link { position: relative; }
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px; height: 2px; width: 0; background: currentColor;
  transition: width .25s ease;
}
.nav-link:hover::after { width: 100%; }

