/* ==========================================================
   Хлебные крошки

   Показывают текущее положение пользователя
   внутри структуры приложения.
   ========================================================== */

.breadcrumbs {
    position: relative;
    z-index: 1;

    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 7px;

    margin-top: 26px;

    font-size: 14px;
    line-height: 1.4;
}

.breadcrumb-link {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
}

.breadcrumb-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

.breadcrumb-current {
    color: #ffffff;
    font-weight: 650;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.42);
}


/* ==========================================================
   Название текущего раздела

   Этот блок меняется на каждой странице,
   но всегда остаётся внутри общей шапки.
   ========================================================== */

.page-heading {
    position: relative;
    z-index: 1;

    margin-top: 16px;
}

.page-title {
    margin: 0;

    color: #ffffff;

    font-size: 25px;
    line-height: 1.2;
    font-weight: 750;
}

.page-description {
    margin: 7px 0 0;

    color: rgba(255, 255, 255, 0.72);

    font-size: 14px;
    line-height: 1.45;
}