
.site-header {
    background-color: var(--sog_navy);
    color: white;
    /* padding: 2.5rem 6.375rem 3.75rem 6.375rem; */
    padding: 2.5rem 0 3.4rem 0;
    text-align: center; /* Center align navigation and title */
    border-bottom: 10px solid var(--yellow);
}

.site-header-logo {
    width: 25.85613rem;
    height: 4.4375rem;
}

.site-header .center-column {
    display: flex;
    justify-content: space-between;
    width: 80%;
    max-width: 80rem;
    margin: 0 auto;
}

.site-header-title {
    font-family: var(--font-family-heading, "Open Sans", sans-serif);
    font-size: 1.875rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.sog-logo {
    width: 15.1875rem;
    height: 4.6875rem;
}

/* Mobile responsiveness for header */
@media screen and (max-width: 768px) {
    .site-header {
        padding: 1.5rem 1rem 2rem 1rem;
    }
    
    .site-header .center-column {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .sog-logo {
        width: 14rem;
        height: auto;
    }
    
    .site-header-logo {
        width: 20rem;
        height: auto;
    }

    .site-header-logo svg {
        width: 100%;
        height: auto;
    }
}

@media screen and (min-width: 769px) and (max-width: 1200px) {
    .site-header {
        padding: 1.5rem 1rem 2rem 1rem;
    }
    
    .header-content {
        gap: 1.5rem;
    }
    
    .sog-logo {
        width: 14rem;
        height: auto;
    }
    
    .site-header-logo {
        width: 20rem;
        height: auto;
    }
}


/* Utility Bar Styles */
.utility-bar {
    background-color: var(--carolina-blue-web);
    height: 3rem;
    display: flex;
    align-items: center;   
}

.utility-bar-inner {
    width: 80%;
    max-width: 80rem;
    margin: 0 auto; 
    display: flex;
    flex-direction: row;
    justify-content: space-between;

    font-family: var(--font-family-heading-utility, "Source Serif 4", serif);
    font-size: var(--font-size-sm);
}

.utility-bar-inner a {
    color: var(--black);
    text-decoration: none;
}

.utility-bar-logo a:hover {
    text-decoration: underline;
    text-underline-offset: 8px;
}

.utility-bar-nav {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 1rem;
    justify-content: center;;
}

.utility-bar-nav li {
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 500;
    text-decoration: underline;
}

.utility-bar-nav li a {
    color: var(--black);
    text-decoration: none;
}

.utility-bar-logo {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    align-items: center;
    color: var(--black);
}

.utility-bar-logo svg {
    margin-top: -4px;
}

@media screen and (max-width: 1200px) {
    .utility-bar-logo a {
        display: none;
    }

    .utility-bar-inner {
        width: 100%;
        padding: 0 0.5rem;
    }
}