/* ── Beautiful Breadcrumbs ── */
.crumbps {
  padding: 28px 0 14px;
}
/* Breathing room between content sections */
.container > .content-text {
  padding-top: 8px;
}
.content-text h1 {
  margin-top: 0;
  margin-bottom: 18px;
}
.content-text h2 {
  margin-top: 36px;
  margin-bottom: 12px;
}
.content-text h3 {
  margin-top: 24px;
  margin-bottom: 10px;
}
.content-text p {
  margin-bottom: 14px;
}
.content-text ul,
.content-text ol {
  margin-bottom: 14px;
  padding-left: 22px;
}
.content-text li {
  margin-bottom: 6px;
}
/* Override base bundle styles */
.breadcrumb {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0 !important;
  padding: 7px 16px !important;
  margin: 0 0 22px !important;
  background: linear-gradient(90deg,rgba(22,32,64,.85),rgba(15,24,48,.8)) !important;
  border: 1px solid rgba(34,142,231,.28) !important;
  border-radius: 30px !important;
  list-style: none !important;
  font-size: 13px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}
/* Hide the raw "/" text node rendered as anonymous flex item */
.breadcrumb::before,
.breadcrumb::after { display: none; }

.breadcrumb-item {
  display: flex;
  align-items: center;
  line-height: 1;
  white-space: nowrap;
}
/* Chevron separator between items */
.breadcrumb-item + .breadcrumb-item::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-top: 1.5px solid rgba(34,142,231,.55);
  border-right: 1.5px solid rgba(34,142,231,.55);
  transform: rotate(45deg);
  margin: 0 9px;
  flex-shrink: 0;
}
/* Home link */
.breadcrumb-item a {
  color: #7fb3e0;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color .18s;
}
.breadcrumb-item:first-child a::before {
  content: '';
  display: inline-block;
  width: 13px;
  height: 13px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z'/%3E%3C/svg%3E") center/contain no-repeat;
  opacity: .85;
  flex-shrink: 0;
}
.breadcrumb-item a:hover { color: #4db3ff; }

/* Active (current page) item */
.breadcrumb-item.active {
  color: #fff;
  font-weight: 600;
  letter-spacing: .01em;
}

@media (max-width: 480px) {
  .breadcrumb { font-size: 12px; padding: 6px 12px !important; }
  .breadcrumb-item + .breadcrumb-item::before { margin: 0 6px; }
}
