/* orientation-nav.css  –  hide the “Download” link on narrow portrait screens  */

/* 0 – 639 px wide  AND  portrait: hide */
@media (max-width:639px) and (orientation:portrait){
  .nav-download{display:none}
}

/* 0 – 639 px wide  AND  landscape: show again */
@media (max-width:639px) and (orientation:landscape){
  .nav-download{display:inline-flex}   /* flex because the parent nav is flex */
}


@media (max-width:639px) and (orientation:portrait){
  .nav-hide-compact { display:none }
}