/* Resources Center – top nav
 * Minimal, clean, underline-active look.
 */

.resources-nav {
    width: 100%;
    background: #ffffff;
    position: sticky;
    top: 90px;
    padding: 10px 0 4px;
    z-index: 20;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.resources-nav__inner {
  max-width: var(--container-width, 1540px);
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  gap: 28px;
  align-items: flex-end;
  overflow-x: auto;
  scrollbar-width: none;
}
.resources-nav__inner::-webkit-scrollbar { display: none; }

.resources-nav__link {
  font-size: 18px;
  line-height: 1.2;
  color: #1b1532;
  text-decoration: none;
  padding-bottom: 6px;
  position: relative;
  white-space: nowrap;
  opacity: .9;
  transition: opacity .18s ease;
}

.resources-nav__link:hover { opacity: 1; }

.resources-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  height: 2px;
  width: 0%;
  background: #3b2796; /* adjust to brand purple */
  transition: width .22s ease;
}

.resources-nav__link.is-active::after {
  width: 100%;
}
