@use '../abstracts' as *;

// Обёртка как в Битрикс: components/bitrix/breadcrumb/.default/template.php → .breadcrumbs-wrapper
.breadcrumbs-wrapper {
  width: 100%;
  box-sizing: border-box;
}

// Общие крошки (листинг врачей, карточка врача и др.)
.breadcrumbs {
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 13px;
  color: $color-text-secondary;
  margin-top: 30px;
  margin-bottom: 12px;

  @include between($bp-md, $until-991) {
    margin-top: 30px;
    margin-bottom: 27px;
  }

  @include between($bp-md2, $until-1439) {
    margin-bottom: 26px;
  }

  @include between($bp-lg, $until-1919) {
    margin-bottom: 28px;
  }

  @include up($bp-xl) {
    margin-bottom: 25px;
  }

  @include sm {
    margin-top: 12px;
    margin-bottom: 23px;
  }

  a {
    color: $color-text-secondary;
    transition: color 0.2s;

    &:hover {
      color: $color-blue;
    }
  }

  span:last-child {
    color: $color-text;
  }
}
