
/* OPRAVA HORNÍHO MENU – mobil */
.site-nav{
  width:100%;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  align-items:center;
  gap:6px;
  padding:8px 10px;
  background:#fff;
  border-bottom:1px solid #e1e6ed;
  overflow:visible;
}
.site-nav a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:40px;
  padding:8px 12px;
  border-radius:8px;
  background:#edf3fb;
  color:#0b63ce;
  font-size:14px;
  font-weight:700;
  line-height:1.2;
  white-space:nowrap;
  text-decoration:none;
  flex:0 0 auto;
}
.site-nav a:hover{background:#e3edf9;text-decoration:none}
@media(max-width:520px){
  .site-nav{
    justify-content:flex-start;
    flex-wrap:nowrap;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
    padding:7px 10px;
  }
  .site-nav::-webkit-scrollbar{display:none}
  .site-nav a{font-size:13px;min-height:38px;padding:8px 10px}
}
