/* Target desktop views only to preserve the mobile hamburger menu */
@media (min-width: 992px) {
    /* 1. Flatten the main header container */
    .pkp_structure_head {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 15px 30px;
    }

    /* 2. Group the Logo, Nav Links, and Search together */
    .pkp_head_wrapper {
        display: flex;
        flex-direction: row;
        align-items: center;
        flex: 1;
        margin: 0;
    }

    /* 3. Adjust spacing around the Logo */
    .pkp_site_name_wrapper {
        margin-bottom: 0;
        margin-right: 40px;
    }

    /* 4. Align the Primary Nav Row (Links + Search) */
    .pkp_navigation_primary_row {
        display: flex;
        flex-direction: row;
        align-items: center;
        width: 100%;
        margin: 0;
    }

    /* 5. Push Nav Links to the left and Search to the right */
    .pkp_navigation_primary_wrapper {
        margin-right: auto;
    }

    .pkp_search_wrapper {
        margin-left: 20px;
        margin-bottom: 0;
    }

    /* 6. Strip the default top-bar styling from Login/Register */
    .pkp_navigation_user_wrapper {
        display: flex;
        position: static;
        background: transparent;
        padding: 0;
        margin-left: 30px;
    }

    .pkp_navigation_user {
        margin: 0;
        display: flex;
        align-items: center;
    }
}
