/* =========================================================
   BREADCRUMB
   ========================================================= */

.c-breadcrumb {
  padding: 1rem var(--grid-margin);
  background-color: transparent;
  z-index: 11;
}

.c-breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 18px;
  line-height: 1.5;
}

.c-breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.c-breadcrumb__item:not(:last-child)::after {
  content: "›";
  font-size: 18px;
  color: #B2A4D2;
  font-weight: 400;
}

.c-breadcrumb__link {
  color: #B2A4D2;
  text-decoration: none;
  transition: color 0.2s ease;
}

.c-breadcrumb__link:hover {
  color: #5D4D9B;
}

.c-breadcrumb__item--active .c-breadcrumb__current {
  color: #5D4D9B;
  font-weight: 700;
}

@media (max-width: 768px) {
  .c-breadcrumb {
    display: none;
    padding: 0.75rem var(--grid-margin);
  }

  .c-breadcrumb__list {
    font-size: 16px;
  }
}
