.breadcrumb {
  background-color: #fff;
  padding: 12px 0;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  width: 100%;
}

.breadcrumb__list {
  list-style: none;
  margin: 0;
  padding: 0 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  color: #666;
  line-height: 1.2;
  margin: 0;
  padding: 0;
}

.breadcrumb__item:not(:last-child)::after {
  content: ">";
  margin: 0 10px;
  color: #ccc;
  font-weight: 400;
  font-size: 12px;
}

.breadcrumb__link {
  text-decoration: none;
  color: var(--color-text-strong, #252728);
  font-weight: 500;
  transition: color 0.2s;
  display: inline-block;
}

.breadcrumb__link:hover {
  color: #0093cb;
  text-decoration: underline;
}

.breadcrumb__current {
  color: #888;
  font-weight: 400;
  pointer-events: none;
  cursor: default;
}

@media (max-width: 768px) {
  .breadcrumb {
    padding: 10px 0;
  }

  .breadcrumb__list {
    font-size: 12px;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 8px;
  }

  .breadcrumb__item {
    display: inline-flex;
  }

  .breadcrumb__list::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }
}
