/* Global breadcrumb strip — sits directly below the header */
.gb-bar {
  background: #F5F7FB;
  border-bottom: 1px solid rgba(17,24,39,0.07);
  padding: 10px 0;
  font-size: 0.82rem;
  line-height: 1.3;
}

.gb-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}

.gb-link {
  color: #055A78;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s ease;
}

.gb-link:hover {
  color: #0AA6D6;
  text-decoration: underline;
}

.gb-sep {
  margin: 0 8px;
  color: rgba(17,24,39,0.3);
  font-weight: 400;
  user-select: none;
}

.gb-current {
  color: rgba(17,24,39,0.55);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 320px;
}

@media (max-width: 768px) {
  .gb-bar {
    padding: 8px 0;
    font-size: 0.78rem;
  }

  .gb-inner {
    padding: 0 16px;
  }

  .gb-current {
    max-width: 200px;
  }
}
