body {
    background-color: var(--page-background);
    color: var(--page-text);
    -webkit-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
    overflow-wrap: normal;
    word-break: normal;
}

* {
    font-family: "Poppins", sans-serif;
}

.page-spacer {
    width: 100%;
}

.page-spacer--50 {
    height: 50px;
}

.page-spacer--80 {
    height: 80px;
}

.page-spacer--100 {
    height: 100px;
}

@media (max-width: 768px) {
    .element-desktop{
        display: none;
    }
}
@media (min-width: 769px) {
    .element-mobile{
        display: none;
    }
}

.global-link-underline{
    font-weight: 700;
}
.global-link-underline:hover{
    text-decoration: underline;
}

.global-divisor{
    display: block;
    height: 1px;
    width: 80vw;
    margin: 100px auto;
    background-color: var(--surface-soft);
}

.global-divisor-mudo{
    display: block;
    height: 1px;
    width: 80vw;
    margin: 60px auto;
    background-color: var(--surface-deep);
}
.private-preview-banner{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 16px;
    width: min(1200px, calc(100% - 32px));
    margin: 24px auto;
    padding: 14px 18px;
    border: 2px solid #D98200;
    border-radius: 12px;
    background: #FFF3D6;
    color: #3D2A00;
    text-align: center;
}

.private-preview-banner strong{
    font-size: 16px;
}

.private-preview-state,
.private-preview-card-status{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 5px 9px;
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.private-preview-state--public,
.private-preview-card-status--public{
    background: #17864C;
}

.private-preview-state--draft,
.private-preview-card-status--draft{
    background: #7A8494;
}

.private-preview-card-status{
    position: absolute;
    z-index: 3;
    top: 10px;
    left: 10px;
}
