/**
 * Breadcrumbs Styles
 *
 * @package AFEL
 */

.afel-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  font-size: 0.875rem;
  color: var(--afel-secondary-text-color);
}

.single-post .afel-breadcrumbs {
  margin-bottom: 0;
  justify-content: flex-start;
}

.afel-breadcrumbs__item {
  display: flex;
  align-items: center;
}

.afel-breadcrumbs__item a {
  color: var(--afel-secondary-text-color);
  text-decoration: none;
  transition: color var(--afel-transition-normal) ease;
}

.afel-breadcrumbs__item a:hover {
  color: var(--afel-link-hover-color);
}

.afel-breadcrumbs__separator {
  display: flex;
  align-items: center;
  margin: 0 4px;
  color: var(--afel-border-color);
}

.afel-breadcrumbs__separator svg {
  width: 14px;
  height: 14px;
  stroke-width: 2px;
}

.afel-breadcrumbs__current {
  color: var(--afel-primary-text-color);
  font-weight: 500;
}

/* Responsive styles */
@media (max-width: 576px) {
  .afel-breadcrumbs {
    font-size: 0.75rem;
  }

  .afel-breadcrumbs__separator svg {
    width: 12px;
    height: 12px;
  }
}
