/* Elemate Breadcrumbs Pro */
.elbc { 
  --elbc-gap: 8px;
  font-size: 14px;
  line-height: 1.6;
}

.elbc ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0; /* spacing via ::before + margin */
}

.elbc .elbc-item {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.elbc .elbc-item a {
  text-decoration: none;
}

.elbc .elbc-item + .elbc-item {
  margin-left: var(--elbc-gap);
}

/* Separator via inherited CSS variable set inline on <nav style="--elbc-sep:'›';"> */
.elbc .elbc-item + .elbc-item::before {
  content: var(--elbc-sep, "/"); /* fallback if inline var missing */
  margin-right: var(--elbc-gap);
  opacity: .7;
}

.elbc-sep-slash .elbc .elbc-item + .elbc-item::before {
  content: "/";
}


.elbc-sep-chevron .elbc .elbc-item + .elbc-item::before {
   content: "›";
}

.elbc-sep-dchevron .elbc .elbc-item + .elbc-item::before {
   content: "»";
}

.elbc-sep-dash .elbc .elbc-item + .elbc-item::before {
content: "–";
}


.elbc-sep-dot .elbc .elbc-item + .elbc-item::before {
content: "•";
}
/* Current item emphasis */
/*.elbc .elbc-current { font-weight: 600; }*/

/* Responsive niceties */
@media (max-width: 480px) {
  .elbc { font-size: 13px; }
}
