/* Header Layout Override - Loads last to ensure it takes precedence */

/* Force the header content to use flexbox with proper alignment */
.header-content {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    height: 100% !important;
    position: relative !important;
    max-width: 1600px !important;
}

/* Brand positioning - far left */
.site-brand {
    flex: 0 0 auto !important;
    order: 1 !important;
}

/* Navigation positioning - center */
.site-nav-center {
    flex: 1 !important;
    display: flex !important;
    justify-content: center !important;
    order: 2 !important;
}

/* CTA buttons positioning - far right */
.site-nav-right {
    flex: 0 0 auto !important;
    order: 3 !important;
}

/* Ensure the nav list is properly centered */
.site-nav-center .nav-list {
    display: flex !important;
    gap: 1.5rem !important;
    align-items: center !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

/* Ensure CTA buttons are properly aligned */
.site-nav-right {
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
}
