.breadcrumb-shell {
  position: relative;
  z-index: 2;
  padding: 14px 0 0;
  background: linear-gradient(180deg, rgba(12, 10, 26, 0.94) 0%, rgba(12, 10, 26, 0) 100%);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  width: fit-content;
  max-width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(12, 10, 26, 0.48);
  backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s ease, opacity 0.2s ease;
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb-separator {
  color: rgba(255, 255, 255, 0.34);
}

.breadcrumb-current {
  color: #fff;
  font-weight: 700;
}

@media (max-width: 767px) {
  .breadcrumb-shell {
    padding-top: 10px;
  }

  .breadcrumb {
    gap: 8px;
    padding: 9px 12px;
    font-size: 12px;
  }
}
