/* ---- Header Default Styling ---- */
header {
    background: var(--darkest-surface);
}
/* ---- Primary Header ---- */
.header__primary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
}
.header__primary__logo-link {
    display: flex;
    align-items: center;
    gap: .5rem;
}
.header__primary__logo-link__topgirl-label,
.header__primary__logo-link__gg-label {
    font-size: 1.25rem;
    font-weight: 500;
}
.header__primary__logo-link__gg-label {
    color: var(--accent-purple);
}
.header__primary__note {
    padding: .25rem 1rem;
    border-radius: 100vw;
    background: hsla(219, 100%, 81%, .05);
    text-transform: uppercase;
    font-weight: 500;
    font-size: .875rem;
    color: hsla(219, 100%, 81%, .125);
    user-select: none;
}
.header__primary img {
    border-radius: 30%;
}
/* ---- Secondary Header ---- */
.header__secondary {
    background: var(--darkest-surface);
    position: sticky;
    top: 0;
    z-index: 3;
    border-top: 1px solid var(--dark-surface);
    border-bottom: 1px solid var(--dark-surface);
}
.header__secondary .wrapper {
    display: flex;
    align-items: center;
    padding: 0;
    overflow: auto;
}
.header__secondary a {
    padding: .5rem 1rem;
    transition: background .175s ease-in-out, color .175s ease-in-out;
    color: goldenrod;
    flex-shrink: 0;
    position: relative;
}
.header__secondary a:hover,
.header__secondary a:active {
    background: var(--dark-surface);
}