/* === Äußerer Bereich: Vollbreite mit Paddings === */
.breadcrumb-nav {
  width: 100%;
  padding: 0 2em;
  box-sizing: border-box;
  margin: 0.5em 0!important;
}

/* === Inner Container: Max-Width + zentriert === */
.breadcrumb-inner {
  max-width: 1250px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.4;
  color: #555;
  text-align: left;
}

/* === Breadcrumb Liste === */
.breadcrumb {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.breadcrumb li + li::before {
  content: "›";
  margin: 0 0.6em;
  color: #999;
}

/* Link-Stil */
.breadcrumb a {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Aktuelle Seite */
.breadcrumb .current span {
  font-weight: bold;
  color: #000;
}

/* Haus-Icon */
.icon-home {
  display: inline-block;
  width: 25px;
  height: 25px;
  background-image: url('/wp_multi2025/wp-content/themes/ctls-child/assets/icons/home-button.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  vertical-align: middle;
  margin-right: 0em;
}
/* Mobile-Layout */
@media screen and (max-width: 768px) {
  .breadcrumb-inner {
  font-size: 12px;
  line-height: 1.3;
  margin-bottom:20px;
}}

