.header-content {
    width: 80%;
    margin: 0 auto;
    padding-top: 2.5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
}

.header-logo {
    margin-right: auto;
}

.header-button {
    width: fit-content !important;
}

.header-container a {
    text-decoration: none;
    color: black;
}

.header-nav-icon {
    width: 16pt;
    height: 16pt;
    font-size: 16pt;
    text-align: center;
}

.header-overlay {
    display: none;
    flex-direction: column;
    flex-wrap: nowrap;
    background-color: #F7F0EB;
    width: 100%;
    position: relative;
    z-index: 1;
    gap: 0.5rem;
    padding: 1rem;
    align-items: center;
}

/* Breakpoint visibility switching */

.header-visible-desktop {
    display: block;
}

.header-visible-mobile {
    display: none;
}

@media (max-width: 767px) {
    .header-logo {
        width: 30%;
    }
}

@media (max-width: 1220px) {
    .header-visible-desktop {
        display: none !important;
    }

    .header-visible-mobile {
        display: block !important;
    }
}