.header.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 0px 12px;
    margin-top: -69.5px;

    background-color: var(--headerBG);
}

@media only screen and (max-width: 767px) {
    .header.content-wrapper {
        margin-top: -60.02px;
    }
}

.header.content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    padding: 12px 0px;
    gap: 12px;
}

.header.logo {
    font-family: "super shape", sans-serif;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    line-height: 100%;

    color: var(--primary-text);
}

.header.menu-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    gap: 24px;
}

.header.action-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;

    gap: 6px;
}

.header.action {
    color: var(--primary-text);
}

.header.action-icon {
    height: 18px;
    aspect-ratio: 1 / 1;

    color: inherit;
}

.post-header.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
    z-index: 999;

    padding: 0px 12px;

    background-color: var(--headerBG);

    backdrop-filter: blur(10px);
    will-change: transform, opacity;
}

.post-header.content {
    display: flex;
    flex-direction: row;

    margin: 12px 0px;

    gap: 6px;
}

.button.post-header {
    width: 100%;
    margin-top: 0px;

    border: 1px solid var(--primary-accent);
}

#prefer.button.post-header {
    color: white;
    background-color: var(--primary-accent);
}

#nonPrefer.button.post-header {
    color: var(--primary-accent);
    background-color: var(--headerBG);

}

#prefer.button.post-header:hover {
    background-color: var(--focus-accent);
}

#nonPrefer.button.post-header:hover {
    background-color: rgba(229, 229, 234, 0.25);
}
