.breadcrumb__wrapper {
  position: relative;
  z-index: 5;
  padding: 18px 0 10px;
  background: transparent;
}

.breadcrumb__wrapper .breadcrumb {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  margin: 0;
  padding: 6px;
  overflow: hidden;
  border: 1px solid rgba(0, 2, 24, .08);
  border-radius: 15px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 10px 30px rgba(0, 2, 24, .07);
  backdrop-filter: blur(12px);
  animation: codeboBreadcrumbIn .5s cubic-bezier(.22, .8, .25, 1) both;
}

.breadcrumb__wrapper .breadcrumb-item {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin: 0;
  padding: 0 !important;
  color: #4e5360;
  font-size: 12px;
  font-weight: 650;
  line-height: 1;
}

.breadcrumb__wrapper .breadcrumb-item + .breadcrumb-item::before {
  width: 22px;
  padding: 0 !important;
  color: #a9a8a4;
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  text-align: center;
  content: '›' !important;
}

.breadcrumb__wrapper .breadcrumb-link,
.breadcrumb__wrapper .breadcrumb-item > span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border-radius: 10px;
  color: #545966;
  text-decoration: none;
  transition: color .2s ease, background-color .2s ease, transform .2s ease;
}

.breadcrumb__wrapper .breadcrumb-item:first-child .breadcrumb-link::before {
  width: 20px;
  height: 20px;
  margin-right: 7px;
  border-radius: 7px;
  background: #f0ece7;
  color: #9A633F;
  font-size: 13px;
  line-height: 20px;
  text-align: center;
  content: '⌂';
}

.breadcrumb__wrapper .breadcrumb-link:hover,
.breadcrumb__wrapper .breadcrumb-link:focus {
  background: #f4f1ed;
  color: #9A633F;
  transform: translateY(-1px);
}

.breadcrumb__wrapper .breadcrumb-item:last-child > span {
  background: #9A633F;
  color: #fff;
  font-weight: 750;
  box-shadow: 0 5px 14px rgba(154, 99, 63, .22);
}

@keyframes codeboBreadcrumbIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 575.98px) {
  .breadcrumb__wrapper { padding: 11px 0 6px; }
  .breadcrumb__wrapper .container { padding-right: 12px; padding-left: 12px; }
  .breadcrumb__wrapper .breadcrumb {
    display: flex;
    width: 100%;
    min-height: 44px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 5px;
    border-radius: 13px;
    scrollbar-width: none;
  }
  .breadcrumb__wrapper .breadcrumb::-webkit-scrollbar { display: none; }
  .breadcrumb__wrapper .breadcrumb-item { flex: 0 0 auto; font-size: 11px; }
  .breadcrumb__wrapper .breadcrumb-link,
  .breadcrumb__wrapper .breadcrumb-item > span { min-height: 32px; padding: 0 10px; }
  .breadcrumb__wrapper .breadcrumb-item + .breadcrumb-item::before { width: 16px; font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .breadcrumb__wrapper .breadcrumb { animation: none; }
}
