/* Integrated Breadcrumbs Styling for wsgTheme */
.breadcrumbs {
  font-size: 1rem;
  margin: 1.5rem 0 2rem 0;
  padding: 0.75em 1.25em;
  background: #f7f9fb;
  border-radius: 0.5em;
  box-shadow: 0 1px 4px 0 rgba(0,0,0,0.03);
  border: 1px solid #e3e8ee;
  max-width: 100vw;
  overflow-x: auto;
}
.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25em;
  padding: 0;
  margin: 0;
}
.breadcrumbs li {
  color: #4a5a6a;
  display: flex;
  align-items: center;
  font-size: 1em;
}
.breadcrumbs li:not(:last-child)::after {
  content: '\203A'; /* › */
  margin: 0 0.6em;
  color: #bfc9d1;
  font-size: 1.1em;
}
.breadcrumbs li.current {
  color: #1e293b;
  font-weight: 600;
}
.breadcrumbs a {
  color: #1681c2;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.18s;
}
.breadcrumbs a:hover,
.breadcrumbs a:focus {
  color: #0b4e78;
  text-decoration: underline;
}
@media (max-width: 600px) {
  .breadcrumbs {
    font-size: 0.95rem;
    padding: 0.5em 0.5em;
  }
  .breadcrumbs li:not(:last-child)::after {
    margin: 0 0.35em;
  }
}
