/* Minimal, theme-friendly breadcrumb styles */

.breadcrumb {
  font-size: 0.95rem;
  line-height: 1.4;
  margin: 0 0 1.25rem 0;
  color: inherit;
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
  color: inherit;
  opacity: 0.85;
}

/* Separator between items */
.breadcrumb li + li::before {
  content: "›";
  opacity: 0.45;
  margin: 0 0.35rem 0 0.15rem;
}

/* Links */
.breadcrumb a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dotted rgba(255,255,255,0.25);
}

.breadcrumb a:hover,
.breadcrumb a:focus {
  text-decoration: none;
  border-bottom-style: solid;
}

/* Current page */
.breadcrumb [aria-current="page"] {
  opacity: 1;
  font-weight: 600;
  border-bottom: none;
}

/* Small screens: tighten spacing */
@media screen and (max-width: 736px) {
  .breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  .breadcrumb ol {
    gap: 0.35rem;
  }
  .breadcrumb li + li::before {
    margin: 0 0.25rem;
  }
}
