/*
  SEO P1 - visible breadcrumbs and structured-data support.
  Scope is intentionally narrow: only the public breadcrumb component.
*/

.seo-breadcrumbs {
  margin: 0 0 18px;
  color: rgba(148, 163, 184, 0.88);
  font-size: 0.88rem;
  font-weight: 800;
}

.seo-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.seo-breadcrumbs li {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.seo-breadcrumbs li + li::before {
  content: "/";
  margin-right: 8px;
  color: rgba(45, 212, 191, 0.7);
  font-weight: 950;
}

.seo-breadcrumbs a,
.seo-breadcrumbs span {
  display: inline-block;
  max-width: min(42vw, 360px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.seo-breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

.seo-breadcrumbs a:hover {
  color: var(--accent, #2dd4bf);
}

.seo-breadcrumbs [aria-current="page"] {
  color: rgba(226, 232, 240, 0.94);
}

@media (max-width: 640px) {
  .seo-breadcrumbs {
    margin-bottom: 14px;
    font-size: 0.78rem;
  }

  .seo-breadcrumbs a,
  .seo-breadcrumbs span {
    max-width: 54vw;
  }
}
