/* Bootstrap navbar styling to match the existing site look & feel (no layout shifts outside the navbar) ver=1.0.1 */
.tst-container {
  max-width: 1280px;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .tst-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .tst-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.tst-navbar {
  height: 64px; /* matches previous h-16 */
  align-items: stretch;
  padding: 0;
}

.tst-navbar .navbar-brand {
  padding-top: 0;
  padding-bottom: 0;
}
.tst-logo {
  height: 44px; /* matches previous h-14 */
  width: auto;
  display: block;
  padding: 0px 0px;
}
.tst-navbar .navbar-nav {
  height: 64px;
}
.tst-navbar .navbar-collapse {
  background: #fff;
}
@media (min-width: 768px) {
  .tst-navbar .navbar-collapse {
    background: transparent;
  }
}

.tst-nav-link {
  font-size: 0.875rem; /* text-sm */
  font-weight: 500;
  color: #4b5563; /* gray-600 */
  padding: 0;
  line-height: 64px; /* vertical center */
  position: relative;
  transition: color 0.15s ease-in-out;
}
.tst-nav-link:hover {
  color: #0a2240;
}
.tst-nav-link.active {
  color: #0a2240;
}

.tst-nav-link.active::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px; /* underline sits near bottom like original */
  width: 44px;
  height: 2px;
  background: #f5b800;
  border-radius: 2px;
}

/* Toggler */
.tst-toggler {
  border: 0;
  padding: 0.5rem;
}
.tst-toggler:focus {
  box-shadow: none;
}
