/* ==========================================================
   HORMUUD UNIVERSITY — GLOBAL PUBLIC SHELL 2026 V2
   Light institutional adaptation of the supplied Claude navbar/footer.

   Core interaction language:
   - logo left
   - navigation + actions grouped to the right
   - dropdowns open below and grow LEFT from their trigger
   - sibling menu links dim while the hovered item becomes white
     on a restrained grey/green surface
   - second utility navigation row
   - light editorial footer
   ========================================================== */

:root {
    --hu-green: #148154;
    --hu-green-dark: #0a3420;
    --hu-green-soft: #E8F3EE;

    --hu-blue: #2C85B7;
    --hu-blue-dark: #236E98;
    --hu-blue-soft: #EAF4F9;

    --hu-white: #FFFFFF;
    --hu-cream: #FBFCFA;
    --hu-surface: #F5F7F5;
    --hu-surface-2: #EEF2EF;
    --hu-surface-3: #E7ECE8;

    --hu-ink: #151A17;
    --hu-text: #2A302C;
    --hu-soft: #68716B;
    --hu-muted: #8D958F;
    --hu-line: #D9E0DC;
    --hu-line-strong: #C8D0CB;

    --hu-display: "Fraunces", Georgia, serif;
    --hu-body: "Inter", Arial, sans-serif;
    --hu-mono: "DM Mono", monospace;
}


/* ----------------------------------------------------------
   Shell reset
   ---------------------------------------------------------- */

.hu-global-header *,
.hu-subnav *,
.hu-mobile-nav *,
.hu-global-footer * {
    box-sizing: border-box;
}

.hu-global-header button,
.hu-subnav button,
.hu-mobile-nav button,
.hu-global-footer button,
.hu-global-footer input {
    font: inherit;
}


/* ==========================================================
   MAIN HEADER
   ========================================================== */

.hu-global-header {
    position: sticky;
    z-index: 1200;
    top: 0;

    width: 100%;

    color: var(--hu-ink);
    background: rgba(255,255,255,.985);

    border-bottom: 1px solid var(--hu-line);

    font-family: var(--hu-body);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.hu-nav-shell {
    width: min(1440px, calc(100% - 56px));
    min-height: 76px;

    display: flex;
    align-items: center;

    gap: 20px;

    margin-inline: auto;
}


/* logo LEFT */

.hu-nav-brand {
    flex: none;

    display: inline-flex;
    align-items: center;

    gap: 10px;

    color: var(--hu-green-dark) !important;

    text-decoration: none !important;
}

.hu-nav-brand img {
    width: 36px;
    height: 44px;

    object-fit: contain;
}

.hu-nav-brand span {
    font-family: var(--hu-display);
    font-size: 25px;
    font-weight: 600;
    line-height: 1;

    letter-spacing: -.03em;
}


/* ALL NAVIGATION TO THE RIGHT */

.hu-nav-desktop {
    min-width: 0;

    display: flex;
    align-self: stretch;
    align-items: center;

    gap: 1px;

    margin-left: auto;
}

.hu-nav-item {
    position: relative;

    height: 100%;

    display: flex;
    align-items: center;
}

.hu-nav-trigger,
.hu-nav-direct {
    min-height: 42px;

    display: inline-flex;
    align-items: center;

    gap: 6px;

    padding: 0 10px;

    color: #303732 !important;
    background: transparent;

    border: 0;
    border-radius: 6px;

    text-decoration: none !important;

    font-size: 13px;
    font-weight: 500;

    white-space: nowrap;

    cursor: pointer;

    transition:
        color .16s ease,
        background .16s ease;
}

.hu-nav-trigger:hover,
.hu-nav-trigger:focus-visible,
.hu-nav-item.is-open > .hu-nav-trigger,
.hu-nav-direct:hover,
.hu-nav-direct:focus-visible,
.hu-nav-direct.is-current {
    color: var(--hu-green-dark) !important;
    background: var(--hu-green-soft);
}

.hu-nav-chevron {
    display: inline-block;

    color: #8D958F;

    font-size: 14px;
    line-height: 1;

    transform: translateY(-1px);

    transition: transform .18s ease;
}

.hu-nav-item.is-open .hu-nav-chevron {
    transform:
        translateY(1px)
        rotate(180deg);
}


/* CTA GROUP — right of links */

.hu-nav-actions {
    min-width: max-content;

    display: flex;
    align-items: center;

    gap: 9px;

    margin-left: 9px;
}

.hu-nav-portal,
.hu-nav-apply {
    min-height: 40px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 15px;

    border-radius: 7px;

    text-decoration: none !important;

    font-size: 12px;
    font-weight: 700;

    transition:
        background .16s ease,
        color .16s ease,
        border-color .16s ease,
        transform .16s ease;
}

.hu-nav-portal {
    color: var(--hu-green-dark) !important;
    background: #FFFFFF;

    border: 1px solid var(--hu-line-strong);
}

.hu-nav-portal:hover {
    background: var(--hu-green-soft);

    border-color: #AFC6BA;
}

.hu-nav-apply {
    color: #FFFFFF !important;
    background: var(--hu-green);

    border: 1px solid var(--hu-green);
}

.hu-nav-apply:hover {
    color: #FFFFFF !important;
    background: var(--hu-green-dark);

    border-color: var(--hu-green-dark);

    transform: translateY(-1px);
}


/* ==========================================================
   CLAUDE-STYLE MEGA MENUS — RIGHT ALIGNED
   ========================================================== */

.hu-mega {
    position: absolute;

    z-index: 1300;

    top: calc(100% - 12px);
    right: 0;
    left: auto;

    width: min(880px, calc(100vw - 64px));
    max-height: min(620px, calc(100vh - 110px));

    overflow-y: auto;

    padding: 16px;

    color: var(--hu-text);

    background: rgba(249,250,248,.995);

    border: 1px solid var(--hu-line);
    border-radius: 13px;

    box-shadow:
        0 22px 55px
        rgba(28,43,34,.13);

    opacity: 0;
    visibility: hidden;

    transform: translateY(-8px);

    transform-origin: top right;

    pointer-events: none;

    transition:
        opacity .15s ease,
        transform .2s cubic-bezier(.16,1,.3,1),
        visibility 0s linear .2s;
}

.hu-mega--compact {
    width: min(700px, calc(100vw - 64px));
}

.hu-nav-item.is-open > .hu-mega {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);

    pointer-events: auto;

    transition:
        opacity .15s ease,
        transform .2s cubic-bezier(.16,1,.3,1),
        visibility 0s;
}

.hu-mega-grid {
    display: grid;

    gap: 0;
}

.hu-mega-grid--about {
    grid-template-columns:
        1fr
        1.18fr
        1fr
        .8fr;
}

.hu-mega-grid--3 {
    grid-template-columns:
        repeat(3, 1fr);
}

.hu-mega-grid--4 {
    grid-template-columns:
        repeat(4, 1fr);
}

.hu-mega-grid--research {
    grid-template-columns:
        .8fr
        1.3fr
        1.3fr;
}

.hu-mega-group {
    min-width: 0;

    padding:
        0
        18px;

    border-right:
        1px solid
        var(--hu-line);
}

.hu-mega-group:first-child {
    padding-left: 0;
}

.hu-mega-group:last-child {
    padding-right: 0;

    border-right: 0;
}

.hu-mega-label {
    display: block;

    margin-bottom: 7px;

    color: #7B857E;

    font-family: var(--hu-mono);
    font-size: 10px;
    font-weight: 500;
    line-height: 1.2;
}


/* Default link state */

.hu-mega-link {
    min-height: 34px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 12px;

    padding:
        6px
        9px;

    margin-inline: -9px;

    color: #252C27 !important;

    text-decoration: none !important;

    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;

    border-radius: 5px;

    transition:
        color .12s ease,
        background .12s ease,
        opacity .12s ease;
}


/*
   Exact interaction requested:
   When one item is hovered, OTHER items become grey/dim.
   The hovered item becomes WHITE on a grey-green surface.
*/

.hu-mega:hover .hu-mega-link {
    color: #949C96 !important;
}

.hu-mega .hu-mega-link:hover,
.hu-mega .hu-mega-link:focus-visible {
    color: #FFFFFF !important;
    background: #747C76;
}

.hu-mega-link.is-current {
    color: var(--hu-green-dark) !important;
    background: var(--hu-green-soft);
}


/* ==========================================================
   SECONDARY / UTILITY NAV
   ========================================================== */

.hu-subnav {
    position: relative;
    z-index: 1100;

    width: 100%;

    color: var(--hu-soft);
    background: #FBFCFA;

    border-bottom:
        1px solid
        var(--hu-line);

    font-family: var(--hu-body);
}

.hu-subnav-shell {
    width: min(1440px, calc(100% - 56px));
    min-height: 44px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 24px;

    margin-inline: auto;
}

.hu-subnav-context {
    display: flex;
    align-items: center;

    gap: 9px;

    min-width: 0;

    color: #78817A;

    font-size: 11px;
}

.hu-subnav-context a {
    color: var(--hu-green-dark) !important;

    text-decoration: none !important;

    font-weight: 600;
}

.hu-subnav-context span:last-child {
    overflow: hidden;

    text-overflow: ellipsis;
    white-space: nowrap;
}

.hu-subnav-links {
    display: flex;
    align-items: center;

    gap: 4px;

    margin-left: auto;
}

.hu-subnav-links > a,
.hu-subnav-explore > button {
    min-height: 34px;

    display: inline-flex;
    align-items: center;

    padding: 0 10px;

    color: #5B655E !important;
    background: transparent;

    border: 0;
    border-radius: 5px;

    text-decoration: none !important;

    font-size: 11px;
    font-weight: 500;

    cursor: pointer;

    transition:
        color .15s ease,
        background .15s ease;
}

.hu-subnav-links > a:hover,
.hu-subnav-links > a:focus-visible,
.hu-subnav-explore > button:hover,
.hu-subnav-explore > button:focus-visible,
.hu-subnav-explore.is-open > button {
    color: var(--hu-green-dark) !important;
    background: var(--hu-green-soft);
}

.hu-subnav-explore {
    position: relative;
}

.hu-subnav-explore > button span {
    margin-left: 7px;

    color: #909791;

    transition: transform .16s ease;
}

.hu-subnav-explore.is-open > button span {
    transform: rotate(180deg);
}

.hu-subnav-menu {
    position: absolute;

    z-index: 1320;

    top: calc(100% + 4px);
    right: 0;

    width: 260px;

    padding: 8px;

    background: #F8FAF8;

    border: 1px solid var(--hu-line);
    border-radius: 10px;

    box-shadow:
        0 18px 45px
        rgba(28,43,34,.12);

    opacity: 0;
    visibility: hidden;

    transform: translateY(-6px);

    pointer-events: none;

    transition:
        opacity .14s ease,
        transform .18s cubic-bezier(.16,1,.3,1),
        visibility 0s linear .18s;
}

.hu-subnav-explore.is-open
.hu-subnav-menu {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);

    pointer-events: auto;

    transition:
        opacity .14s ease,
        transform .18s cubic-bezier(.16,1,.3,1),
        visibility 0s;
}

.hu-subnav-menu a {
    min-height: 40px;

    display: flex;
    align-items: center;

    padding: 0 10px;

    color: #29302B !important;

    border-radius: 5px;

    text-decoration: none !important;

    font-size: 12px;
    font-weight: 600;
}

.hu-subnav-menu:hover a {
    color: #929A94 !important;
}

.hu-subnav-menu a:hover,
.hu-subnav-menu a:focus-visible {
    color: #FFFFFF !important;
    background: #747C76;
}


/* ==========================================================
   MOBILE MENU BUTTON
   ========================================================== */

.hu-nav-menu-button {
    width: 44px;
    height: 40px;

    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 6px;

    padding: 0;

    color: var(--hu-green-dark);
    background: #FFFFFF;

    border: 1px solid var(--hu-line-strong);
    border-radius: 7px;

    cursor: pointer;
}

.hu-nav-menu-button span {
    width: 18px;
    height: 1px;

    display: block;

    background: currentColor;
}


/* ==========================================================
   MOBILE DRAWER — LIGHT
   ========================================================== */

.hu-mobile-backdrop {
    position: fixed;

    z-index: 1390;

    inset: 0;

    background: rgba(24,32,27,.36);

    opacity: 0;

    transition: opacity .24s ease;
}

.hu-mobile-backdrop.is-visible {
    opacity: 1;
}

.hu-mobile-nav {
    position: fixed;

    z-index: 1400;

    top: 0;
    right: 0;

    width: min(520px, 100vw);
    height: 100dvh;

    display: grid;

    grid-template-rows:
        auto
        minmax(0, 1fr)
        auto;

    color: var(--hu-ink);
    background: #FFFFFF;

    border-left: 1px solid var(--hu-line);

    font-family: var(--hu-body);

    transform: translateX(102%);

    transition:
        transform .34s
        cubic-bezier(.16,1,.3,1);

    box-shadow:
        -22px 0 70px
        rgba(28,43,34,.15);
}

.hu-mobile-nav.is-open {
    transform: translateX(0);
}

.hu-mobile-nav-head {
    min-height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding:
        15px
        24px;

    border-bottom:
        1px solid
        var(--hu-line);
}

.hu-mobile-brand {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    color: var(--hu-green-dark) !important;

    text-decoration: none !important;
}

.hu-mobile-brand img {
    width: 32px;
    height: 40px;

    object-fit: contain;
}

.hu-mobile-brand span {
    font-family: var(--hu-display);
    font-size: 21px;
    font-weight: 600;
    line-height: 1;
}

.hu-mobile-close {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    padding: 0;

    color: #6B746D;
    background: transparent;

    border: 0;

    cursor: pointer;

    font-size: 30px;
    font-weight: 300;
    line-height: 1;
}

.hu-mobile-nav-scroll {
    overflow-y: auto;

    padding:
        15px
        24px
        28px;

    overscroll-behavior: contain;
}

.hu-mobile-direct,
.hu-mobile-section-trigger {
    width: 100%;
    min-height: 68px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0;

    color: #1D241F !important;
    background: transparent;

    border: 0;
    border-bottom:
        1px solid
        var(--hu-line);

    text-decoration: none !important;

    font-size: 17px;
    font-weight: 600;

    cursor: pointer;
}

.hu-mobile-section-trigger span {
    color: #89918B;

    font-size: 24px;
    font-weight: 300;

    transition: transform .22s ease;
}

.hu-mobile-section.is-open
.hu-mobile-section-trigger span {
    transform: rotate(45deg);
}

.hu-mobile-section-panel {
    display: grid;

    grid-template-rows: 0fr;

    transition:
        grid-template-rows .32s
        cubic-bezier(.16,1,.3,1);
}

.hu-mobile-section-panel > div {
    min-height: 0;

    overflow: hidden;
}

.hu-mobile-section.is-open
.hu-mobile-section-panel {
    grid-template-rows: 1fr;
}

.hu-mobile-section-panel a {
    min-height: 39px;

    display: flex;
    align-items: center;

    padding:
        4px
        0;

    color: #303832 !important;

    text-decoration: none !important;

    font-size: 13px;
    line-height: 1.4;
}

.hu-mobile-section-panel a:first-of-type {
    margin-top: 14px;
}

.hu-mobile-section-panel a:last-child {
    margin-bottom: 18px;
}

.hu-mobile-section-panel a:hover,
.hu-mobile-section-panel a:focus-visible {
    color: var(--hu-green-dark) !important;
}

.hu-mobile-label {
    display: block;

    margin:
        16px
        0
        6px;

    color: #7B857E;

    font-family: var(--hu-mono);
    font-size: 10px;
}

.hu-mobile-nav-actions {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 10px;

    padding:
        18px
        24px
        max(18px, env(safe-area-inset-bottom));

    background: #FFFFFF;

    border-top:
        1px solid
        var(--hu-line);
}

.hu-mobile-nav-actions a {
    min-height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 12px;

    border-radius: 7px;

    text-decoration: none !important;

    font-size: 13px;
    font-weight: 700;
}

.hu-mobile-secondary {
    color: var(--hu-green-dark) !important;
    background: #FFFFFF;

    border:
        1px solid
        var(--hu-line-strong);
}

.hu-mobile-primary {
    color: #FFFFFF !important;
    background: var(--hu-green);

    border:
        1px solid
        var(--hu-green);
}

body.hu-mobile-nav-open {
    overflow: hidden !important;
}


/* ==========================================================
   LIGHT EDITORIAL FOOTER
   ========================================================== */

.hu-global-footer {
    padding:
        92px
        0
        24px;

    color: var(--hu-ink);
    background:
        linear-gradient(
            180deg,
            #F5F8F5 0%,
            #EEF3EF 100%
        );

    border-top:
        1px solid
        var(--hu-line);

    font-family: var(--hu-body);
}

.hu-footer-shell {
    width:
        min(
            1440px,
            calc(100% - 56px)
        );

    margin-inline: auto;
}

.hu-footer-grid {
    display: grid;

    grid-template-columns:
        minmax(280px, 1.35fr)
        repeat(4, minmax(150px, 1fr));

    gap:
        54px
        44px;
}

.hu-footer-brand-column {
    padding-right: 12px;
}

.hu-footer-brand {
    display: inline-flex;
    align-items: center;

    gap: 12px;

    color: var(--hu-green-dark) !important;

    text-decoration: none !important;
}

.hu-footer-brand img {
    width: 41px;
    height: 51px;

    object-fit: contain;
}

.hu-footer-brand span {
    font-family: var(--hu-display);
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
}

.hu-footer-address {
    max-width: 280px;

    margin:
        22px
        0
        0;

    color: var(--hu-soft);

    font-size: 12px;
    line-height: 1.6;
}

.hu-footer-contact {
    display: flex;
    flex-direction: column;

    gap: 4px;

    margin-top: 12px;
}

.hu-footer-contact a {
    width: max-content;

    color: #29312B !important;

    text-decoration: none !important;

    font-size: 12px;
}

.hu-footer-contact a:hover {
    color: var(--hu-green-dark) !important;
}


/* footer finder — Claude-like input */

.hu-footer-finder {
    max-width: 335px;

    margin-top: 28px;
}

.hu-footer-finder label {
    display: block;

    margin-bottom: 8px;

    color: #748078;

    font-family: var(--hu-mono);
    font-size: 10px;
}

.hu-footer-finder-control {
    min-height: 46px;

    display: flex;
    align-items: center;

    padding:
        4px
        4px
        4px
        12px;

    background: #FFFFFF;

    border:
        1px solid
        var(--hu-line-strong);

    border-radius: 8px;
}

.hu-footer-finder-control:focus-within {
    border-color: #94BBA7;

    box-shadow:
        0 0 0 3px
        rgba(20,129,84,.08);
}

.hu-footer-finder-control input {
    min-width: 0;

    flex: 1;

    color: var(--hu-ink);
    background: transparent;

    border: 0;
    outline: 0;

    font-size: 12px;
}

.hu-footer-finder-control input::placeholder {
    color: #8C958F;
}

.hu-footer-finder-control button {
    width: 38px;
    height: 36px;

    display: grid;
    place-items: center;

    flex: none;

    padding: 0;

    color: #FFFFFF;
    background:
        linear-gradient(
            135deg,
            var(--hu-green),
            var(--hu-blue)
        );

    border: 0;

    border-radius: 7px;

    cursor: pointer;

    font-size: 16px;
}

.hu-footer-finder-status {
    min-height: 16px;

    margin:
        5px
        0
        0;

    color: #7B857E;

    font-size: 10px;
}

.hu-footer-quick {
    display: flex;
    flex-wrap: wrap;

    gap: 6px;

    margin-top: 7px;
}

.hu-footer-quick a {
    min-height: 31px;

    display: inline-flex;
    align-items: center;

    padding:
        0
        10px;

    color: var(--hu-green-dark) !important;
    background: #FFFFFF;

    border:
        1px solid
        var(--hu-line);

    border-radius: 7px;

    text-decoration: none !important;

    font-size: 10px;
    font-weight: 600;
}


/* footer columns */

.hu-footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hu-footer-heading,
.hu-footer-subheading {
    display: block;

    color: #748078;

    font-family: var(--hu-mono);
    font-size: 10px;
    line-height: 1.3;
}

.hu-footer-heading {
    margin-bottom: 10px;
}

.hu-footer-subheading {
    margin:
        24px
        0
        8px;
}

.hu-footer-column a {
    min-height: 30px;

    display: flex;
    align-items: center;

    color: #263029 !important;

    text-decoration: none !important;

    font-size: 11px;
    font-weight: 600;
    line-height: 1.35;

    transition:
        color .15s ease,
        transform .15s ease;
}

.hu-footer-column:hover a {
    color: #7D867F !important;
}

.hu-footer-column a:hover,
.hu-footer-column a:focus-visible {
    color: var(--hu-green-dark) !important;

    transform: translateX(2px);
}


/* footer bottom */

.hu-footer-rule {
    height: 1px;

    margin:
        62px
        0
        20px;

    background: var(--hu-line-strong);
}

.hu-footer-bottom {
    min-height: 58px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.hu-footer-copyright {
    display: flex;
    flex-direction: column;

    gap: 3px;
}

.hu-footer-copyright strong {
    color: var(--hu-green-dark);

    font-size: 11px;
    letter-spacing: .08em;
}

.hu-footer-copyright span {
    color: #727C75;

    font-size: 10px;
}

.hu-footer-social {
    display: flex;
    align-items: center;

    gap: 6px;
}

.hu-footer-social a {
    width: 35px;
    height: 35px;

    display: grid;
    place-items: center;

    color: #667269 !important;
    background: transparent;

    border:
        1px solid
        var(--hu-line-strong);

    border-radius: 50%;

    text-decoration: none !important;

    font-size: 13px;

    transition:
        color .15s ease,
        background .15s ease,
        border-color .15s ease,
        transform .15s ease;
}

.hu-footer-social a:hover,
.hu-footer-social a:focus-visible {
    color: #FFFFFF !important;
    background: var(--hu-green);

    border-color: var(--hu-green);

    transform: translateY(-2px);
}


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

@media (max-width: 1390px) {

    .hu-nav-shell,
    .hu-subnav-shell {
        width: min(1440px, calc(100% - 40px));
    }

    .hu-nav-brand span {
        font-size: 22px;
    }

    .hu-nav-trigger,
    .hu-nav-direct {
        padding-inline: 7px;

        font-size: 12px;
    }

    .hu-nav-portal,
    .hu-nav-apply {
        padding-inline: 11px;

        font-size: 11px;
    }
}


@media (max-width: 1240px) {

    .hu-nav-shell {
        min-height: 70px;
    }

    .hu-nav-desktop,
    .hu-nav-portal {
        display: none;
    }

    .hu-nav-actions {
        margin-left: auto;
    }

    .hu-nav-menu-button {
        display: flex;
    }

    .hu-subnav-links > a:not(:last-of-type) {
        display: none;
    }

    .hu-footer-grid {
        grid-template-columns:
            minmax(280px, 1.25fr)
            repeat(2, minmax(180px, 1fr));
    }

    .hu-footer-brand-column {
        grid-row:
            span 2;
    }
}


@media (max-width: 760px) {

    .hu-nav-shell,
    .hu-subnav-shell,
    .hu-footer-shell {
        width:
            min(
                100% - 30px,
                1440px
            );
    }

    .hu-nav-brand img {
        width: 31px;
        height: 38px;
    }

    .hu-nav-brand span {
        font-size: 19px;
    }

    .hu-nav-apply {
        display: none;
    }

    .hu-subnav-context span:last-child {
        display: none;
    }

    .hu-subnav-context span[aria-hidden] {
        display: none;
    }

    .hu-subnav-links > a {
        display: none !important;
    }

    .hu-mobile-nav {
        width: min(92vw, 480px);
    }

    .hu-footer-grid {
        grid-template-columns:
            1fr
            1fr;

        gap:
            46px
            28px;
    }

    .hu-footer-brand-column {
        grid-column:
            1 / -1;
        grid-row: auto;
    }

    .hu-footer-finder {
        max-width: 420px;
    }

    .hu-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}


@media (max-width: 470px) {

    .hu-nav-shell,
    .hu-subnav-shell,
    .hu-footer-shell {
        width:
            min(
                100% - 22px,
                1440px
            );
    }

    .hu-nav-brand span {
        max-width: 140px;

        font-size: 17px;
    }

    .hu-mobile-nav {
        width: 100vw;

        border-left: 0;
    }

    .hu-mobile-nav-head,
    .hu-mobile-nav-scroll,
    .hu-mobile-nav-actions {
        padding-left: 18px;
        padding-right: 18px;
    }

    .hu-global-footer {
        padding-top: 68px;
    }

    .hu-footer-grid {
        grid-template-columns: 1fr;
    }

    .hu-footer-column {
        padding-top: 4px;
    }

    .hu-footer-rule {
        margin-top: 46px;
    }
}


/* ==========================================================
   REDUCED MOTION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

    .hu-global-header *,
    .hu-subnav *,
    .hu-mobile-nav *,
    .hu-global-footer * {
        scroll-behavior: auto !important;

        transition: none !important;
        animation: none !important;
    }
}


/* ==========================================================
   V3 — CLAUDE-ACCURATE LIGHT NAVBAR OVERRIDES
   ========================================================== */

:root {
    --hu-main-nav-h: 78px;
    --hu-sub-nav-h: 46px;
    --hu-claude-bg: #FBFAF7;
    --hu-claude-panel: #FFFFFF;
    --hu-claude-hover: #EEEFEA;
    --hu-claude-ink: #171A18;
    --hu-claude-soft: #8A8F8B;
}

/* 1. Main header: logo LEFT, all nav/actions RIGHT */
.hu-global-header {
    background: rgba(251,250,247,.985) !important;
    color: var(--hu-claude-ink) !important;
}

.hu-nav-shell {
    width: min(1460px, calc(100% - 56px)) !important;
    min-height: var(--hu-main-nav-h) !important;
    gap: 18px !important;
}

.hu-nav-brand {
    flex: none !important;
    color: var(--hu-green-dark) !important;
}

.hu-nav-desktop {
    margin-left: auto !important;
    gap: 2px !important;
}

.hu-nav-actions {
    margin-left: 8px !important;
}

.hu-nav-trigger,
.hu-nav-direct {
    color: #2D312F !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    border-radius: 7px !important;
}

.hu-nav-trigger:hover,
.hu-nav-trigger:focus-visible,
.hu-nav-item.is-open > .hu-nav-trigger,
.hu-nav-direct:hover,
.hu-nav-direct:focus-visible,
.hu-nav-direct.is-current {
    color: var(--hu-green-dark) !important;
    background: rgba(20,129,84,.075) !important;
}

.hu-nav-portal {
    color: #3E4540 !important;
    background: transparent !important;
    border-color: var(--hu-line-strong) !important;
}

.hu-nav-portal:hover {
    color: var(--hu-green-dark) !important;
    background: #F3F5F2 !important;
}

.hu-nav-apply {
    color: #FFFFFF !important;
    background: var(--hu-green-dark) !important;
    border-color: var(--hu-green-dark) !important;
}

.hu-nav-apply:hover {
    background: var(--hu-green) !important;
    border-color: var(--hu-green) !important;
}

/* 2. Dropdowns: smooth, light, centered from trigger area */
.hu-mega {
    top: calc(100% - 20px) !important;
    left: 50% !important;
    right: auto !important;

    width: min(880px, calc(100vw - 56px)) !important;
    padding: 16px !important;

    background: rgba(255,255,255,.995) !important;
    color: #2D322F !important;

    border: 1px solid #ECEDE9 !important;
    border-radius: 13px !important;

    box-shadow: 0 18px 50px rgba(28,43,34,.095) !important;

    transform:
        translate(-50%, -8px)
        scale(.992) !important;

    transform-origin: top left !important;

    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;

    transition:
        opacity .15s ease,
        transform .22s cubic-bezier(.16,1,.3,1),
        visibility 0s linear .22s !important;
}

.hu-mega--compact {
    width: min(620px, calc(100vw - 56px)) !important;
}

.hu-nav-item.is-open > .hu-mega {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;

    transform:
        translate(-50%, 0)
        scale(1) !important;

    transition:
        opacity .15s ease,
        transform .22s cubic-bezier(.16,1,.3,1),
        visibility 0s !important;
}

/* Visual alignment tuning from supplied snapshots */
.hu-nav-item:nth-child(1) > .hu-mega { left: 35% !important; }
.hu-nav-item:nth-child(2) > .hu-mega { left: 50% !important; }
.hu-nav-item:nth-child(3) > .hu-mega { left: 46% !important; }
.hu-nav-item:nth-child(4) > .hu-mega { left: 40% !important; }
.hu-nav-item:nth-child(5) > .hu-mega { left: 42% !important; }
.hu-nav-item:nth-child(6) > .hu-mega { left: 45% !important; }
.hu-nav-item:nth-child(7) > .hu-mega { left: 40% !important; }

/* 3. Group subtitles and separators */
.hu-mega-group {
    border-right: 1px solid #E7E9E5 !important;
}

.hu-mega-label {
    color: #777E79 !important;
    font-family: var(--hu-body) !important;
    font-size: 11px !important;
    font-weight: 500 !important;
}

/* 4. Exact Claude hover behavior requested */
.hu-mega-link {
    min-height: 38px !important;
    padding: 7px 10px !important;
    margin-inline: -10px !important;

    color: var(--hu-claude-ink) !important;

    font-size: 14px !important;
    font-weight: 500 !important;

    border-radius: 5px !important;
}

.hu-mega:hover .hu-mega-link {
    color: var(--hu-claude-soft) !important;
}

.hu-mega .hu-mega-link:hover,
.hu-mega .hu-mega-link:focus-visible {
    color: #111412 !important;
    background: var(--hu-claude-hover) !important;
}

.hu-mega-link.is-current {
    color: var(--hu-green-dark) !important;
    background: var(--hu-green-soft) !important;
}

.hu-external-mark {
    flex: none;
    margin-left: 8px;
    font-size: 11px;
    line-height: 1;
    opacity: .82;
}

/* 5. Both nav bars sticky */
.hu-subnav {
    position: sticky !important;
    top: var(--hu-main-nav-h) !important;
    z-index: 1150 !important;

    background: rgba(251,250,247,.985) !important;

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.hu-subnav-shell {
    width: min(1460px, calc(100% - 56px)) !important;
    min-height: var(--hu-sub-nav-h) !important;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

.hu-subnav-left {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 24px;
}

.hu-subnav-utilities {
    display: flex;
    align-items: center;
    gap: 2px;

    padding-left: 20px;
    border-left: 1px solid var(--hu-line);
}

.hu-subnav-utilities a,
.hu-subnav-explore > button {
    min-height: 34px;

    display: inline-flex;
    align-items: center;

    padding: 0 10px;

    color: #555D58 !important;
    background: transparent;

    border: 0;
    border-radius: 5px;

    text-decoration: none !important;

    font-size: 11px;
    font-weight: 500;

    cursor: pointer;
}

.hu-subnav-utilities a:hover,
.hu-subnav-utilities a:focus-visible,
.hu-subnav-explore > button:hover,
.hu-subnav-explore > button:focus-visible,
.hu-subnav-explore.is-open > button {
    color: #111412 !important;
    background: var(--hu-claude-hover) !important;
}

/* 6. Small Explore menu mirrors Claude utility dropdown */
.hu-subnav-menu {
    width: 270px !important;

    background: #FFFFFF !important;

    border: 1px solid #ECEDE9 !important;
    border-radius: 11px !important;

    box-shadow: 0 16px 40px rgba(28,43,34,.09) !important;
}

.hu-subnav-menu a {
    min-height: 42px !important;

    color: #1F2421 !important;

    border-radius: 6px !important;

    font-size: 12px !important;
    font-weight: 600 !important;
}

.hu-subnav-menu:hover a {
    color: var(--hu-claude-soft) !important;
}

.hu-subnav-menu a:hover,
.hu-subnav-menu a:focus-visible {
    color: #111412 !important;
    background: var(--hu-claude-hover) !important;
}

/* 7. Footer: cleaner Claude-like light editorial tone */
.hu-global-footer {
    background: #F4F5F2 !important;
}

.hu-footer-heading,
.hu-footer-subheading {
    font-family: var(--hu-body) !important;
    font-size: 11px !important;
}

.hu-footer-column a {
    color: #202622 !important;
    font-size: 12px !important;
    font-weight: 500 !important;
}

.hu-footer-column:hover a {
    color: #848B86 !important;
}

.hu-footer-column a:hover,
.hu-footer-column a:focus-visible {
    color: #171A18 !important;
}

/* 8. Tablet/mobile */
@media (max-width: 1240px) {
    :root {
        --hu-main-nav-h: 70px;
        --hu-sub-nav-h: 44px;
    }

    .hu-subnav-left {
        gap: 14px;
    }

    .hu-subnav-utilities a:not(:last-child) {
        display: none;
    }
}

@media (max-width: 760px) {
    .hu-nav-shell,
    .hu-subnav-shell,
    .hu-footer-shell {
        width: min(100% - 30px, 1460px) !important;
    }

    .hu-subnav-context span:last-child,
    .hu-subnav-context span[aria-hidden] {
        display: none;
    }

    .hu-subnav-utilities {
        display: none;
    }
}

@media (max-width: 470px) {
    .hu-nav-shell,
    .hu-subnav-shell,
    .hu-footer-shell {
        width: min(100% - 22px, 1460px) !important;
    }
}


/* ==========================================================
   V4 — FINAL NAVBAR / FOOTER REFINEMENTS
   ========================================================== */

/* A single sticky stack guarantees that BOTH bars remain visible. */
.hu-nav-stack {
    position: sticky;
    z-index: 1600;
    top: 0;
    width: 100%;
}

.hu-nav-stack .hu-global-header,
.hu-nav-stack .hu-subnav {
    position: relative !important;
    top: auto !important;
}

/* Larger, easier-to-read navigation typography. */
.hu-nav-trigger,
.hu-nav-direct {
    font-size: 14px !important;
}

.hu-nav-portal,
.hu-nav-apply {
    font-size: 13px !important;
}

.hu-mega-label {
    font-size: 12px !important;
}

.hu-mega-link {
    font-size: 15px !important;
    line-height: 1.4 !important;
}

.hu-subnav-context,
.hu-subnav-utilities a,
.hu-subnav-explore > button {
    font-size: 12px !important;
}

.hu-subnav-menu a {
    font-size: 13px !important;
}

/*
 * Dropdowns are positioned by JS inside the exact safe area:
 * first main-nav item -> Apply Now button.
 * This prevents a panel from extending beyond the navigation cluster.
 */
.hu-mega {
    position: fixed !important;

    top: var(--hu-mega-top, 58px) !important;
    left: var(--hu-mega-left, 50vw) !important;
    right: auto !important;

    width: var(--hu-mega-width, 720px) !important;
    max-width: calc(100vw - 32px) !important;

    transform:
        translateY(-12px)
        scale(.985) !important;

    transform-origin: top left !important;

    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;

    transition:
        opacity .22s ease,
        transform .34s cubic-bezier(.16,1,.3,1),
        visibility 0s linear .34s !important;
}

.hu-nav-item.is-open > .hu-mega {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;

    transform:
        translateY(0)
        scale(1) !important;

    transition:
        opacity .22s ease,
        transform .34s cubic-bezier(.16,1,.3,1),
        visibility 0s !important;
}

/* Remove previous nth-child positional tuning; JS owns positioning now. */
.hu-nav-item:nth-child(1) > .hu-mega,
.hu-nav-item:nth-child(2) > .hu-mega,
.hu-nav-item:nth-child(3) > .hu-mega,
.hu-nav-item:nth-child(4) > .hu-mega,
.hu-nav-item:nth-child(5) > .hu-mega,
.hu-nav-item:nth-child(6) > .hu-mega,
.hu-nav-item:nth-child(7) > .hu-mega {
    left: var(--hu-mega-left, 50vw) !important;
}

/* Claude-like hover: sibling links grey, hovered one black on light grey. */
.hu-mega:hover .hu-mega-link {
    color: #919793 !important;
}

.hu-mega .hu-mega-link:hover,
.hu-mega .hu-mega-link:focus-visible {
    color: #111412 !important;
    background: #EEEFEA !important;
}

/* Footer: larger readable type. */
.hu-footer-address,
.hu-footer-contact a {
    font-size: 13px !important;
}

.hu-footer-finder label {
    font-size: 11px !important;
}

.hu-footer-finder-control input {
    font-size: 13px !important;
}

.hu-footer-quick a {
    font-size: 11px !important;
}

.hu-footer-heading,
.hu-footer-subheading {
    font-size: 12px !important;
}

.hu-footer-column a {
    font-size: 13px !important;
}

/* Remove AI-looking gradient from the finder button. */
.hu-footer-finder-control button {
    background: var(--hu-green) !important;
}

.hu-footer-finder-control button:hover,
.hu-footer-finder-control button:focus-visible {
    background: var(--hu-green-dark) !important;
}

/* Inline social SVGs — no icon-font dependency. */
.hu-footer-social a svg {
    width: 16px;
    height: 16px;
    display: block;

    fill: currentColor;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hu-footer-social a svg rect,
.hu-footer-social a svg circle {
    fill: none;
}

.hu-footer-social a svg .hu-social-fill-bg {
    fill: #F4F5F2;
    stroke: none;
}

.hu-footer-social a:hover svg .hu-social-fill-bg,
.hu-footer-social a:focus-visible svg .hu-social-fill-bg {
    fill: #FFFFFF;
}

/* ==========================================================
   CLAUDE-LIKE SMALL/LAPTOP NAV STATES
   ========================================================== */

/*
 * At smaller desktop/tablet widths:
 * - hide the full link row
 * - KEEP both Contact Us and Apply Now
 * - show the hamburger
 * This mirrors the supplied Claude snapshots.
 */
@media (max-width: 1240px) {
    .hu-nav-desktop {
        display: none !important;
    }

    .hu-nav-portal,
    .hu-nav-apply {
        display: inline-flex !important;
    }

    .hu-nav-menu-button {
        display: flex !important;
    }

    .hu-nav-actions {
        margin-left: auto !important;
    }
}

/*
 * Very narrow phones:
 * Claude removes the CTA buttons and keeps only brand + hamburger.
 */
@media (max-width: 620px) {
    .hu-nav-portal,
    .hu-nav-apply {
        display: none !important;
    }

    .hu-nav-brand span {
        font-size: 18px !important;
    }
}

/* Slightly larger footer mobile copy. */
@media (max-width: 760px) {
    .hu-footer-column a {
        font-size: 13px !important;
    }
}


/* ==========================================================
   V5 — TARGETED NAVIGATION FIXES
   ========================================================== */

/*
 * Fixed instead of sticky: this remains reliable even when an
 * individual page has an overflow ancestor that would break CSS sticky.
 */
.hu-nav-stack {
    position: fixed !important;
    z-index: 2000 !important;
    top: 0 !important;
    right: 0 !important;
    left: 0 !important;
    width: 100% !important;
}

.hu-nav-stack-spacer {
    width: 100%;
    height: calc(var(--hu-main-nav-h) + var(--hu-sub-nav-h));
    flex: none;
}

/* Material Symbols — exact icons requested. */
.hu-nav-chevron.material-symbols-outlined {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 1 !important;

    color: #7F8781;

    transform: none !important;
    transition:
        transform .22s cubic-bezier(.16,1,.3,1),
        color .16s ease !important;
}

.hu-nav-item.is-open .hu-nav-chevron.material-symbols-outlined,
.hu-subnav-explore.is-open .hu-nav-chevron.material-symbols-outlined {
    transform: rotate(180deg) !important;
}

.open-in-new.material-symbols-outlined {
    flex: none;
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-left: 7px;

    color: currentColor;

    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 1 !important;
}

/* Mobile direct links can contain label + external icon. */
.hu-mobile-direct {
    gap: 14px;
}

.hu-mobile-direct .open-in-new {
    margin-left: auto;
    color: #7B847D;
}

/* The subnav is part of the fixed stack, so it no longer needs sticky. */
.hu-nav-stack .hu-global-header,
.hu-nav-stack .hu-subnav {
    position: relative !important;
    top: auto !important;
}

/* Keep dropdowns above page content but below the mobile drawer. */
.hu-mega,
.hu-subnav-menu {
    z-index: 2050 !important;
}

/* Drawer and backdrop must remain above the fixed header stack. */
.hu-mobile-backdrop {
    z-index: 2090 !important;
}

.hu-mobile-nav {
    z-index: 2100 !important;
}

@media (max-width: 1240px) {
    .hu-nav-stack-spacer {
        height: calc(var(--hu-main-nav-h) + var(--hu-sub-nav-h));
    }
}


/* ==========================================================
   V6 — FINAL NAVBAR / FOOTER REFINEMENTS and coloer
   ===================================================================================================================================================== */
   /* ==========================================================
   HU BRAND COLOR THEME
   Add this at the VERY BOTTOM of hu_public_shell_2026.css
   ========================================================== */


/* ----------------------------------------------------------
   MAIN HEADER
   ---------------------------------------------------------- */

.hu-global-header {
    background: #148154 !important;
    border-bottom-color: rgba(255, 255, 255, 0.16) !important;
}


/* University name */

.hu-nav-brand,
.hu-nav-brand span {
    color: #FFFFFF !important;
}


/* Main navigation links */

.hu-nav-trigger,
.hu-nav-direct {
    color: rgba(255, 255, 255, 0.92) !important;
}


/* Dropdown arrow */

.hu-nav-chevron.material-symbols-outlined {
    color: rgba(255, 255, 255, 0.72) !important;
}


/* Main navigation hover / active */

.hu-nav-trigger:hover,
.hu-nav-trigger:focus-visible,
.hu-nav-item.is-open > .hu-nav-trigger,
.hu-nav-direct:hover,
.hu-nav-direct:focus-visible,
.hu-nav-direct.is-current {
    color: #FFFFFF !important;

    background:
        rgba(255, 255, 255, 0.12) !important;
}


/* ----------------------------------------------------------
   HEADER ACTION BUTTONS
   ---------------------------------------------------------- */

/* Contact Us */

.hu-nav-portal {
    color: #FFFFFF !important;
    background: transparent !important;

    border-color:
        rgba(255, 255, 255, 0.42) !important;
}

.hu-nav-portal:hover,
.hu-nav-portal:focus-visible {
    color: #148154 !important;
    background: #FFFFFF !important;

    border-color: #FFFFFF !important;
}


/* Apply Now */

.hu-nav-apply {
    color: #0F6843 !important;
    background: #FFFFFF !important;

    border-color: #FFFFFF !important;
}

.hu-nav-apply:hover,
.hu-nav-apply:focus-visible {
    color: #FFFFFF !important;
    background: #0F6843 !important;

    border-color: #0F6843 !important;
}


/* Hamburger */

.hu-nav-menu-button {
    color: #FFFFFF !important;
    background: transparent !important;

    border-color:
        rgba(255, 255, 255, 0.45) !important;
}


/* ----------------------------------------------------------
   SECONDARY NAVBAR
   ---------------------------------------------------------- */

.hu-subnav {
    background: #E8F3EE !important;

    border-bottom-color:
        #C9DDD3 !important;
}


.hu-subnav-context,
.hu-subnav-context a,
.hu-subnav-utilities a,
.hu-subnav-explore > button {
    color: #0F6843 !important;
}


/* Sub navbar hover */

.hu-subnav-utilities a:hover,
.hu-subnav-utilities a:focus-visible,
.hu-subnav-explore > button:hover,
.hu-subnav-explore > button:focus-visible,
.hu-subnav-explore.is-open > button {
    color: #0F6843 !important;

    background:
        rgba(20, 129, 84, 0.10) !important;
}


/* Sub-nav external icon */

.hu-subnav .open-in-new {
    color: #2C85B7 !important;
}


/* ----------------------------------------------------------
   DROPDOWNS
   Keep white like Claude — do not make these green.
   ---------------------------------------------------------- */

.hu-mega,
.hu-subnav-menu {
    background: #FFFFFF !important;

    border-color: #D9E0DC !important;
}


/* Dropdown group headings */

.hu-mega-label {
    color: #0F6843 !important;
}


/*
   When hovering the dropdown:
   other items become softer grey.
*/

.hu-mega:hover .hu-mega-link {
    color: #8A938D !important;
}


/*
   Current hovered item:
   black text + very soft HU green background.
*/

.hu-mega .hu-mega-link:hover,
.hu-mega .hu-mega-link:focus-visible {
    color: #111827 !important;

    background: #E8F3EE !important;
}


/* Current page */

.hu-mega-link.is-current {
    color: #0F6843 !important;

    background: #E8F3EE !important;
}


/* External-link icon inside dropdown */

.hu-mega .open-in-new {
    color: #2C85B7 !important;
}


/* ----------------------------------------------------------
   MOBILE SIDE NAVIGATION
   Keep mobile drawer LIGHT for readability.
   ---------------------------------------------------------- */

.hu-mobile-nav {
    background: #FFFFFF !important;
}


/* Mobile University branding */

.hu-mobile-brand,
.hu-mobile-brand span {
    color: #0F6843 !important;
}


/* Mobile primary links */

.hu-mobile-direct,
.hu-mobile-section-trigger {
    color: #202522 !important;
}


/* Mobile hover */

.hu-mobile-direct:hover,
.hu-mobile-section-trigger:hover,
.hu-mobile-section-panel a:hover {
    color: #0F6843 !important;
}


/* Mobile external icons */

.hu-mobile-nav .open-in-new {
    color: #2C85B7 !important;
}


/* Mobile Apply button */

.hu-mobile-primary {
    color: #FFFFFF !important;
    background: #148154 !important;

    border-color: #148154 !important;
}


/* Mobile Student Portal */

.hu-mobile-secondary {
    color: #0F6843 !important;
    background: #FFFFFF !important;

    border-color: #AFC8BB !important;
}


/* ----------------------------------------------------------
   FOOTER
   ---------------------------------------------------------- */

.hu-global-footer {
    color: #FFFFFF !important;

    /* background: #0F6843 !important; */
    background: #2e84b6 !important;


    border-top-color:
        rgba(255, 255, 255, 0.12) !important;
}


/* Footer university branding */

.hu-footer-brand,
.hu-footer-brand span {
    color: #FFFFFF !important;
}


/* Footer normal text */

.hu-footer-address,
.hu-footer-copyright span {
    color:
        rgba(255, 255, 255, 0.70) !important;
}


/* Footer headings */

.hu-footer-heading,
.hu-footer-subheading,
.hu-footer-copyright strong {
    color:
        rgba(255, 255, 255, 0.68) !important;
}


/* Footer links */

.hu-footer-column a,
.hu-footer-contact a {
    color:
        rgba(255, 255, 255, 0.90) !important;
}


/* Claude-like footer hover */

.hu-footer-column:hover a {
    color:
        rgba(255, 255, 255, 0.55) !important;
}


.hu-footer-column a:hover,
.hu-footer-column a:focus-visible,
.hu-footer-contact a:hover {
    color: #FFFFFF !important;
}


/* Footer separator */

.hu-footer-rule {
    background:
        rgba(255, 255, 255, 0.20) !important;
}


/* ----------------------------------------------------------
   FOOTER SEARCH
   ---------------------------------------------------------- */

.hu-footer-finder label {
    color:
        rgba(255, 255, 255, 0.68) !important;
}


.hu-footer-finder-control {
    background: #FFFFFF !important;

    border-color:
        rgba(255, 255, 255, 0.40) !important;
}


.hu-footer-finder-control input {
    color: #202522 !important;
}


/* No gradient */

.hu-footer-finder-control button {
    color: #FFFFFF !important;

    background: #2C85B7 !important;
}


.hu-footer-finder-control button:hover {
    background: #236E98 !important;
}


/* Quick buttons */

.hu-footer-quick a {
    color: #0F6843 !important;
    background: #FFFFFF !important;

    border-color: #FFFFFF !important;
}


/* ----------------------------------------------------------
   SOCIAL ICONS
   ---------------------------------------------------------- */

.hu-footer-social a {
    color:
        rgba(255, 255, 255, 0.78) !important;

    border-color:
        rgba(255, 255, 255, 0.30) !important;
}


.hu-footer-social a:hover,
.hu-footer-social a:focus-visible {
    color: #0F6843 !important;

    background: #FFFFFF !important;

    border-color: #FFFFFF !important;
}

