.header-quick-menu {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-inline-start: auto;
}

.navbar-brand .brand-logo img {
    width: 36%;
    height: auto;
    max-width: none;
}

.header-menu-panel {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.header-menu-toggle {
    display: none;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(0, 27, 76, 0.18);
    border-radius: 999px;
    background: #ffffff;
    color: #001b4c;
    font-weight: 700;
    line-height: 1;
}

.header-menu-toggle__icon,
.header-menu-toggle__icon::before,
.header-menu-toggle__icon::after {
    display: block;
    width: 1.2rem;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
    content: "";
}

.header-menu-toggle__icon {
    position: relative;
}

.header-menu-toggle__icon::before {
    position: absolute;
    top: -0.35rem;
    left: 0;
}

.header-menu-toggle__icon::after {
    position: absolute;
    top: 0.35rem;
    left: 0;
}

.header-menu-toggle[aria-expanded="true"] .header-menu-toggle__icon {
    background: transparent;
}

.header-menu-toggle[aria-expanded="true"] .header-menu-toggle__icon::before {
    transform: translateY(0.35rem) rotate(45deg);
}

.header-menu-toggle[aria-expanded="true"] .header-menu-toggle__icon::after {
    transform: translateY(-0.35rem) rotate(-45deg);
}

.breadcrumbs__wrapper,
.mod-breadcrumbs__wrapper,
.mod-breadcrumbs,
.mod-breadcrumbs__here,
.container-breadcrumbs,
.breadcrumb {
    display: none;
}

.header-quick-menu__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 6.5rem;
    padding: 0.7rem 1.1rem;
    border: 1px solid rgba(0, 27, 76, 0.18);
    border-radius: 999px;
    background: #ffffff;
    color: #001b4c;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.header-quick-menu__link:hover,
.header-quick-menu__link:focus {
    background: #edf3ff;
    color: #001b4c;
    border-color: rgba(0, 27, 76, 0.35);
    text-decoration: none;
}

.header-quick-menu__link--primary {
    background: #001b4c;
    border-color: #001b4c;
    color: #ffffff;
}

.header-quick-menu__link--primary:hover,
.header-quick-menu__link--primary:focus {
    background: #0d327a;
    border-color: #0d327a;
    color: #ffffff;
}

@media (min-width: 1400px) {
    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl,
    .container-xxl {
        max-width: 1600px;
    }

    body.wrapper-static .site-grid {
        grid-template-columns:
            [full-start] minmax(0, 1fr)
            [main-start] repeat(4, minmax(0, 24.25rem))
            [main-end] minmax(0, 1fr)
            [full-end];
    }
}

@media (max-width: 767px) {
    .header-menu-toggle {
        display: inline-flex;
        margin-inline-start: auto;
    }

    .header-menu-panel {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        margin-top: 1rem;
    }

    .header-menu-panel:not(.show) {
        display: none;
    }

    .header-quick-menu {
        width: 100%;
        margin-inline-start: 0;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .header-quick-menu__link {
        width: 100%;
    }

    .container-nav .mod-menu {
        width: 100%;
    }

    .container-nav .mod-menu > ul {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        padding-left: 0;
        margin: 0;
        list-style: none;
    }

    .container-nav .container-search {
        width: 100%;
    }
}

@media (min-width: 768px) {
    .header-menu-panel {
        display: flex !important;
    }
}
