/* SITE NAVMENU */ .header__navigation { background-color: var(--bg-special); border-radius: var(--border-radius-default); padding: var(--margin-padding-Y-small); } .header__navigation-list { display: flex; align-items: center; justify-content: space-evenly; @media (max-width: 768px) { /* Grid items stretch to at least 100px or take up full width */ display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); justify-items: center; gap: var(--gap-medium) var(--gap-small); } } .header__navigation-link--active { color: var(--text-color); text-decoration: none; }