:root {
    --nexus-header-height-top: 104px;
    --nexus-header-height-scrolled: 84px;
    --nexus-header-max-width: 1320px;
    --nexus-header-gutter: clamp(20px, 2.6vw, 36px);
    --nexus-header-text-on-top: #ffffff;
    --nexus-header-text-scrolled: #0f172a;
    --nexus-header-surface: rgba(255,255,255,0.94);
    --nexus-header-surface-border: rgba(15,23,42,0.08);
    --nexus-header-shadow: 0 16px 40px rgba(15,23,42,0.08);
    --nexus-header-radius: 28px;
}

body.has-nexus-mobile-menu {
    overflow: hidden;
}

.nexus-header-shell {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1200;
    pointer-events: none;
}

.nexus-header-shell * {
    box-sizing: border-box;
}

.nexus-header-shell a,
.nexus-header-shell button {
    pointer-events: auto;
}

.nexus-header-inner {
    max-width: var(--nexus-header-max-width);
    margin: 0 auto;
    padding: 18px var(--nexus-header-gutter) 0;
}

.nexus-header-shell.is-minimal .nexus-header-inner--minimal {
    display: flex;
    justify-content: center;
    padding-top: 18px;
}

.nexus-header-bar {
    min-height: var(--nexus-header-height-top);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 18px 26px;
    border-radius: var(--nexus-header-radius);
    color: var(--nexus-header-text-on-top);
    background: transparent;
    border: 1px solid transparent;
    transition: background-color .35s ease, border-color .35s ease, box-shadow .35s ease, min-height .35s ease, padding .35s ease, transform .35s ease, color .25s ease;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
}

.nexus-header-shell.is-scrolled .nexus-header-bar,
.nexus-header-shell.is-menu-open .nexus-header-bar,
.nexus-header-shell[data-transparent="0"] .nexus-header-bar {
    min-height: var(--nexus-header-height-scrolled);
    padding-top: 14px;
    padding-bottom: 14px;
    color: var(--nexus-header-text-scrolled);
    background: var(--nexus-header-surface);
    border-color: var(--nexus-header-surface-border);
    box-shadow: var(--nexus-header-shadow);
    backdrop-filter: saturate(160%) blur(18px);
    -webkit-backdrop-filter: saturate(160%) blur(18px);
}

.nexus-header-shell[data-sticky-enabled="0"] {
    position: sticky;
}

.nexus-header-left,
.nexus-header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nexus-header-center {
    display: flex;
    justify-content: center;
    min-width: 0;
}

.nexus-header-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: inherit !important;
    text-decoration: none;
}

.nexus-header-logo-stack {
    position: relative;
    display: block;
    width: auto;
    min-width: 126px;
    height: 50px;
}

.nexus-header-logo-stack.is-single .nexus-header-logo-sticky {
    opacity: 1;
}

.nexus-header-logo {
    position: absolute;
    inset: 0 auto 0 0;
    height: 100%;
    width: auto;
    max-width: min(220px, 42vw);
    object-fit: contain;
    transition: opacity .28s ease, transform .32s ease, filter .32s ease;
}

.nexus-header-logo-main {
    opacity: 1;
    transform: translateY(0);
}

.nexus-header-logo-sticky {
    opacity: 0;
    transform: translateY(6px);
}

.nexus-header-shell.is-scrolled .nexus-header-logo-main,
.nexus-header-shell.is-menu-open .nexus-header-logo-main,
.nexus-header-shell[data-transparent="0"] .nexus-header-logo-main {
    opacity: 0;
    transform: translateY(-6px);
}

.nexus-header-shell.is-scrolled .nexus-header-logo-sticky,
.nexus-header-shell.is-menu-open .nexus-header-logo-sticky,
.nexus-header-shell[data-transparent="0"] .nexus-header-logo-sticky,
.nexus-header-shell.is-minimal .nexus-header-logo-sticky {
    opacity: 1;
    transform: translateY(0);
}

.nexus-header-brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--primary-color);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 800;
    box-shadow: 0 14px 30px rgba(37,99,235,0.24);
}

.nexus-header-brand-text {
    font-size: 1.18rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: inherit;
}

.nexus-header-menu-list,
.nexus-header-mobile-links {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2vw, 34px);
}

.nexus-header-menu-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    color: inherit !important;
    opacity: .94;
    transition: color .25s ease, opacity .25s ease, transform .25s ease;
}

.nexus-header-menu-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .25s ease;
}

.nexus-header-menu-link:hover,
.nexus-header-menu-link.is-current {
    color: var(--primary-color) !important;
    opacity: 1;
}

.nexus-header-menu-link:hover::after,
.nexus-header-menu-link.is-current::after {
    transform: scaleX(1);
}

.nexus-header-hotline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--primary-color) 55%, transparent);
    background: color-mix(in srgb, var(--primary-color) 14%, transparent);
    color: #fff !important;
    text-decoration: none;
    transition: transform .25s ease, background-color .25s ease, border-color .25s ease, color .25s ease, box-shadow .25s ease;
    box-shadow: 0 12px 28px rgba(37,99,235,0.18);
}

.nexus-header-hotline-label {
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 800;
    opacity: .78;
}

.nexus-header-hotline-value {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
}

.nexus-header-shell.is-scrolled .nexus-header-hotline,
.nexus-header-shell.is-menu-open .nexus-header-hotline,
.nexus-header-shell[data-transparent="0"] .nexus-header-hotline {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff !important;
}

.nexus-header-hotline:hover {
    transform: translateY(-2px);
    background: var(--primary-hover) !important;
    border-color: var(--primary-hover) !important;
    color: #fff !important;
}

.nexus-header-toggle,
.nexus-header-mobile-close {
    display: none;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 16px;
    background: transparent;
    color: inherit;
    cursor: pointer;
    transition: border-color .25s ease, background-color .25s ease, color .25s ease, transform .25s ease;
}

.nexus-header-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform .22s ease, opacity .22s ease;
}

.nexus-header-toggle {
    flex-direction: column;
    gap: 4px;
}

.nexus-header-toggle:hover,
.nexus-header-mobile-close:hover {
    transform: translateY(-1px);
    color: var(--primary-color);
}

.nexus-header-shell.is-scrolled .nexus-header-toggle,
.nexus-header-shell.is-menu-open .nexus-header-toggle,
.nexus-header-shell[data-transparent="0"] .nexus-header-toggle {
    border-color: rgba(15,23,42,0.12);
    background: rgba(15,23,42,0.04);
}

.nexus-header-mobile-panel {
    position: fixed;
    inset: 0;
    z-index: 1210;
    background: rgba(2,6,23,0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .28s ease, visibility .28s ease;
}

.nexus-header-mobile-panel.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.nexus-header-mobile-panel__inner {
    position: absolute;
    inset: 0 0 0 auto;
    width: min(92vw, 420px);
    padding: 24px;
    background: linear-gradient(180deg, rgba(15,23,42,0.98), rgba(2,6,23,0.96));
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transform: translateX(100%);
    transition: transform .32s ease;
}

.nexus-header-mobile-panel.is-open .nexus-header-mobile-panel__inner {
    transform: translateX(0);
}

.nexus-header-mobile-close {
    display: inline-flex;
    align-self: flex-end;
    border-color: rgba(255,255,255,0.12);
}

.nexus-header-mobile-brand {
    padding-top: 12px;
}

.nexus-header-mobile-links {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
}

.nexus-header-menu-link.is-mobile {
    justify-content: flex-start;
    padding: 14px 0;
    font-size: 15px;
    letter-spacing: 0.08em;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nexus-header-mobile-hotline {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 54px;
    border-radius: 18px;
    background: var(--primary-color);
    color: #fff !important;
    text-decoration: none;
    font-weight: 700;
}

@media (max-width: 1080px) {
    .nexus-header-bar {
        grid-template-columns: auto 1fr auto;
        gap: 12px;
    }

    .nexus-header-center,
    .nexus-header-hotline {
        display: none;
    }

    .nexus-header-toggle {
        display: inline-flex;
    }
}

@media (max-width: 767px) {
    :root {
        --nexus-header-height-top: 86px;
        --nexus-header-height-scrolled: 74px;
    }

    .nexus-header-inner {
        padding-top: 12px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .nexus-header-bar {
        padding-left: 16px;
        padding-right: 16px;
        border-radius: 22px;
    }

    .nexus-header-logo-stack {
        min-width: 110px;
        height: 42px;
    }

    .nexus-header-mobile-panel__inner {
        width: 100%;
    }
}


.nexus-header-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    background: var(--primary-color);
    color: #fff !important;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: transform .25s ease, background-color .25s ease, box-shadow .25s ease;
    box-shadow: 0 12px 28px rgba(37,99,235,0.2);
}

.nexus-header-button:hover {
    transform: translateY(-2px);
    background: var(--primary-hover);
    color: #fff !important;
}

.nexus-header-shell.is-centered .nexus-header-bar {
    grid-template-columns: 1fr auto 1fr;
}

.nexus-header-shell.is-centered .nexus-header-left {
    justify-content: flex-start;
}

.nexus-header-shell.is-centered .nexus-header-center {
    justify-content: center;
}

.nexus-header-shell.is-centered .nexus-header-right {
    justify-content: flex-end;
}

@media (max-width: 1080px) {
    .nexus-header-button {
        display: none;
    }

    .nexus-header-shell.is-centered .nexus-header-bar {
        grid-template-columns: auto 1fr auto;
    }
}


.nexus-header-shell.is-full .nexus-header-inner{max-width:none;padding-left:24px;padding-right:24px}
.nexus-header-zone-nav{display:flex;justify-content:center;min-width:0}
.nexus-header-text-note{display:inline-flex;align-items:center;font-size:11px;font-weight:800;letter-spacing:.18em;text-transform:uppercase;white-space:nowrap;opacity:.82}
.nexus-header-divider{display:inline-block;width:1px;height:28px;background:color-mix(in srgb,currentColor 22%,transparent);opacity:.35}
.nexus-header-spacer{display:inline-block;width:20px;height:1px;opacity:0}
.nexus-header-button{display:inline-flex;align-items:center;justify-content:center;min-height:48px;padding:0 18px;border-radius:999px;background:var(--primary-color);color:#fff !important;text-decoration:none;font-size:11px;font-weight:800;letter-spacing:.16em;text-transform:uppercase;transition:transform .25s ease, background-color .25s ease, box-shadow .25s ease;border:1px solid var(--primary-color);box-shadow:0 12px 28px rgba(37,99,235,0.18)}
.nexus-header-button:hover{transform:translateY(-2px);background:var(--primary-hover);border-color:var(--primary-hover);color:#fff !important}
.nexus-header-right,.nexus-header-center,.nexus-header-left{min-width:0}
.nexus-header-shell.is-boxed .nexus-header-inner{max-width:var(--nexus-header-max-width)}
@media (max-width:1080px){
  .nexus-header-text-note,.nexus-header-divider,.nexus-header-spacer,.nexus-header-button,.nexus-header-hotline,.nexus-header-zone-nav{display:none}
}

.nexus-header-tagline {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .01em;
    opacity: .98;
}

.nexus-header-tagline-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--primary-color);
    flex: 0 0 auto;
}

.nexus-header-tagline-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: clamp(260px, 36vw, 760px);
}

.nexus-header-search-trigger,
.nexus-header-menu-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 74px;
    padding: 0 34px;
    border: 0;
    background: rgba(0,0,0,.78);
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: background-color .25s ease, transform .25s ease, color .25s ease;
}

.nexus-header-search-trigger:hover,
.nexus-header-menu-trigger:hover {
    background: #05070b;
    color: #fff;
}

.nexus-header-action-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    font-size: 21px;
    line-height: 1;
}

.nexus-header-action-icon--menu {
    flex-direction: column;
    gap: 4px;
    width: 20px;
    height: 20px;
}

.nexus-header-action-icon--menu i {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
}

.nexus-header-search-panel {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: min(860px, calc(100% - (var(--nexus-header-gutter) * 2)));
    max-width: 100%;
    z-index: 15;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.nexus-header-search-panel.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.nexus-header-search-panel__inner {
    background: rgba(8,10,14,.96);
    color: #fff;
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 24px 60px rgba(0,0,0,.3);
}

.nexus-header-search-panel__bar {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 26px;
}

.nexus-header-search-submit {
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(255,255,255,.06);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.nexus-header-search-submit:hover {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.3);
    transform: translateY(-1px);
}

.nexus-header-search-input {
    flex: 1 1 auto;
    border: 0;
    outline: 0;
    background: transparent;
    color: #fff;
    font-size: 1rem;
}

.nexus-header-search-input::placeholder { color: rgba(255,255,255,.42); }

.nexus-header-search-close {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.18);
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
}

.nexus-header-search-panel__quick {
    padding: 24px 28px 28px;
    background: rgba(255,255,255,.03);
    display: grid;
    gap: 16px;
}

.nexus-header-search-panel__quick strong {
    text-transform: uppercase;
    letter-spacing: .06em;
    font-size: 12px;
}

.nexus-header-search-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px 18px;
}

.nexus-header-search-links a {
    display: block;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.06);
}

.nexus-header-search-links a:hover,
.nexus-header-overlay-quick a:hover,
.nexus-header-overlay-links a:hover {
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.14);
}

.nexus-header-search-links a,
.nexus-header-overlay-quick a,
.nexus-header-overlay-links a {
    color: #fff !important;
    text-decoration: none;
}

.nexus-header-shell.is-institutional .nexus-header-inner,
.nexus-header-shell.is-institutional.is-full .nexus-header-inner {
    max-width: none;
    padding: 0;
}

.nexus-header-shell.is-institutional .nexus-header-bar {
    min-height: 112px;
    border-radius: 0;
    padding: 0 0 0 34px;
    gap: 28px;
    background: linear-gradient(90deg, rgba(86,97,111,.76) 0%, rgba(67,70,84,.72) 58%, rgba(20,28,44,.84) 100%);
    border: 0;
    box-shadow: none;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.nexus-header-shell.is-institutional .nexus-header-left {
    gap: 22px;
    min-width: 0;
}

.nexus-header-shell.is-institutional .nexus-header-center {
    min-height: 1px;
}

.nexus-header-shell.is-institutional .nexus-header-brand {
    min-width: 220px;
}

.nexus-header-shell.is-institutional .nexus-header-right {
    gap: 0;
    align-self: stretch;
}

.nexus-header-shell.is-institutional .nexus-header-logo-stack {
    min-width: 170px;
    height: 62px;
}

.nexus-header-shell.is-institutional .nexus-header-menu-list,
.nexus-header-shell.is-institutional .nexus-header-hotline,
.nexus-header-shell.is-institutional .nexus-header-button,
.nexus-header-shell.is-institutional .nexus-header-toggle,
.nexus-header-shell.is-institutional .nexus-header-text-note {
    display: none;
}

.nexus-header-shell.is-institutional .nexus-header-mobile-panel {
    background: rgba(0,0,0,.9);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.nexus-header-mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 32px 40px 24px;
}

.nexus-header-mobile-close {
    display: inline-flex;
    gap: 10px;
    width: auto;
    padding: 0 16px;
    border-radius: 999px;
    color: #fff;
    border-color: rgba(255,255,255,.18);
}

.nexus-header-mobile-close span { font-size: 28px; line-height: 1; }

.nexus-header-overlay-grid {
    display: grid;
    grid-template-columns: minmax(280px, 420px) minmax(320px, 640px);
    gap: 48px;
    padding: 8px 40px 40px;
}

.nexus-header-overlay-primary {
    display: grid;
    align-content: start;
    gap: 18px;
}

.nexus-header-overlay-link {
    position: relative;
    display: inline-block;
    color: rgba(214,220,228,.82) !important;
    text-decoration: none;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(1.75rem, 3vw, 3.3rem);
    line-height: 1.18;
    letter-spacing: -.02em;
    font-weight: 400;
    padding: 6px 0 8px;
    transition: color .2s ease;
}

.nexus-header-overlay-link::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .2s ease;
}

.nexus-header-overlay-link:hover,
.nexus-header-overlay-link.is-active {
    color: #fff !important;
}

.nexus-header-overlay-link:hover::after,
.nexus-header-overlay-link.is-active::after {
    transform: scaleX(1);
}

.nexus-header-overlay-secondary {
    display: block;
    align-content: start;
    padding-top: 10px;
}

.nexus-header-overlay-pane {
    display: none;
}

.nexus-header-overlay-pane.is-active {
    display: block;
}

.nexus-header-overlay-feature h3 {
    margin: 0 0 22px;
    font-size: 1.9rem;
    color: #fff;
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 400;
}

.nexus-header-overlay-links {
    display: grid;
    gap: 20px;
}

.nexus-header-overlay-links a {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.65;
}


.nexus-header-overlay-grid.no-secondary {
    grid-template-columns: minmax(280px, 420px);
}

.nexus-header-overlay-grid.no-secondary .nexus-header-overlay-primary {
    max-width: 420px;
}

.nexus-header-shell.is-institutional .nexus-header-overlay-link {
    width: auto;
    padding: 8px 0 12px;
}

.nexus-header-shell.is-institutional .nexus-header-overlay-link::after {
    right: auto;
    width: 100%;
}

.nexus-header-shell.is-institutional .nexus-header-overlay-secondary:empty {
    display: none;
}

.nexus-header-overlay-quick {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap;
    padding: 24px 40px 34px;
    border-top: 1px solid rgba(255,255,255,.12);
}

.nexus-header-overlay-quick a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.03);
}

.nexus-header-overlay-quick span {
    color: rgba(255,255,255,.62);
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    flex: 0 0 100%;
}


@media (max-width: 1180px) {
    .nexus-header-shell.is-institutional .nexus-header-bar {
        grid-template-columns: 1fr auto;
    }

    .nexus-header-shell.is-institutional .nexus-header-center,
    .nexus-header-shell.is-institutional .nexus-header-tagline {
        display: none;
    }

    .nexus-header-search-trigger,
    .nexus-header-menu-trigger {
        min-height: 84px;
        padding: 0 24px;
    }

    .nexus-header-overlay-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .nexus-header-search-trigger,
    .nexus-header-menu-trigger {
        min-height: 66px;
        padding: 0 18px;
    }

    .nexus-header-search-trigger span:last-child,
    .nexus-header-menu-trigger span:last-child {
        display: none;
    }

    .nexus-header-mobile-head,
    .nexus-header-overlay-grid,
    .nexus-header-overlay-quick {
        padding-left: 22px;
        padding-right: 22px;
    }

    .nexus-header-overlay-link {
        font-size: 2.2rem;
    }

    .nexus-header-search-panel {
        right: 0;
        width: 100%;
    }
}


/* Institutional Premium v2 */
.nexus-header-shell.is-institutional {
    --nexus-inst-height: 112px;
}

.nexus-header-shell.is-institutional .nexus-header-bar {
    min-height: var(--nexus-inst-height);
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.nexus-header-shell.is-institutional .nexus-header-right {
    margin-left: auto;
    justify-content: flex-end;
    align-self: stretch;
}

.nexus-header-shell.is-institutional .nexus-header-search-trigger,
.nexus-header-shell.is-institutional .nexus-header-menu-trigger {
    min-height: var(--nexus-inst-height);
    height: var(--nexus-inst-height);
    padding: 0 38px;
    font-size: clamp(1.125rem, 1.3vw, 1.35rem);
}

.nexus-header-shell.is-institutional .nexus-header-search-trigger {
    background: rgba(55, 60, 68, .92);
}

.nexus-header-shell.is-institutional .nexus-header-search-trigger:hover {
    background: rgba(70, 76, 84, .96);
}

.nexus-header-shell.is-institutional .nexus-header-menu-trigger,
.nexus-header-shell.is-institutional .nexus-header-menu-trigger:hover {
    background: rgba(0, 0, 0, .96);
}

.nexus-header-shell.is-institutional .nexus-header-search-panel {
    top: 0;
    right: auto;
    left: 0;
    width: 600px;
    max-width: calc(100% - 34px);
    transform: translateX(14px);
}

.nexus-header-shell.is-institutional .nexus-header-search-panel.is-open {
    transform: translateX(0);
}

.nexus-header-shell.is-institutional .nexus-header-search-panel__inner {
    background: rgba(8, 8, 9, .985);
    border: 0;
    box-shadow: 0 24px 64px rgba(0, 0, 0, .36);
}

.nexus-header-shell.is-institutional .nexus-header-search-panel__bar {
    min-height: var(--nexus-inst-height);
    padding: 0 28px 0 54px;
}

.nexus-header-shell.is-institutional .nexus-header-search-input {
    font-size: clamp(1.15rem, 1.35vw, 1.6rem);
}

.nexus-header-shell.is-institutional .nexus-header-search-input::placeholder {
    color: rgba(255,255,255,.42);
}

.nexus-header-shell.is-institutional .nexus-header-search-submit {
    min-height: 0;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: .95rem;
    letter-spacing: .04em;
}

.nexus-header-shell.is-institutional .nexus-header-search-submit:hover {
    transform: none;
    background: transparent;
    border-color: transparent;
}

.nexus-header-shell.is-institutional .nexus-header-search-close {
    width: 54px;
    height: 54px;
    border-color: rgba(180, 188, 204, .38);
}

.nexus-header-shell.is-institutional .nexus-header-search-panel__quick {
    padding: 28px 32px 34px 48px;
    background: rgba(52, 55, 62, .94);
    gap: 26px;
}

.nexus-header-shell.is-institutional .nexus-header-search-panel__quick strong {
    font-size: 1.05rem;
    letter-spacing: .06em;
    color: #fff;
}

.nexus-header-shell.is-institutional .nexus-header-search-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.nexus-header-shell.is-institutional .nexus-header-search-suggestion {
    display: block;
    width: 100%;
    appearance: none;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #fff;
    font: inherit;
    font-size: clamp(1.05rem, 1.05vw, 1.2rem);
    line-height: 1.35;
    cursor: pointer;
    text-align: left;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: .18em;
    opacity: .92;
}

.nexus-header-shell.is-institutional .nexus-header-search-suggestion:hover,
.nexus-header-shell.is-institutional .nexus-header-search-suggestion:focus-visible {
    opacity: 1;
}

.nexus-header-shell.is-institutional .nexus-header-mobile-panel {
    background: rgba(0,0,0,.78);
}

.nexus-header-shell.is-institutional .nexus-header-mobile-panel__inner {
    inset: 0;
    width: 100%;
    padding: 0;
    transform: scale(.985);
    opacity: 0;
    background: linear-gradient(180deg, rgba(3,4,6,.985), rgba(0,0,0,.985));
    transition: transform .3s ease, opacity .3s ease;
}

.nexus-header-shell.is-institutional .nexus-header-mobile-panel.is-open .nexus-header-mobile-panel__inner {
    transform: scale(1);
    opacity: 1;
}

.nexus-header-shell.is-institutional .nexus-header-mobile-head {
    padding: 24px 34px 10px;
}

.nexus-header-shell.is-institutional .nexus-header-mobile-close {
    border: 0;
    background: transparent;
    padding: 0;
    border-radius: 0;
    gap: 14px;
    font-size: 1.15rem;
}

.nexus-header-shell.is-institutional .nexus-header-mobile-close span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(180, 188, 204, .38);
    border-radius: 999px;
    font-size: 32px;
}

.nexus-header-shell.is-institutional .nexus-header-overlay-grid {
    grid-template-columns: minmax(280px, 360px) minmax(360px, 680px) 1fr;
    gap: 56px;
    padding: 42px 40px 34px;
    min-height: calc(100vh - 172px);
}

.nexus-header-shell.is-institutional .nexus-header-overlay-primary {
    gap: 22px;
}

.nexus-header-shell.is-institutional .nexus-header-overlay-secondary {
    padding-top: 18px;
}

.nexus-header-shell.is-institutional .nexus-header-overlay-quick {
    padding: 24px 40px 28px;
    min-height: 88px;
    align-items: center;
}

.nexus-header-shell.is-institutional .nexus-header-overlay-quick span {
    flex: 0 0 auto;
    margin-right: 8px;
}

@media (max-width: 1180px) {
    .nexus-header-shell.is-institutional {
        --nexus-inst-height: 92px;
    }
    .nexus-header-shell.is-institutional .nexus-header-search-panel {
        width: calc(100% - 20px);
        max-width: calc(100% - 20px);
    }
    .nexus-header-shell.is-institutional .nexus-header-overlay-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        min-height: auto;
    }
}

@media (max-width: 767px) {
    .nexus-header-shell.is-institutional {
        --nexus-inst-height: 78px;
    }
    .nexus-header-shell.is-institutional .nexus-header-bar {
        padding-left: 16px;
    }
    .nexus-header-shell.is-institutional .nexus-header-search-trigger,
    .nexus-header-shell.is-institutional .nexus-header-menu-trigger {
        padding: 0 20px;
        min-width: auto;
    }
    .nexus-header-shell.is-institutional .nexus-header-search-panel {
        top: 100%;
        right: 0;
        width: 100%;
        max-width: 100%;
        transform: translateY(-8px);
    }
    .nexus-header-shell.is-institutional .nexus-header-search-panel.is-open {
        transform: translateY(0);
    }
    .nexus-header-shell.is-institutional .nexus-header-search-panel__bar {
        min-height: 86px;
        padding: 0 16px 0 20px;
    }
    .nexus-header-shell.is-institutional .nexus-header-search-panel__quick {
        padding: 20px;
    }
}

/* Editorial Capsule Mega */
.nexus-header-shell.is-editorial_capsule {
    --nexus-capsule-height: 54px;
}

.nexus-header-shell.is-editorial_capsule .nexus-header-bar {
    min-height: 92px;
    padding: 0;
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.nexus-header-shell.is-editorial_capsule.is-scrolled .nexus-header-bar,
.nexus-header-shell.is-editorial_capsule.is-capsule-open .nexus-header-bar,
.nexus-header-shell.is-editorial_capsule.is-search-open .nexus-header-bar,
.nexus-header-shell.is-editorial_capsule[data-transparent="0"] .nexus-header-bar {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.nexus-header-shell.is-editorial_capsule .nexus-header-right {
    margin-left: auto;
    gap: 12px;
}

.nexus-header-shell.is-editorial_capsule .nexus-header-inner {
    padding-top: 24px;
}

.nexus-header-shell.is-editorial_capsule .nexus-header-left {
    gap: 18px;
}

.nexus-header-shell.is-editorial_capsule .nexus-header-capsule-menu,
.nexus-header-shell.is-editorial_capsule .nexus-header-search-trigger {
    position: relative;
    min-height: var(--nexus-capsule-height);
    border-radius: 999px;
    background: rgba(255,255,255,.96);
    color: #111827;
    box-shadow: 0 14px 34px rgba(15,23,42,.12), 0 3px 10px rgba(15,23,42,.08);
}

.nexus-header-shell.is-editorial_capsule .nexus-header-search-trigger {
    min-width: 112px;
    min-height: 54px;
    padding: 0 20px;
    border: 1px solid rgba(15,23,42,.08);
    background: rgba(255,255,255,.96);
    color: #111827;
    box-shadow: 0 14px 34px rgba(15,23,42,.12), 0 3px 10px rgba(15,23,42,.08);
}

.nexus-header-shell.is-editorial_capsule .nexus-header-search-trigger:hover {
    background: rgba(255,255,255,.99);
    color: #111827;
    transform: translateY(-1px);
}

.nexus-header-capsule-links {
    display: inline-flex;
    align-items: center;
    gap: 26px;
    min-height: var(--nexus-capsule-height);
    padding: 0 24px;
}

.nexus-header-capsule-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: var(--nexus-capsule-height);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    color: #111827 !important;
    transition: color .22s ease;
}

.nexus-header-capsule-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 14px;
    width: 100%;
    height: 1px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .2s ease;
}

.nexus-header-capsule-link:hover,
.nexus-header-capsule-link.is-active {
    color: var(--primary-color) !important;
}

.nexus-header-capsule-link:hover::after,
.nexus-header-capsule-link.is-active::after {
    transform: scaleX(1);
}

.nexus-header-capsule-panel {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    width: auto;
    max-width: calc(100vw - 60px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    pointer-events: auto;
}

.nexus-header-capsule-panel.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nexus-header-capsule-panel__inner {
    background: rgba(255,255,255,.985);
    border: 1px solid rgba(15,23,42,.08);
    border-radius: 32px;
    box-shadow: 0 30px 70px rgba(15,23,42,.14);
    padding: 32px;
    width: fit-content;
    min-width: 250px;
    max-width: calc(100vw - 60px);
}

.nexus-header-capsule-pane {
    display: none;
    align-items: start;
    gap: 30px;
}

.nexus-header-capsule-pane.is-active {
    display: flex;
}

.nexus-header-capsule-pane__menu {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding-right: 30px;
    border-right: 1px solid rgba(15,23,42,.08);
}

.nexus-header-capsule-pane__menu.is-empty {
    display: none;
    padding-right: 0;
    border-right: 0;
}

.nexus-header-capsule-group {
    display: grid;
    gap: 14px;
    min-width: 250px;
    width: max-content;
    max-width: 420px;
}

.nexus-header-capsule-group__title {
    margin: 0;
    font-size: .82rem;
    line-height: 1.2;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #6b7280;
}

.nexus-header-capsule-group__links {
    display: grid;
    gap: 12px;
}

.nexus-header-capsule-submenu-link {
    display: block;
    width: fit-content;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.05rem;
    line-height: 1.4;
    color: #111827 !important;
    text-decoration: none;
}

.nexus-header-capsule-submenu-link:hover {
    color: var(--primary-color) !important;
    text-decoration: underline;
    text-underline-offset: .18em;
}

.nexus-header-capsule-pane__record {
    min-width: 250px;
    max-width: 250px;
    width: 250px;
    flex: 0 0 250px;
}

.nexus-header-capsule-pane__record.is-empty {
    display: none;
}

.nexus-header-capsule-pane.is-record-only {
    gap: 0;
}

.nexus-header-record-card {
    display: grid;
    gap: 18px;
}

.nexus-header-capsule-pane__record:empty {
    display: none;
}

.nexus-header-record-card__media {
    display: block;
    border-radius: 24px;
    overflow: hidden;
    background: #f8fafc;
}

.nexus-header-record-card__media img {
    display: block;
    width: 100%;
    height: auto;
}

.nexus-header-record-card__eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 700;
}

.nexus-header-record-card__body h3 {
    margin: 0 0 10px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(1.4rem, 1.4vw, 1.75rem);
    line-height: 1.12;
}

.nexus-header-record-card__body h3 a,
.nexus-header-record-card__link {
    color: #111827;
    text-decoration: none;
}

.nexus-header-record-card__body p {
    margin: 0 0 14px;
    color: #475569;
    line-height: 1.65;
}

.nexus-header-record-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--primary-color);
}

.nexus-header-record-card__link:hover,
.nexus-header-record-card__body h3 a:hover {
    color: var(--primary-hover);
}

.nexus-header-shell.is-editorial_capsule .nexus-header-search-panel {
    top: calc(100% + 14px);
}

.nexus-header-shell.is-editorial_capsule .nexus-header-search-panel__inner {
    background: rgba(255,255,255,.985);
    border-color: rgba(15,23,42,.08);
}

.nexus-header-shell.is-editorial_capsule .nexus-header-search-panel__bar {
    min-height: 84px;
}

.nexus-header-shell.is-editorial_capsule .nexus-header-search-input,
.nexus-header-shell.is-editorial_capsule .nexus-header-search-input::placeholder,
.nexus-header-shell.is-editorial_capsule .nexus-header-search-submit,
.nexus-header-shell.is-editorial_capsule .nexus-header-search-close {
    color: #111827;
}

.nexus-header-shell.is-editorial_capsule .nexus-header-search-panel__quick {
    background: #f8fafc;
}

@media (max-width: 1080px) {
    .nexus-header-shell.is-editorial_capsule .nexus-header-capsule-menu {
        display: none;
    }
    .nexus-header-shell.is-editorial_capsule .nexus-header-toggle {
        display: inline-flex;
    }
}

@media (max-width: 767px) {
    .nexus-header-shell.is-editorial_capsule .nexus-header-search-trigger {
        min-width: 0;
        padding: 0 22px;
        min-height: 62px;
    }
    .nexus-header-shell.is-editorial_capsule .nexus-header-search-trigger span:last-child {
        display: none;
    }
}

/* Shared compact trigger */
.nexus-header-compact-menu-trigger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,.96);
    color: #111827;
    box-shadow: 0 14px 34px rgba(15,23,42,.12), 0 3px 10px rgba(15,23,42,.08);
    cursor: pointer;
    transition: transform .22s ease, box-shadow .22s ease, opacity .22s ease;
}
.nexus-header-compact-menu-trigger:hover { transform: translateY(-1px); }
.nexus-header-shell.is-menu-collapsed .nexus-header-compact-menu-trigger,
.nexus-header-shell.is-menu-expanded .nexus-header-compact-menu-trigger {
    display: inline-flex;
}
.nexus-header-shell.is-menu-collapsed .nexus-header-zone-nav > .nexus-header-menu-list,
.nexus-header-shell.is-menu-collapsed .nexus-header-zone-nav > .nexus-header-generic-menu {
    display: none;
}
.nexus-header-shell.is-preset-homepage_default_menu.is-menu-collapsed .nexus-header-search-trigger {
    display: none;
}
.nexus-header-shell.is-preset-editorial_capsule_mega.is-menu-collapsed .nexus-header-capsule-menu {
    display: none;
}
.nexus-header-shell.is-menu-expanded .nexus-header-zone-nav > .nexus-header-menu-list,
.nexus-header-shell.is-menu-expanded .nexus-header-zone-nav > .nexus-header-generic-menu,
.nexus-header-shell.is-preset-editorial_capsule_mega.is-menu-expanded .nexus-header-capsule-menu {
    display: inline-flex;
}
.nexus-header-shell.is-menu-expanded .nexus-header-compact-menu-trigger {
    display: inline-flex;
}

/* Generic mega engine for non-editorial presets */
.nexus-header-generic-menu { position: relative; display: inline-flex; }
.nexus-header-generic-links {
    display: inline-flex;
    align-items: center;
    gap: clamp(18px, 2vw, 34px);
}
.nexus-header-generic-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    border: 0;
    background: transparent;
    font: inherit;
    color: inherit;
    cursor: pointer;
}
.nexus-header-generic-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .22s ease;
}
.nexus-header-generic-link:hover,
.nexus-header-generic-link.is-active { color: var(--primary-color); }
.nexus-header-generic-link:hover::after,
.nexus-header-generic-link.is-active::after { transform: scaleX(1); }
.nexus-header-generic-panel {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translate(-50%, 10px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    max-width: calc(100vw - 48px);
    z-index: 30;
}
.nexus-header-generic-panel.is-open {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}
.nexus-header-generic-panel__inner {
    background: rgba(255,255,255,.98);
    border: 1px solid rgba(15,23,42,.08);
    border-radius: 28px;
    box-shadow: 0 30px 70px rgba(15,23,42,.14);
    padding: 32px;
    width: fit-content;
    min-width: 250px;
    max-width: calc(100vw - 48px);
}
.nexus-header-generic-pane { display: none; align-items: flex-start; gap: 30px; }
.nexus-header-generic-pane.is-active { display: flex; }
.nexus-header-generic-pane__menu {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding-right: 30px;
    border-right: 1px solid rgba(15,23,42,.08);
}
.nexus-header-generic-pane__menu.is-empty { display: none; padding-right: 0; border-right: 0; }
.nexus-header-generic-pane__record { min-width: 250px; width: 250px; flex: 0 0 250px; }
.nexus-header-generic-pane__record.is-empty { display: none; }
.nexus-header-record-cards { display: grid; gap: 18px; }
.nexus-header-generic-pane .nexus-header-record-card__body h3 { font-size: 1.25rem; }
.nexus-header-generic-pane .nexus-header-record-card__body p { font-size: .95rem; }

/* Homepage Default Menu preset */
.nexus-header-shell.is-homepage_default .nexus-header-bar {
    min-height: 92px;
    padding-inline: 18px;
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
.nexus-header-shell.is-homepage_default .nexus-header-center { justify-content: center; }
.nexus-header-shell.is-homepage_default .nexus-header-zone-nav {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 26px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.nexus-header-shell.is-homepage_default .nexus-header-menu-list,
.nexus-header-shell.is-homepage_default .nexus-header-generic-links {
    gap: 26px;
}
.nexus-header-shell.is-homepage_default .nexus-header-menu-link,
.nexus-header-shell.is-homepage_default .nexus-header-generic-link {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #fff !important;
}
.nexus-header-shell.is-homepage_default .nexus-header-search-trigger {
    min-width: 56px;
    min-height: 56px;
    padding: 0 20px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    color: #fff;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.nexus-header-shell.is-homepage_default .nexus-header-search-trigger span:last-child { display: none; }
.nexus-header-shell.is-homepage_default .nexus-header-compact-menu-trigger { background: rgba(255,255,255,.96); color: #111827; }
.nexus-header-shell.is-homepage_default.is-scrolled .nexus-header-bar,
.nexus-header-shell.is-homepage_default.is-search-open .nexus-header-bar,
.nexus-header-shell.is-homepage_default.is-generic-open .nexus-header-bar,
.nexus-header-shell.is-homepage_default[data-transparent="0"] .nexus-header-bar {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
}
.nexus-header-shell.is-homepage_default .nexus-header-generic-panel { top: calc(100% + 18px); }

/* Editorial compact collapse */
.nexus-header-shell.is-editorial_capsule .nexus-header-compact-menu-trigger--capsule {
    background: rgba(255,255,255,.96);
    color: #111827;
}
.nexus-header-shell.is-editorial_capsule.is-menu-collapsed .nexus-header-search-trigger { display: inline-flex; }
.nexus-header-shell.is-editorial_capsule.is-menu-expanded .nexus-header-search-trigger { display: inline-flex; }
.nexus-header-shell.is-editorial_capsule.is-menu-expanded .nexus-header-compact-menu-trigger--capsule { display: none; }

@media (max-width: 1080px) {
    .nexus-header-generic-menu,
    .nexus-header-compact-menu-trigger { display: none !important; }
}


/* Editorial/Home search clean search UI */
.nexus-header-shell.is-editorial_capsule .nexus-header-search-panel,
.nexus-header-shell.is-homepage_default .nexus-header-search-panel {
    top: calc(100% + 10px);
}

.nexus-header-shell.is-editorial_capsule .nexus-header-search-panel__inner,
.nexus-header-shell.is-homepage_default .nexus-header-search-panel__inner {
    background: transparent;
    border: 0;
    box-shadow: none;
}

.nexus-header-shell.is-editorial_capsule .nexus-header-search-panel__bar,
.nexus-header-shell.is-homepage_default .nexus-header-search-panel__bar {
    min-height: 72px;
    padding: 0 22px 0 28px;
    border-radius: 999px;
    background: rgba(255,255,255,.98);
    border: 1px solid rgba(15,23,42,.08);
    box-shadow: 0 18px 40px rgba(15,23,42,.12);
}

.nexus-header-shell.is-editorial_capsule .nexus-header-search-input,
.nexus-header-shell.is-homepage_default .nexus-header-search-input {
    color: #111827;
    font-size: 1rem;
    font-weight: 500;
}

.nexus-header-shell.is-editorial_capsule .nexus-header-search-input::placeholder,
.nexus-header-shell.is-homepage_default .nexus-header-search-input::placeholder {
    color: #a3a3a3;
    opacity: 1;
}

.nexus-header-shell.is-editorial_capsule .nexus-header-search-submit,
.nexus-header-shell.is-homepage_default .nexus-header-search-submit {
    min-height: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: #111827;
    box-shadow: none;
    font-size: 1rem;
    font-weight: 700;
}

.nexus-header-shell.is-editorial_capsule .nexus-header-search-submit:hover,
.nexus-header-shell.is-homepage_default .nexus-header-search-submit:hover {
    background: transparent;
    border-color: transparent;
    transform: none;
}

.nexus-header-shell.is-editorial_capsule .nexus-header-search-close,
.nexus-header-shell.is-homepage_default .nexus-header-search-close {
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    color: #111827;
}

.nexus-header-shell.is-editorial_capsule .nexus-header-search-panel__quick,
.nexus-header-shell.is-homepage_default .nexus-header-search-panel__quick {
    margin-top: 10px;
    padding: 26px 28px 30px;
    border-radius: 28px;
    background: rgba(255,255,255,.98);
    border: 1px solid rgba(15,23,42,.08);
    box-shadow: 0 18px 40px rgba(15,23,42,.12);
    gap: 18px;
}

.nexus-header-shell.is-editorial_capsule .nexus-header-search-panel__quick strong,
.nexus-header-shell.is-homepage_default .nexus-header-search-panel__quick strong {
    color: #a3a3a3;
    font-size: .95rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
}

.nexus-header-shell.is-editorial_capsule .nexus-header-search-links,
.nexus-header-shell.is-homepage_default .nexus-header-search-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 16px 28px;
}

.nexus-header-shell.is-editorial_capsule .nexus-header-search-links a,
.nexus-header-shell.is-editorial_capsule .nexus-header-search-suggestion,
.nexus-header-shell.is-homepage_default .nexus-header-search-links a,
.nexus-header-shell.is-homepage_default .nexus-header-search-suggestion {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: #111827 !important;
    font-size: 1rem;
    line-height: 1.5;
    text-align: left;
    text-decoration: none;
    opacity: 1;
}

.nexus-header-shell.is-editorial_capsule .nexus-header-search-links a:hover,
.nexus-header-shell.is-editorial_capsule .nexus-header-search-suggestion:hover,
.nexus-header-shell.is-homepage_default .nexus-header-search-links a:hover,
.nexus-header-shell.is-homepage_default .nexus-header-search-suggestion:hover {
    color: var(--primary-color) !important;
    background: transparent;
    border-color: transparent;
}
