The Navigation Worked Fine Until Someone Zoomed In

Jardiance website navigation menu viewed at 400% browser zoom showing link text and menu items clipped by fixed-width containers, making navigation unreadable.
.menu-item {  white-space: normal;  word-wrap: break-word;  overflow-wrap: break-word;}.hamburger-menu {  max-width: 100%;}.menu-container {  display: flex;  flex-direction: column;}
@media (max-width: 320px) {  .menu-item {    font-size: 1rem;    line-height: 1.4;  }}

    Why is 400% zoom important in accessibility testing?

    400% zoom simulates how many low-vision users browse the web. At this level, content must remain readable and functional without horizontal scrolling, as required by WCAG guidelines.

    What issue occurs with navigation at high zoom levels?

    At 400% zoom, navigation links can become clipped or cut off, making it difficult or impossible for users to understand where links lead.

    What causes navigation menus to break at high zoom?

    Common causes include fixed-width layouts, improper use of CSS (like overflow: hidden), and lack of responsive design for very narrow viewports.

    How can this issue be fixed?

    Ensure responsive design with flexible layouts, allow text wrapping, avoid fixed widths, and test navigation at 400% zoom to confirm content reflows properly.