/* SUBNAV – navigace pod hlavičkou */
.subnav {
  background: #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
}

.subnav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.subnav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
  padding: 0.4rem 0.7rem;
  border-radius: 6px;
  transition: background .2s ease, color .2s ease;
}

.subnav a:hover {
  background: #e0f2fe;
  color: #0369a1;
}

/* AKTIVNÍ STRÁNKA */
.subnav a.active {
  background: #0ea5e9;
  color: #fff;
}

/* MOBIL */
@media (max-width: 768px) {
  .subnav-inner {
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
  }
}
