/* === Breadcrumb === */
.esh-breadcrumb {
  width: 100%;
  background: #f7f7fb;
  border-bottom: 1px solid #ececf4;
}
.esh-breadcrumb__container {
  max-width: 1300px;             /* stejné jako web */
  margin: 0 auto;
  padding: 10px 16px;
}

/* drobky v řádku, bez číslování */
.esh-breadcrumb ol {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 0;
}
.esh-breadcrumb ol > li {
  display: inline-flex !important;
  align-items: center;
  color: #5c5f6a;
}
/* šipka – Unicode kód pro jistotu proti „otazníkům“ */
.esh-breadcrumb ol > li::after {
  content: "\203A";
  margin: 0 8px;
  color: #999;
}
.esh-breadcrumb ol > li:last-child::after {
  content: "";
  margin: 0;
}
.esh-breadcrumb a {
  color: #4a3aa6;
  text-decoration: none;
  font-weight: 500;
}
.esh-breadcrumb a:hover { text-decoration: underline; }
.esh-breadcrumb .current {
  color: #2b2d33;
  font-weight: 600;
}

/* pás entit (mini filtr pod drobky) */
.esh-bc-entities {
  list-style: none;
  margin: 10px 0 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.esh-bc-entities li { display: inline-flex; }
.esh-bc-entities a {
  display: inl

