.breadcrumb-bar {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  height: 38px;
  padding: 0 var(--space-lg);
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border-light);
}

.breadcrumb-home {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-en);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}

.breadcrumb-home:hover {
  color: var(--color-brand-dark);
}

.breadcrumb-home svg {
  width: 14px;
  height: 14px;
}

.breadcrumb-text {
  font-family: var(--font-en);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0.01em;
}

.breadcrumb-separator {
  color: var(--color-text-muted);
  font-size: var(--text-xs);
}

.breadcrumb-current {
  font-family: var(--font-en);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-brand-dark);
}

@media (max-width: 768px) {
  .breadcrumb-bar {
    padding: 0 var(--page-padding-mobile);
    gap: 6px;
    overflow: hidden;
  }

  body.page-home .breadcrumb-bar {
    display: none;
  }

  .breadcrumb-trail,
  .breadcrumb-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
  }

  .breadcrumb-home {
    min-width: var(--touch-min);
    min-height: var(--touch-min);
    justify-content: center;
    flex-shrink: 0;
  }
}
