/* Align logo and nav menu on the same row */
@media (min-width: 992px) {
    .pkp_head_wrapper .pkp_site_branding_wrapper {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        flex-wrap: nowrap;
    }
    
    /* Ensure the navigation container drops its top block margins */
    .pkp_head_wrapper .pkp_navigation_primary_wrapper {
        margin-top: 0 !important;
        margin-left: auto !important;
    }
}

