/* Хлебные крошки под заголовком, со смещением вправо под "ЗОВ" */
.breadcrumbs {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  color: #9A928C;

  max-width: 1240px;          /* как у карточек */
  margin: 20px auto 32px auto;

  text-align: left;
  padding-left: 110px;        /* ← ТОЧНОЕ СМЕЩЕНИЕ, как на красной линии */
}

.breadcrumbs a {
  color: #d57c51;             /* активная ссылка */
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs__sep {
  margin: 0 6px;
  color: #9A928C;
}

/* Мобильная версия */
@media screen and (max-width: 640px) {
  .breadcrumbs {
    padding-left: 10px;       /* смещение поменьше на мобилке */
    font-size: 13px;
  }
}
