.navbar {
    --nav-primary: #176b5a;
    --nav-primary-dark: #0f473c;
    --nav-primary-bright: #1b826b;
    --nav-accent: #1b826b;
    --nav-text: #17342e;
    --nav-muted: #667a75;
    --nav-border: #e4f0ec;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(228, 240, 236, 0.9);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 26px rgba(28, 70, 61, 0.05);
    backdrop-filter: blur(18px) saturate(150%);
    transition: box-shadow 0.2s ease, background 0.2s ease;
}

.navbar.is-scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 36px rgba(28, 70, 61, 0.1);
}

.nav-container {
    width: min(1500px, calc(100% - 48px));
    min-height: 78px;
    margin: 0 auto;
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-brand {
    min-width: max-content;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--nav-text);
    text-decoration: none;
}

.brand-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(23, 107, 90, 0.24);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.brand-icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.nav-brand:hover .brand-icon {
    transform: translateY(-1px) rotate(-2deg);
    box-shadow: 0 14px 30px rgba(23, 107, 90, 0.3);
}

.brand-text,
.profile-copy,
.dropdown-user-copy,
.dropdown-content a > span {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.brand-text {
    line-height: 1.12;
}

.brand-title {
    color: var(--nav-text);
    font-size: 17px;
    font-weight: 900;
    letter-spacing: -0.025em;
}

.brand-subtitle {
    margin-top: 4px;
    color: var(--nav-muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.015em;
}

.nav-content {
    min-width: 0;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.nav-menu {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.nav-item {
    list-style: none;
}

.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 9px 12px;
    border-radius: 12px;
    color: #526b64;
    font-size: 14px;
    font-weight: 760;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.nav-link:hover {
    color: var(--nav-primary);
    background: #f1f8f6;
    transform: translateY(-1px);
}

.nav-link.active {
    color: var(--nav-primary);
    background: linear-gradient(135deg, #e7f5f0, #eef8f5);
    box-shadow: inset 0 0 0 1px rgba(27, 130, 107, 0.08);
}

.nav-link.active::after {
    content: "";
    position: absolute;
    right: 12px;
    bottom: 4px;
    left: 12px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--nav-primary-bright), var(--nav-accent));
}

.nav-link-icon,
.download-client-btn svg,
.login-btn svg,
.dropdown-content svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nav-auth {
    min-width: max-content;
    display: flex;
    align-items: center;
    gap: 10px;
}

.download-client-btn,
.login-btn {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 850;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.download-client-btn {
    padding: 10px 14px;
    color: #ffffff;
    background: linear-gradient(135deg, #3aae91, var(--nav-accent));
    box-shadow: 0 10px 24px rgba(27, 130, 107, 0.22);
}

.download-client-btn:hover {
    color: #ffffff;
    background: linear-gradient(135deg, #43b79a, #176b5a);
    box-shadow: 0 14px 30px rgba(27, 130, 107, 0.3);
    transform: translateY(-1px);
}

.login-btn {
    padding: 10px 16px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--nav-primary), var(--nav-primary-bright));
    box-shadow: 0 10px 24px rgba(23, 107, 90, 0.22);
}

.login-btn:hover,
.login-btn.active {
    color: #ffffff;
    background: linear-gradient(135deg, var(--nav-primary-bright), var(--nav-primary-dark));
    box-shadow: 0 14px 30px rgba(23, 107, 90, 0.3);
    transform: translateY(-1px);
}

.user-dropdown {
    position: relative;
}

.profile-btn {
    min-height: 46px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 6px 9px 6px 7px;
    border: 1px solid var(--nav-border);
    border-radius: 14px;
    color: var(--nav-text);
    background: rgba(248, 252, 251, 0.92);
    cursor: pointer;
    font: inherit;
    box-shadow: 0 5px 16px rgba(28, 70, 61, 0.04);
    transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.profile-btn:hover,
.user-dropdown.open .profile-btn,
.profile-btn:focus-visible {
    border-color: #b8dccc;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(28, 70, 61, 0.1);
}

.profile-avatar,
.dropdown-avatar {
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    color: #ffffff;
    background: linear-gradient(135deg, var(--nav-primary), var(--nav-primary-bright) 65%, #c18a38);
    font-weight: 900;
    box-shadow: 0 6px 16px rgba(23, 107, 90, 0.2);
}

.profile-avatar {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    font-size: 13px;
}

.profile-copy {
    max-width: 130px;
    text-align: left;
    line-height: 1.15;
}

.profile-name {
    overflow: hidden;
    color: var(--nav-text);
    font-size: 13px;
    font-weight: 850;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.profile-label {
    margin-top: 3px;
    color: var(--nav-muted);
    font-size: 10px;
    font-weight: 700;
}

.dropdown-arrow {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    fill: none;
    stroke: #7c899a;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.2s ease;
}

.user-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

.user-dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    height: 12px;
}

.dropdown-content {
    position: absolute;
    top: calc(100% + 9px);
    right: 0;
    width: 300px;
    overflow: hidden;
    padding: 8px;
    border: 1px solid rgba(228, 240, 236, 0.98);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 60px rgba(22, 69, 54, 0.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px) scale(0.98);
    transform-origin: top right;
    transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}

.user-dropdown.open .dropdown-content {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.dropdown-header {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px;
    border-radius: 13px;
    background: linear-gradient(135deg, #eef8f5, #f3fdfa);
}

.dropdown-avatar {
    width: 39px;
    height: 39px;
    border-radius: 12px;
    font-size: 15px;
}

.dropdown-user-copy {
    flex: 1;
    line-height: 1.25;
}

.dropdown-user-copy strong,
.dropdown-user-copy small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dropdown-user-copy strong {
    color: var(--nav-text);
    font-size: 14px;
}

.dropdown-user-copy small {
    margin-top: 3px;
    color: var(--nav-muted);
    font-size: 11px;
}

.dropdown-menu-group {
    padding: 7px 0;
}

.dropdown-content a {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 10px 11px;
    border-radius: 12px;
    color: #4b5d57;
    text-decoration: none;
    transition: color 0.18s ease, background 0.18s ease;
}

.dropdown-content a:hover,
.dropdown-content a:focus-visible {
    color: var(--nav-primary);
    background: #f1f8f6;
}

.dropdown-content a > span {
    gap: 2px;
}

.dropdown-content a strong {
    color: inherit;
    font-size: 13px;
}

.dropdown-content a small {
    color: var(--nav-muted);
    font-size: 10px;
}

.dropdown-footer {
    padding-top: 7px;
    border-top: 1px solid var(--nav-border);
}

.dropdown-content a.logout-link {
    color: #b42318;
    font-weight: 800;
}

.dropdown-content a.logout-link:hover,
.dropdown-content a.logout-link:focus-visible {
    color: #991b1b;
    background: #fff0ef;
}

.mobile-menu-btn {
    width: 44px;
    height: 44px;
    display: none;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    border: 1px solid var(--nav-border);
    border-radius: 13px;
    color: var(--nav-primary);
    background: #f8fcfb;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease;
}

.mobile-menu-btn:hover,
.mobile-menu-btn:focus-visible {
    border-color: #b8dccc;
    background: #eef8f5;
}

.mobile-menu-line {
    width: 19px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.navbar.mobile-open .mobile-menu-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar.mobile-open .mobile-menu-line:nth-child(2) {
    opacity: 0;
}

.navbar.mobile-open .mobile-menu-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.navbar a:focus-visible,
.navbar button:focus-visible {
    outline: 3px solid rgba(27, 130, 107, 0.25);
    outline-offset: 2px;
}

@media (max-width: 1180px) {
    .nav-container {
        width: min(1500px, calc(100% - 32px));
        gap: 18px;
    }

    .nav-link {
        padding-right: 10px;
        padding-left: 10px;
    }

    .nav-link-icon {
        display: none;
    }

    .download-client-btn span {
        display: none;
    }

    .download-client-btn {
        width: 42px;
        padding: 0;
    }
}

@media (max-width: 1340px) {
    .nav-container {
        min-height: 72px;
        flex-wrap: wrap;
    }

    .mobile-menu-btn {
        display: inline-flex;
        margin-left: auto;
    }

    .nav-content {
        width: 100%;
        flex: 0 0 100%;
        order: 3;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .navbar.mobile-open .nav-content {
        display: flex;
    }

    .nav-menu {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 5px;
        margin: 0;
        padding: 14px 0 8px;
        border-top: 1px solid var(--nav-border);
    }

    .nav-link,
    .download-client-btn,
    .login-btn {
        width: 100%;
        justify-content: flex-start;
    }

    .nav-link {
        padding: 11px 12px;
    }

    .nav-link-icon,
    .download-client-btn span {
        display: block;
    }

    .nav-auth {
        width: 100%;
        min-width: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 0 0 14px;
    }

    .download-client-btn {
        height: auto;
        padding: 11px 13px;
    }

    .user-dropdown,
    .profile-btn {
        width: 100%;
    }

    .profile-copy {
        max-width: none;
        flex: 1;
    }

    .user-dropdown::after {
        display: none;
    }

    .dropdown-content {
        position: static;
        width: 100%;
        max-height: 0;
        margin-top: 0;
        padding: 0 8px;
        border-width: 0;
        box-shadow: none;
        transform: none;
        transition: max-height 0.24s ease, margin-top 0.24s ease, padding 0.24s ease, border-width 0.24s ease;
    }

    .user-dropdown.open .dropdown-content {
        max-height: 480px;
        margin-top: 8px;
        padding: 8px;
        border-width: 1px;
    }
}

@media (max-width: 560px) {
    .nav-container {
        width: min(1500px, calc(100% - 24px));
        padding: 11px 0;
    }

    .brand-icon {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
        border-radius: 13px;
    }

    .brand-title {
        font-size: 15px;
    }

    .brand-subtitle {
        display: none;
    }

    .profile-name {
        max-width: 210px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .navbar *,
    .navbar *::before,
    .navbar *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

/* Public Help & Support link */
.support-nav-link {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 12px;
    border: 1px solid var(--nav-border);
    border-radius: 12px;
    color: var(--nav-primary);
    background: #f9fdfc;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.support-nav-link svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.support-nav-link:hover,
.support-nav-link.active {
    border-color: #b8dccc;
    color: var(--nav-primary);
    background: #eef8f5;
    transform: translateY(-1px);
}

@media (max-width: 1340px) {
    .support-nav-link {
        width: 100%;
        justify-content: flex-start;
        padding: 11px 13px;
    }
}

/* Guest language switcher */
.guest-language-switcher {
    position: relative;
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.guest-language-trigger {
    width: 46px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0 7px;
    border: 1px solid transparent;
    border-radius: 10px;
    color: #67758a;
    background: transparent;
    cursor: pointer;
    font: inherit;
    line-height: 1;
    transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.guest-language-trigger:hover,
.guest-language-trigger:focus-visible,
.guest-language-trigger[aria-expanded="true"] {
    border-color: var(--nav-border);
    color: #3a846d;
    background: #f8fbfa;
}

.guest-language-current-flag,
.guest-language-option-flag {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.guest-language-current-flag svg,
.guest-language-option-flag svg {
    width: 24px;
    height: 16px;
    display: block;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(21, 51, 41, 0.14);
}

.guest-language-chevron {
    width: 12px;
    height: 12px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.18s ease;
}

.guest-language-trigger[aria-expanded="true"] .guest-language-chevron {
    transform: rotate(180deg);
}

.guest-language-menu {
    position: absolute;
    z-index: 1200;
    top: calc(100% + 7px);
    right: 0;
    width: 146px;
    padding: 5px;
    border: 1px solid var(--nav-border);
    border-radius: 11px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(28, 66, 54, 0.14);
}

.guest-language-menu[hidden] {
    display: none;
}

.guest-language-option {
    width: 100%;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 7px 9px;
    border: 0;
    border-radius: 8px;
    color: #4b5d57;
    background: transparent;
    cursor: pointer;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    text-align: left;
    transition: background 0.16s ease, color 0.16s ease;
}

.guest-language-option:hover,
.guest-language-option:focus-visible {
    color: #308268;
    background: #f1f8f6;
}

.guest-language-option.active,
.guest-language-option[aria-checked="true"] {
    color: #2c8468;
    background: #e8f5f1;
}

@media (max-width: 1340px) {
    .guest-language-switcher {
        align-self: flex-start;
    }

    .guest-language-menu {
        right: auto;
        left: 0;
    }
}

.logout-form {
    margin: 0;
}

.dropdown-content button.logout-link {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 0;
    border-radius: 10px;
    color: #b42318;
    background: transparent;
    font: inherit;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
}

.dropdown-content button.logout-link:hover,
.dropdown-content button.logout-link:focus-visible {
    color: #991b1b;
    background: #fff0ef;
}

.dropdown-content button.logout-link svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* Career Bridge top-level navigation */
.nav-container {
    width: min(1760px, calc(100% - 32px));
    gap: 16px;
}

.nav-brand {
    gap: 10px;
}

.brand-icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    border-radius: 13px;
}

.brand-title {
    font-size: 16px;
}

.brand-subtitle {
    font-size: 10px;
    letter-spacing: 0.055em;
}

.nav-content {
    gap: 12px;
}

.nav-menu {
    gap: 1px;
}

.nav-link {
    min-height: 40px;
    gap: 6px;
    padding: 8px 7px;
    font-size: 12px;
    font-weight: 790;
}

.nav-link-icon {
    width: 16px;
    height: 16px;
    flex-basis: 16px;
}

.admin-nav-link {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 8px 10px;
    border: 1px solid #ebe1cf;
    border-radius: 12px;
    color: #b19056;
    background: #fdfaf5;
    font-size: 12px;
    font-weight: 850;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.admin-nav-link svg {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.admin-nav-link:hover,
.admin-nav-link.active {
    border-color: #dfcfb2;
    color: #8e7448;
    background: #fbf5ec;
    transform: translateY(-1px);
}

@media (max-width: 1540px) and (min-width: 1341px) {
    .nav-link-icon {
        display: none;
    }

    .nav-link {
        padding-right: 6px;
        padding-left: 6px;
    }

    .profile-copy,
    .profile-btn > .dropdown-arrow {
        display: none;
    }

    .profile-btn {
        width: 44px;
        justify-content: center;
        padding: 6px;
    }
}

@media (max-width: 1340px) {
    .nav-menu {
        max-height: min(62vh, 560px);
        overflow-y: auto;
    }

    .nav-link {
        min-height: 44px;
        gap: 10px;
        padding: 11px 12px;
        font-size: 14px;
    }

    .nav-link-icon {
        width: 18px;
        height: 18px;
        flex-basis: 18px;
    }

    .admin-nav-link {
        width: 100%;
        min-height: 44px;
        justify-content: flex-start;
        padding: 11px 13px;
        font-size: 14px;
    }
}

/* Grouped Career Bridge navigation */
.nav-group {
    position: relative;
}

.nav-group-trigger {
    position: relative;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 10px;
    border: 0;
    border-radius: 12px;
    color: #526b64;
    background: transparent;
    cursor: pointer;
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
    transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.nav-group-trigger:hover,
.nav-group-trigger:focus-visible,
.nav-group.open .nav-group-trigger {
    color: var(--nav-primary);
    background: #f1f8f6;
    transform: translateY(-1px);
}

.nav-group-trigger.active {
    color: var(--nav-primary);
    background: linear-gradient(135deg, #e7f5f0, #eef8f5);
    box-shadow: inset 0 0 0 1px rgba(27, 130, 107, 0.08);
}

.nav-group-trigger.active::after {
    content: "";
    position: absolute;
    right: 12px;
    bottom: 4px;
    left: 12px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--nav-primary-bright), var(--nav-accent));
}

.nav-group-chevron {
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.18s ease;
}

.nav-group.open .nav-group-chevron {
    transform: rotate(180deg);
}

.nav-group::after {
    content: "";
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    height: 10px;
}

.nav-group-menu {
    position: absolute;
    z-index: 1100;
    top: calc(100% + 8px);
    left: 0;
    width: 310px;
    padding: 9px;
    border: 1px solid rgba(228, 240, 236, 0.98);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 24px 60px rgba(22, 69, 54, 0.18);
}

.nav-group-menu-wide {
    width: 350px;
}

.nav-group-menu-right {
    right: 0;
    left: auto;
}

.nav-group-heading {
    padding: 7px 10px 8px;
    color: #7a8a86;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.nav-group-link {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 10px 11px;
    border-radius: 12px;
    color: #4b5d57;
    text-decoration: none;
    transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.nav-group-link:hover,
.nav-group-link:focus-visible,
.nav-group-link.active {
    color: var(--nav-primary);
    background: #f1f8f6;
    transform: translateX(1px);
}

.nav-group-link.active {
    box-shadow: inset 3px 0 0 var(--nav-accent);
}

.nav-group-link > svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    margin-top: 2px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nav-group-link > span {
    min-width: 0;
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 2px;
}

.nav-group-link strong {
    color: inherit;
    font-size: 13px;
    line-height: 1.25;
}

.nav-group-link small {
    color: var(--nav-muted);
    font-size: 10px;
    line-height: 1.35;
}

.nav-new-badge {
    display: inline-flex;
    margin-left: 5px;
    padding: 1px 5px;
    border-radius: 999px;
    color: #067647;
    background: #dcfae6;
    font-size: 9px;
    font-style: normal;
    font-weight: 900;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    vertical-align: middle;
}

@media (max-width: 1540px) and (min-width: 1341px) {
    .nav-group-trigger .nav-link-icon {
        display: none;
    }

    .nav-group-trigger {
        padding-right: 8px;
        padding-left: 8px;
    }
}

@media (max-width: 1340px) {
    .nav-group,
    .nav-group-trigger {
        width: 100%;
    }

    .nav-group::after {
        display: none;
    }

    .nav-group-trigger {
        min-height: 46px;
        justify-content: flex-start;
        gap: 10px;
        padding: 11px 12px;
        font-size: 14px;
    }

    .nav-group-trigger .nav-group-chevron {
        margin-left: auto;
    }

    .nav-group-menu,
    .nav-group-menu-wide,
    .nav-group-menu-right {
        position: static;
        width: calc(100% - 12px);
        margin: 4px 0 5px 12px;
        padding: 6px;
        border-radius: 14px;
        box-shadow: inset 0 0 0 1px rgba(228, 240, 236, 0.95);
    }

    .nav-group-heading {
        padding: 7px 9px;
    }

    .nav-group-link {
        padding: 10px;
    }

    .nav-group-link strong {
        font-size: 13px;
    }

    .nav-group-link small {
        font-size: 11px;
    }
}

.nav-group-heading-secondary {
    margin-top: 8px;
    padding-top: 10px;
    border-top: 1px solid rgba(23, 107, 90, .10);
    color: #80918c;
}
