/* ==========================================
   БАЗОВЫЕ СТИЛИ ДЛЯ ПОДСТРАНИЦ (Шапка и Хлебные крошки)
   ========================================== */

/* Аккуратная синяя полоса-хедер */
.site-header-stripe,
header {
    background-color: var(--logo-navy);
    height: 40px;
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    z-index: 100;
}

/* Навигация "хлебные крошки" под шапкой */
.breadcrumbs {
    margin-top: 40px;
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: var(--color-text-muted);
}

.breadcrumbs a {
    color: var(--logo-cyan);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.breadcrumbs a:hover {
    opacity: 0.8;
}