/* Breadcrumb wrapper */
.hm-breadcrumb-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  line-height: 1.5;
  color: #6b7280;
}

.hm-breadcrumb-item {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.hm-breadcrumb-link {
  display: inline-flex;
  align-items: center;
  color: #111827;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  padding: 4px 0;
}

.hm-breadcrumb-link:hover {
  color: #d11149;
  text-decoration: none;
}

.hm-breadcrumb-link:focus-visible {
  color: #d11149;
  outline: 2px solid #d11149;
  outline-offset: 3px;
  border-radius: 2px;
}

.hm-breadcrumb-current,
.hm-breadcrumb-current-item {
  display: inline-flex;
  align-items: center;
  color: #6b7280;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.hm-breadcrumb-separator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  line-height: 1;
  flex: 0 0 auto;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.hm-breadcrumb-separator svg,
.hm-breadcrumb-separator i {
  display: block;
  width: 1em;
  height: 1em;
  transform-origin: center;
}

@media (max-width: 768px) {
  .hm-breadcrumb-wrapper {
    font-size: 13px;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .hm-breadcrumb-wrapper {
    font-size: 12px;
    gap: 6px;
  }

  .hm-breadcrumb-link {
    padding: 2px 0;
  }
}
