/* Hide default page titles */
h1.entry-title, 
.page-title,
.site-main > header.page-header {
    display: none !important;
}

/* Organize header to display on one line */
.site-header, 
#masthead {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
    padding: 10px 20px;
}

/* Ensure child elements like logo and navigation don't break lines */
.site-header > *, 
#masthead > * {
    margin: 0 !important;
    padding: 0 10px !important;
}

/* Prevent menu wrapping on desktop */
.main-navigation ul {
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
    padding: 0 !important;
}

.main-navigation li {
    list-style: none !important;
    margin-right: 15px !important;
}