/* ── Navigation pill bar ───────────────────────────────────── */

#content-wrap #innova-shell #header #header-right #header-links {
    display: flex;
    background-color: #128DFF;
    border-radius: 2.0625rem;
    margin: 0 0.6875rem;
    box-shadow: 0.1875rem 0.1875rem 0.5rem 0rem rgba(0, 0, 0, 0.25);
}

#content-wrap #innova-shell #header #header-right #header-links .header-link {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    padding: 1.4375rem 1.5rem;
    border-radius: 1.25rem;
    position: relative;
    transition: 0.3s ease-in-out;
}

#content-wrap #innova-shell #header #header-right #header-links .header-link:hover {
    background-color: #4D4D4D;
    border-radius: inherit;
}

#content-wrap #innova-shell #header #header-right #header-links .header-link .title {
    max-width: 12.075rem;
    font-size: 1.375rem;
    line-height: 2rem;
}

#content-wrap #innova-shell #header #header-right #header-links .header-link .icon {
    margin-left: 1.5rem;
}

/* ── Dropdown within nav link ──────────────────────────────── */
#header-links .header-link .header-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: #E3EDFF;
    border-radius: 0 0 1.25rem 1.25rem;
    transition: 0.3s ease-in-out;
    overflow: hidden;
    z-index: 99999;
}

#header-links .header-link .header-dropdown a {
    display: block;
    padding: 13px 1.5rem;
    text-decoration: none;
    color: #4D4D4D;
}

#header-links .header-link .header-dropdown a:hover {
    background: #0058FF;
    color: #fff;
}

#header-links .header-link[data-dropdown]:hover .header-dropdown {
    display: block;
}

#header-links .header-link[data-dropdown]:hover {
    border-radius: 1.25rem 1.25rem 0 0 !important;
}

/* ── Desktop (≥ 767px) ─────────────────────────────────────── */
@media (min-width: 767px) {
    #content-wrap #innova-shell #header #header-right #header-links {
        border-radius: 350px;
        height: 70px;
    }

    #content-wrap #innova-shell #header #header-right #header-links .header-link {
        border-radius: 0;
    }

    #content-wrap #innova-shell #header #header-right #header-links .header-link:first-child {
        padding-right: 35px;
    }

    #content-wrap #innova-shell #header #header-right #header-links .header-link:last-child {
        padding-left: 35px;
    }

    #content-wrap #innova-shell #header #header-right #header-links .header-link .title {
        max-width: 180px;
        font-size: 21px;
        line-height: 20px;
        margin-top: 7px;
    }

    #header-links .header-link[data-dropdown]:hover {
        border-radius: inherit !important;
    }
}

/* ── Mobile (< 767px) ──────────────────────────────────────── */
@media (max-width: 767px) {
    #content-wrap #innova-shell #header #header-right #header-links {
        display: none;
        border-radius: 1.25rem;
    }

    #content-wrap #innova-shell #header #header-right #header-links.open {
        display: block;
        position: absolute;
        right: 3.2rem;
        z-index: 10000;
        width: calc(100% - 7rem);
    }

    #content-wrap #innova-shell #header #header-right #header-links .header-link {
        display: block;
        text-align: right;
        line-height: 18px;
        padding: 10px;
        width: 100%;
    }

    #content-wrap #innova-shell #header #header-right #header-links .header-link + .header-link::before {
        border-top: 1px solid #fff;
        content: ' ';
        display: block;
        width: 90%;
        margin-bottom: 7px;
    }

    /* Hamburger button */
    #hamburger-btn {
        height: 60px;
        width: 60px;
        border-radius: 1.1625rem;
        background-color: #128DFF;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: space-evenly;
        cursor: pointer;
        border: none;
        padding: 12px;
    }

    #hamburger-btn span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: #fff;
        border-radius: 3px;
    }
}

@media (min-width: 767px) {
    #hamburger-btn {
        display: none;
    }
}
