/* ================================================================
   MCH — SUBNAV de división (compartida por las páginas internas
   de cada división). Misma paleta; barra fina bajo la nav.
   ================================================================ */

.subnav {
  position: sticky;
  top: 96px;
  z-index: 40;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (max-width: 600px) { .subnav { top: 80px; } }
.subnav__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; height: 52px;
}
.subnav__label {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-size: 13px; letter-spacing: .03em;
  color: #fff; white-space: nowrap;
}
.subnav__label .dot { background: var(--green); }
.subnav__menu { display: flex; gap: 4px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.subnav__menu::-webkit-scrollbar { display: none; }
.subnav__menu a {
  padding: 8px 14px; border-radius: 8px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.7);
  white-space: nowrap; transition: color .15s ease, background .15s ease;
}
.subnav__menu a:hover { color: #fff; background: rgba(255,255,255,.08); }
.subnav__menu a.is-active { color: var(--green); }
@media (max-width: 600px) {
  .subnav__inner { height: auto; flex-direction: column; align-items: flex-start; gap: 6px; padding-block: 10px; }
  .subnav__menu { width: 100%; }
}
