/* Shared navigation: keep the existing home and add the program beside its CTA. */
.nav-inner { gap: 20px; max-width: 1440px; }
.nav-links { gap: 20px; align-items: center; }
.nav-actions { display: flex; align-items: stretch; gap: 10px; flex-shrink: 0; }
.nav-actions .nav-btn { display: flex; align-items: center; justify-content: center; text-decoration: none; white-space: normal; width: 185px; text-align: center; line-height: 1.35; padding: 9px 16px; }
.program-nav { display: flex; align-items: center; justify-content: center; padding: 8px 16px; border: 1px solid var(--red); background: var(--red); color: white; text-decoration: none; font-size: .78rem; line-height: 1.35; font-weight: 500; transition: background .2s; }
.program-nav:hover { background: var(--red2); }
.program-nav[aria-current="page"] { box-shadow: inset 0 -3px 0 rgba(255,255,255,.45); }
.nav-actions a:focus-visible, .nav-actions button:focus-visible { outline: 3px solid var(--red); outline-offset: 4px; }
@media (max-width: 1400px) { #navbar .nav-links { display: none; } }
@media (max-width: 1000px) {
  #navbar, #navbar .nav-inner { height: 152px; }
  #navbar { background: rgba(250,249,246,.97); border-bottom: 1px solid var(--border); }
  #navbar .nav-inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); grid-template-rows: 70px 74px; gap: 0 10px; padding: 0 20px 8px; }
  #navbar .main-logo { height: 54px; max-width: 100%; }
  .nav-actions { display: contents; }
  .nav-actions .nav-btn { justify-self: end; width: 100%; max-width: 185px; min-height: 38px; padding: 8px 12px; font-size: .67rem; }
  .program-nav { grid-column: 1; grid-row: 2; align-self: stretch; text-align: center; font-size: .76rem; padding: 7px 10px; }
  .hta-nav { grid-column: 2; }
  .program-nav br { display: none; }
  #hero { padding-top: 152px; }
}
@media (prefers-reduced-motion: reduce) { .program-nav { transition: none; } }
