/**
 * Header Styles - Blueprint
 * Minimalistyczny design w stylu Medium
 */

:root {
    --header-height: 70px;
    --mobile-menu-height: 60px;
    --header-padding: 1rem 1.5rem;
}

/* ======================
   DESKTOP HEADER
   ====================== */

.blueprint-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--bs-body-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.25s ease, backdrop-filter 0.25s ease;
    transform: translateY(0);
}

.blueprint-header.header-hidden {
    transform: translateY(-100%);
}

/* ======================
   FRONT PAGE — header transparent overlapping hero

   Pages mogą OPT-OUT explicit dodając body class `bp-no-header-overhero`
   (np. /aktualnosci/ który ma własny cream-paper header design).
   To ważne dla setupów gdzie front-page = blog index (body.home + body.blog
   na "/"), wtedy /aktualnosci/ jako posts-page też dostaje body.home →
   bez opt-out skin musi sam ten case rozwiązać.
   ====================== */
body.home:not(.bp-no-header-overhero) .blueprint-header,
body.page-template-front-page:not(.bp-no-header-overhero) .blueprint-header,
body.bp-header-over-hero:not(.bp-no-header-overhero) .blueprint-header {
    position: fixed;  /* fixed żeby nachodził na hero (sticky tworzy spacer) */
    left: 0;
    right: 0;
    top: 0;
    background-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    color: #fff;
}

/* Linki/logo/lang switch na przezroczystym headerze — wymuszamy biały dla czytelności na hero.
   KRYTYCZNE: tylko TOP-LEVEL menu links (`> li > a`), nie nested dropdown items, bo dropdown
   menu ma biały bg w light mode → biały tekst na białym tle. */
body.home:not(.bp-no-header-overhero) .blueprint-header:not(.scrolled) .blueprint-logo,
body.home:not(.bp-no-header-overhero) .blueprint-header:not(.scrolled) .blueprint-menu-list > li > a,
body.home:not(.bp-no-header-overhero) .blueprint-header:not(.scrolled) .blueprint-theme-btn,
body.home:not(.bp-no-header-overhero) .blueprint-header:not(.scrolled) .blueprint-lang-btn,
body.home:not(.bp-no-header-overhero) .blueprint-header:not(.scrolled) .blueprint-lang-code,
body.home:not(.bp-no-header-overhero) .blueprint-header:not(.scrolled) .blueprint-lang-arrow,
body.page-template-front-page:not(.bp-no-header-overhero) .blueprint-header:not(.scrolled) .blueprint-logo,
body.page-template-front-page:not(.bp-no-header-overhero) .blueprint-header:not(.scrolled) .blueprint-menu-list > li > a,
body.page-template-front-page:not(.bp-no-header-overhero) .blueprint-header:not(.scrolled) .blueprint-theme-btn,
body.page-template-front-page:not(.bp-no-header-overhero) .blueprint-header:not(.scrolled) .blueprint-lang-btn,
body.page-template-front-page:not(.bp-no-header-overhero) .blueprint-header:not(.scrolled) .blueprint-lang-code,
body.page-template-front-page:not(.bp-no-header-overhero) .blueprint-header:not(.scrolled) .blueprint-lang-arrow,
body.bp-header-over-hero:not(.bp-no-header-overhero) .blueprint-header:not(.scrolled) .blueprint-logo,
body.bp-header-over-hero:not(.bp-no-header-overhero) .blueprint-header:not(.scrolled) .blueprint-menu-list > li > a,
body.bp-header-over-hero:not(.bp-no-header-overhero) .blueprint-header:not(.scrolled) .blueprint-theme-btn,
body.bp-header-over-hero:not(.bp-no-header-overhero) .blueprint-header:not(.scrolled) .blueprint-lang-btn,
body.bp-header-over-hero:not(.bp-no-header-overhero) .blueprint-header:not(.scrolled) .blueprint-lang-code,
body.bp-header-over-hero:not(.bp-no-header-overhero) .blueprint-header:not(.scrolled) .blueprint-lang-arrow {
    color: #fff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

/* Po przescrollowaniu (existing .scrolled class) — powrót do solid bg */
body.home:not(.bp-no-header-overhero) .blueprint-header.scrolled,
body.page-template-front-page:not(.bp-no-header-overhero) .blueprint-header.scrolled,
body.bp-header-over-hero:not(.bp-no-header-overhero) .blueprint-header.scrolled {
    background-color: var(--bs-body-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    color: var(--bs-body-color);
}

.blueprint-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    padding: var(--header-padding);
}

/* Logo */
.blueprint-logo {
    text-decoration: none;
    color: var(--bs-body-color);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    transition: opacity 0.2s ease;
    display: flex;
    align-items: center;
}

.blueprint-logo:hover {
    opacity: 0.7;
    color: var(--bs-body-color);
}

.blueprint-logo svg {
    height: 40px;
    width: auto;
    display: block;
}

/* Logo wrapper — flex żeby logo + nazwa były obok siebie */
.blueprint-logo {
    gap: 0.65rem;
}

/* IMG logo (z blueprint_brand_logo_id) */
.blueprint-logo__img {
    height: 40px;
    width: auto;
    max-width: 180px;
    display: block;
    object-fit: contain;
    transition: opacity 0.2s ease;
    flex-shrink: 0;
}

/* Nazwa firmy — gdy razem z logo, na desktop tylko gdy jest miejsce */
.blueprint-logo__text {
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: inherit;
    line-height: 1.2;
}

/* Wariant "obok loga" — domyślnie ukrywamy na mniejszych ekranach żeby nie pchać menu */
.blueprint-logo__text--beside {
    display: none;
}
@media (min-width: 1280px) {
    .blueprint-logo__text--beside {
        display: inline-block;
        font-size: 1rem;
        font-weight: 700;
        letter-spacing: -0.01em;
    }
}

/* Logo color - dark text in light mode, white text in dark mode */
[data-bs-theme="light"] .blueprint-logo svg .cls-2 {
    fill: #000 !important;
}

[data-bs-theme="dark"] .blueprint-logo svg .cls-2 {
    fill: #fff !important;
}

.blueprint-logo-text {
    display: inline-block;
}

/* Desktop Menu */
.blueprint-menu-desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.blueprint-menu-list {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.blueprint-menu-list li {
    margin: 0;
}

.blueprint-menu-list a {
    color: var(--bs-body-color);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 400;
    transition: color 0.2s ease;
    position: relative;
}

.blueprint-menu-list a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--bs-body-color);
    transition: width 0.3s ease;
}

.blueprint-menu-list a:hover {
    color: var(--bs-body-color);
}

.blueprint-menu-list a:hover::after {
    width: 100%;
}

.blueprint-menu-list .current-menu-item a,
.blueprint-menu-list .current_page_item a {
    color: var(--bs-body-color);
    font-weight: 500;
}

/* Container item (bp_container) — etykieta z dropdown bez href.
   Bez href cursor jest „text" by default — wymuszamy pointer. */
.blueprint-menu-list a[role="button"],
.blueprint-menu-container-link {
    cursor: pointer;
    user-select: none;
}

/* Desktop Dropdown Menu */
.blueprint-has-dropdown {
    position: relative;
}

.blueprint-has-dropdown > a {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.blueprint-has-dropdown > a i {
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

.blueprint-has-dropdown:hover > a i {
    transform: rotate(180deg);
}

.blueprint-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(14px);
    min-width: 240px;
    background: var(--bs-body-bg);
    border: 1px solid rgba(var(--bs-body-color-rgb, 33, 37, 41), 0.08);
    border-radius: var(--bp-radius-input);
    box-shadow:
        0 18px 42px -14px rgba(0, 0, 0, 0.22),
        0 8px 18px -6px rgba(0, 0, 0, 0.08);
    -webkit-backdrop-filter: blur(10px) saturate(140%);
    backdrop-filter: blur(10px) saturate(140%);
    list-style: none;
    padding: 0.4rem;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.18s ease, transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.18s;
    z-index: 1001;
}

[data-bs-theme="dark"] .blueprint-dropdown-menu {
    background: rgba(20, 20, 30, 0.96);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow:
        0 18px 42px -14px rgba(0, 0, 0, 0.6),
        0 8px 18px -6px rgba(0, 0, 0, 0.35);
}

.blueprint-has-dropdown:hover .blueprint-dropdown-menu,
.blueprint-has-dropdown:focus-within .blueprint-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(6px);
}

/* Stary arrow ::before/::after — usunięty, dropdown bez tooltip-style notch */
.blueprint-dropdown-menu::before,
.blueprint-dropdown-menu::after {
    display: none !important;
}

.blueprint-dropdown-menu li {
    margin: 0;
}

.blueprint-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 0.75rem;
    color: var(--bs-body-color);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.35;
    border-radius: var(--bp-radius-badge);
    transition: background-color 0.15s ease, color 0.15s ease;
}

.blueprint-dropdown-menu a::after {
    display: none;
}

.blueprint-dropdown-menu a:hover,
.blueprint-dropdown-menu a:focus-visible {
    background: rgba(var(--bs-primary-rgb), 0.1);
    color: var(--bs-primary);
}

.blueprint-dropdown-menu a i {
    font-size: 1rem;
    opacity: 0.7;
    width: 1.1rem;
    text-align: center;
    flex-shrink: 0;
}

.blueprint-dropdown-menu a:hover i,
.blueprint-dropdown-menu a:focus-visible i {
    opacity: 1;
}

/* Mini herb / logo (pętla lokalizacji w menu) — rounded rect, BEZ circular crop.
   Herby kominiarskie/branżowe są niesquare (np. tarcza z koroną) — okrągły clip
   ucinał rogi/szczyt herbu. Rounded rect 4px + object-fit:contain pokazuje cały. */
.blueprint-menu-image {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    object-fit: contain;
    background: transparent;
    padding: 0;
    border: none;
    flex-shrink: 0;
    display: inline-block;
}

[data-bs-theme="dark"] .blueprint-menu-image {
    background: transparent;
    border: none;
}

/* Theme Dropdown */
.blueprint-theme-dropdown {
    padding-left: 1rem;
    border-left: 1px solid var(--bs-border-color);
}

.blueprint-theme-dropdown .dropdown-menu {
    min-width: 150px;
    border: 1px solid var(--bs-border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

[data-bs-theme="dark"] .blueprint-theme-dropdown .dropdown-menu {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.blueprint-theme-dropdown .dropdown-item {
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    color: var(--bs-body-color);
}

.blueprint-theme-dropdown .dropdown-item:hover {
    background-color: var(--bs-body-color);
    color: var(--bs-body-bg);
}

.blueprint-theme-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--bs-border-color);
    border-radius: var(--bp-radius-circle);
    background-color: transparent;
    color: var(--bs-body-color);
    cursor: pointer;
    transition: all 0.2s ease;
}

.blueprint-theme-btn:hover {
    background-color: var(--bs-body-color);
    border-color: var(--bs-body-color);
    color: var(--bs-body-bg);
    transform: scale(1.05);
}

.blueprint-theme-btn i {
    font-size: 1rem;
}

/* Mobile Theme Toggle */
.blueprint-theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--bs-border-color);
    border-radius: var(--bp-radius-circle);
    background-color: transparent;
    color: var(--bs-body-color);
    cursor: pointer;
    transition: all 0.2s ease;
}

.blueprint-theme-toggle:hover {
    background-color: var(--bs-body-color);
    border-color: var(--bs-body-color);
    color: var(--bs-body-bg);
}

.blueprint-theme-toggle i {
    font-size: 1.125rem;
}

/* ======================
   MOBILE BOTTOM MENU
   ====================== */

.blueprint-mobile-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--bs-body-bg);
    border-top: 1px solid var(--bs-border-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.5rem 0;
    transition: transform 0.3s ease;
    transform: translateY(0);
}

.blueprint-mobile-menu.menu-hidden {
    transform: translateY(100%);
}

.blueprint-mobile-menu-list {
    display: flex;
    justify-content: space-around;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.blueprint-mobile-menu-list li {
    flex: 1;
    margin: 0;
}

.blueprint-mobile-menu-list a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.5rem;
    color: var(--bs-body-color);
    text-decoration: none;
    font-size: 0.75rem;
    transition: all 0.2s ease;
    text-align: center;
}

.blueprint-mobile-menu-list a i {
    font-size: 1.25rem;
}

.blueprint-mobile-menu-list a:hover,
.blueprint-mobile-menu-list .current-menu-item a,
.blueprint-mobile-menu-list .current_page_item a {
    color: var(--bs-body-color);
    opacity: 1;
}

/* Mobile More Button */
.blueprint-mobile-more button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.5rem;
    background: none;
    border: none;
    color: var(--bs-body-color);
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.blueprint-mobile-more button i {
    font-size: 1.25rem;
}

.blueprint-mobile-more button:hover {
    opacity: 0.7;
}

/* ======================
   MOBILE OFFCANVAS
   ====================== */

.blueprint-mobile-offcanvas {
    width: 85vw !important;
    max-width: 320px;
    height: 100% !important;
    top: 0 !important;
    bottom: 0 !important;
    z-index: 1055 !important; /* Powyżej header (1000) i mobile menu (1040) */
}

.blueprint-mobile-offcanvas .offcanvas-header {
    border-bottom: 1px solid var(--bs-border-color);
    padding: 1rem 1.25rem;
}

.blueprint-mobile-offcanvas .offcanvas-title {
    font-weight: 700;
    font-size: 1.125rem;
}

.blueprint-mobile-offcanvas .offcanvas-body {
    padding: 1.25rem 1.25rem 2rem;
}

.blueprint-offcanvas-section {
    margin-bottom: 1.5rem;
}

.blueprint-offcanvas-section:last-child {
    margin-bottom: 0;
}

.blueprint-offcanvas-heading {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--bs-secondary-color);
    margin-bottom: 0.75rem;
}

.blueprint-offcanvas-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blueprint-offcanvas-list li {
    margin: 0;
}

.blueprint-offcanvas-list a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--bs-body-color);
    text-decoration: none;
    font-size: 1rem;
    border-bottom: 1px solid var(--bs-border-color-translucent);
    transition: opacity 0.15s ease;
}

.blueprint-offcanvas-list li:last-child a {
    border-bottom: none;
}

.blueprint-offcanvas-list a:hover {
    opacity: 0.7;
}

.blueprint-offcanvas-list a i {
    font-size: 1.25rem;
    width: 1.5rem;
    text-align: center;
    opacity: 0.7;
}

.blueprint-offcanvas-lang {
    justify-content: flex-start;
    gap: 1rem;
}

.blueprint-offcanvas-lang .blueprint-lang-link {
    padding: 0.5rem 1rem;
    background: var(--bs-tertiary-bg);
    border-radius: var(--bp-radius-badge);
}

.blueprint-offcanvas-lang .blueprint-lang-link.active {
    background: var(--bs-primary);
    color: #fff;
}

/* Theme Options in Offcanvas */
.blueprint-offcanvas-theme {
    display: flex;
    gap: 0.5rem;
}

.blueprint-theme-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    padding: 0.75rem 1rem;
    background: var(--bs-tertiary-bg);
    border: 2px solid transparent;
    border-radius: var(--bp-radius-badge);
    color: var(--bs-body-color);
    font-size: 0.8125rem;
    cursor: pointer;
    transition: all 0.2s ease;
    flex: 1;
}

.blueprint-theme-option i {
    font-size: 1.25rem;
}

.blueprint-theme-option:hover {
    background: var(--bs-secondary-bg);
}

.blueprint-theme-option.active {
    border-color: var(--bs-primary);
    background: var(--bs-primary);
    color: #fff;
}

/* Dodaj padding na dole body gdy jest mobile menu */
@media (max-width: 991.98px) {
    body {
        padding-bottom: calc(var(--mobile-menu-height) + 1rem);
    }
}

/* ======================
   SCROLL BEHAVIOR
   ====================== */

.blueprint-header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

[data-bs-theme="dark"] .blueprint-header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* ======================
   RESPONSIVE
   ====================== */

@media (max-width: 991.98px) {
    .blueprint-logo-text {
        font-size: 1.125rem;
    }
    
    :root {
        --header-height: 60px;
        --header-padding: 0.75rem 1rem;
    }
    
    /* Ukryj nav menu na mobile, zostaw tylko logo i theme toggle */
    .blueprint-nav {
        justify-content: space-between;
    }
    
    .blueprint-theme-dropdown {
        padding-left: 0;
        border-left: none;
    }
}

@media (max-width: 575.98px) {
    .blueprint-logo-text {
        font-size: 1rem;
    }
    
    .blueprint-mobile-menu-list a {
        font-size: 0.6875rem;
    }
    
    .blueprint-mobile-menu-list a i {
        font-size: 1.125rem;
    }
}

/* ==========================================================================
   Menu icons + badges (BP_Menu_Walker)
   Inline elementy w środku <a> — nie psują istniejących reguł .blueprint-menu-list a
   ========================================================================== */

.blueprint-menu-icon {
    font-size: 1em;
    opacity: 0.85;
    margin-right: 0.4rem;
    vertical-align: -0.05em;
}
.blueprint-menu-badge {
    display: inline-block;
    padding: 0.1rem 0.45rem;
    border-radius: var(--bp-radius-pill);
    font-size: 0.65rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.35;
    vertical-align: 1px;
}
.blueprint-menu-chevron {
    font-size: 0.7em;
    opacity: 0.7;
    transition: transform 0.2s;
    margin-left: 0.15rem;
}
.blueprint-has-dropdown:hover .blueprint-menu-chevron { transform: rotate(180deg); }

/* Orphan items (encja usunięta) — pokaż na froncie tylko w admin preview */
.blueprint-menu-list .is-orphan { display: none; }
.blueprint-mobile-menu-list .is-orphan { display: none; }
.blueprint-offcanvas-list .is-orphan { display: none; }

/* Mobile bottom bar — icon-only items */
.blueprint-mobile-menu-list .blueprint-menu-icon {
    margin: 0;
    font-size: 1.3em;
}
.blueprint-mobile-menu-list .blueprint-menu-badge {
    position: absolute;
    top: 4px;
    right: 6px;
    font-size: 0.55rem;
    padding: 0.05rem 0.3rem;
}

/* ==========================================================================
   Footer — z menu modules/menu (footer_main + footer_legal)
   ========================================================================== */
.blueprint-footer {
    background: var(--bs-tertiary-bg);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
    color: var(--bs-body-color);
}
.blueprint-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
}
@media (max-width: 768px) {
    .blueprint-footer__grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .blueprint-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
    .blueprint-footer__grid { grid-template-columns: 1fr; }
}

.blueprint-footer__logo {
    font-size: 1.25rem;
    text-decoration: none;
    color: var(--bs-body-color);
}
.blueprint-footer__tagline {
    color: var(--bs-secondary-color);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    max-width: 320px;
}
.blueprint-footer__heading {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--bs-secondary-color);
    margin-bottom: 0.75rem;
}
.blueprint-footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.blueprint-footer__list li { margin: 0.25rem 0; }
.blueprint-footer__list a {
    color: var(--bs-body-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.15s;
}
.blueprint-footer__list a:hover { color: var(--bs-primary); }

/* Zagnieżdżenia (depth 2) — walker generuje <ul class="blueprint-dropdown-menu sub-menu">.
   W headerze są to dropdowny (hidden by default). W footerze chcemy je rozwinięte inline. */
.blueprint-footer__list .blueprint-dropdown-menu,
.blueprint-footer__list .sub-menu {
    list-style: none;
    padding: 0.25rem 0 0.25rem 1rem;
    margin: 0.25rem 0 0.5rem;
    display: block !important;
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none;
    background: transparent;
    border-left: 2px solid var(--bs-border-color);
}
.blueprint-footer__list .sub-menu a,
.blueprint-footer__list .blueprint-dropdown-menu a {
    font-size: 0.85rem;
    color: var(--bs-secondary-color);
}
.blueprint-footer__list .sub-menu a:hover,
.blueprint-footer__list .blueprint-dropdown-menu a:hover {
    color: var(--bs-primary);
}
/* Chevron przy dropdown items w footerze nie jest potrzebny */
.blueprint-footer__list .blueprint-menu-chevron {
    display: none;
}
.blueprint-footer__divider {
    border-color: var(--bs-border-color);
    margin: 0 0 1rem;
}
.blueprint-footer__bottom {
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
    font-size: 0.85rem;
    color: var(--bs-secondary-color);
}

/* Skip-to-content link — WCAG accessibility, visible on keyboard focus only */
.bp-skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 100000;
    padding: 0.75rem 1.25rem;
    background: var(--bs-primary, #6366f1);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0 0 0.5rem 0;
}
.bp-skip-link:focus {
    left: 0;
    outline: 3px solid var(--bs-warning, #f59e0b);
    outline-offset: 2px;
}
