.content-breadcrumbs {
  position: relative;
  display: flex;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 32px;
  padding: 5px;
  border: 1px solid transparent;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(21, 15, 29, .88), rgba(10, 8, 15, .92)) padding-box,
    linear-gradient(110deg, rgba(192, 132, 252, .4), rgba(103, 232, 249, .15), rgba(232, 121, 249, .34)) border-box;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .24), 0 0 26px rgba(168, 85, 247, .07), inset 0 1px 0 rgba(255, 255, 255, .04);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.content-breadcrumbs::after {
  content: "";
  position: absolute;
  right: 18%;
  bottom: -1px;
  width: 34%;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(232, 121, 249, .75), transparent);
  filter: drop-shadow(0 0 5px rgba(217, 70, 239, .72));
}
.content-breadcrumbs ol {
  display: flex;
  align-items: center;
  gap: 5px;
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  color: rgba(224, 214, 232, .7);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: .015em;
  list-style: none;
}
.content-breadcrumbs ol::-webkit-scrollbar { display: none; }
.content-breadcrumbs li {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 5px;
}
.content-breadcrumbs li + li::before {
  content: "";
  width: 6px;
  height: 6px;
  margin: 0 3px 0 1px;
  border-top: 1px solid rgba(216, 180, 254, .4);
  border-right: 1px solid rgba(216, 180, 254, .4);
  transform: rotate(45deg);
}
.content-breadcrumbs__link,
.content-breadcrumbs__current {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  white-space: nowrap;
}
.content-breadcrumbs__link {
  color: rgba(233, 213, 255, .76);
  text-decoration: none;
  transition: color .22s ease, background-color .22s ease, border-color .22s ease, transform .22s ease;
}
.content-breadcrumbs__link:hover {
  border-color: rgba(192, 132, 252, .18);
  background: rgba(168, 85, 247, .1);
  color: #f5e9ff;
  transform: translateY(-1px);
}
.content-breadcrumbs__link:focus-visible {
  outline: 2px solid rgba(232, 121, 249, .82);
  outline-offset: 2px;
}
.content-breadcrumbs__home-icon {
  position: relative;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(192, 132, 252, .28);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(126, 34, 206, .32), rgba(15, 10, 22, .62));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 0 12px rgba(168, 85, 247, .1);
}
.content-breadcrumbs__home-icon::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 7px;
  width: 7px;
  height: 7px;
  border-top: 1.5px solid #e9d5ff;
  border-left: 1.5px solid #e9d5ff;
  transform: rotate(45deg);
}
.content-breadcrumbs__home-icon::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 7px;
  width: 8px;
  height: 7px;
  border: 1.5px solid #e9d5ff;
  border-top: 0;
  border-radius: 1px 1px 2px 2px;
}
.content-breadcrumbs__current {
  max-width: min(42vw, 360px);
  border-color: rgba(232, 121, 249, .26);
  background: linear-gradient(110deg, rgba(126, 34, 206, .3), rgba(217, 70, 239, .14));
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06), 0 0 18px rgba(168, 85, 247, .08);
}
.content-breadcrumbs__current-dot {
  flex: 0 0 auto;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #e879f9;
  box-shadow: 0 0 8px rgba(232, 121, 249, .9);
}
.content-breadcrumbs__label {
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 600px) {
  .content-breadcrumbs {
    width: 100%;
    margin-bottom: 24px;
    padding: 4px;
    border-radius: 18px;
  }
  .content-breadcrumbs__link,
  .content-breadcrumbs__current {
    min-height: 32px;
    padding: 0 10px;
  }
  .content-breadcrumbs__link.is-home { padding: 0 5px; }
  .content-breadcrumbs__link.is-home .content-breadcrumbs__label { display: none; }
  .content-breadcrumbs__home-icon { width: 22px; height: 22px; }
  .content-breadcrumbs__current { max-width: 64vw; }
}
@media (prefers-reduced-motion: reduce) {
  .content-breadcrumbs__link { transition: none; }
}
