.gmb-breadcrumb {
  font-size: 14px;
  margin: 10px 0;
  overflow-x: auto;       /* allow horizontal scroll */
  -webkit-overflow-scrolling: touch; /* smooth scroll on mobile */
  white-space: nowrap;    /* prevent wrapping */
}

.gmb-breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;   /* inline flex so it scrolls horizontally */
  gap: 6px;
}

.gmb-breadcrumb li {
  display: inline-flex;
  align-items: center;
}

.gmb-breadcrumb li + li::before {
  content: "/";
  margin: 0 6px;
  color: #999;
}

.gmb-breadcrumb a {
  text-decoration: none;
  color: #555;
  transition: color 0.2s ease;
  white-space: nowrap; /* keep each link on one line */
}

.gmb-breadcrumb a:hover {
  color: #303260; /* hover color */
}