/* =========================
   ESTILO GERAL DOS SELOS
========================= */

.wp-block-heading.pointer,
.wp-block-query-title,
.widget-title,
.page-title,
.archive-title,
.entry-title {

    display: inline-flex;
    align-items: center;

    border-radius: 25px 25px 25px 25px;

    padding: 8px 26px !important;

    line-height: 1.1 !important;

    overflow: hidden;
}

/* ESCONDE COMPLETAMENTE O TEXTO ORIGINAL */

.wp-block-query-title {

    color: transparent !important;

    position: relative;
}

/* REEXIBE APENAS O NOME DA CATEGORIA */

.wp-block-query-title span {

    color: #fff !important;

    font-size: 28px;

    line-height: 1;

    font-weight: 700;

    letter-spacing: 0.5px;

    position: relative;

    margin-left: -125px;

    display: inline-block;
}

/* CORES DAS CATEGORIAS */

body.category-saude .wp-block-query-title {
    background: #ebad19;
}

body.category-cinema-e-tv .wp-block-query-title {
    background: #e61b71;
}

body.category-tecnologia .wp-block-query-title {
    background: #355da8;
}

/* AJUSTES MOBILE */

@media (max-width: 768px) {

    .wp-block-query-title span {

        font-size: 20px;

        margin-left: -78px;
    }

}

/* =========================
   TRADUÇÕES / LIMPEZA
========================= */

/* REMOVE "Published by" e "on" */
.wp-block-group p.has-x-small-font-size {
    display: none !important;
}

/* REMOVE AUTOR */
.wp-block-post-author {
    display: none !important;
}

/* READ MORE */
.wp-block-post-excerpt__more-link {
    font-size: 0 !important;
}

.wp-block-post-excerpt__more-link::after {
    content: "Leia mais";
    font-size: 16px;
    font-weight: 600;
}

/* =========================
   NAVEGAÇÃO POSTS (CORRIGIDO)
========================= */

/* ESCONDE TEXTO ORIGINAL (Next Post / Previous Post) */
.post-navigation-link__label {
    font-size: 0 !important;
}

/* NOVO TEXTO - PRÓXIMO POST */
.post-navigation-link-next .post-navigation-link__label::before {
    content: "Próximo post";
    font-size: 14px;
    font-weight: 600;
}

/* NOVO TEXTO - POST ANTERIOR */
.post-navigation-link-previous .post-navigation-link__label::before {
    content: "Post anterior";
    font-size: 14px;
    font-weight: 600;
}
/* OCULTA APENAS O TÍTULO "DESTAQUES" */

h2.wp-block-heading.pointer.has-rubik-font-family.has-medium-font-size {
    display: none !important;
}
/* =========================
   HEADER DAS CATEGORIAS
========================= */

/* CINEMA E TV */
body.category-cinema-e-tv:not(.single-post)
header.wp-block-template-part > div {
    background: #e61b71 !important;
}

/* SAÚDE */
body.category-saude:not(.single-post)
header.wp-block-template-part > div {
    background: #ebad19 !important;
}

/* TECNOLOGIA */
body.category-tecnologia:not(.single-post)
header.wp-block-template-part > div {
    background: #355da8 !important;
}

/* =========================
   BLOCO DOS POSTS
========================= */

/* CINEMA E TV */
body.single-post.category-cinema-e-tv
.wp-block-group.has-accent-1-background-color {
    background-color: #e61b71 !important;
}

/* SAÚDE */
body.single-post.category-saude
.wp-block-group.has-accent-1-background-color {
    background-color: #ebad19 !important;
}

/* TECNOLOGIA */
body.single-post.category-tecnologia
.wp-block-group.has-accent-1-background-color {
    background-color: #355da8 !important;
}
/* =========================
   CHAPÉUS DA HOME
========================= */

/* SAÚDE */
.post.category-saude .wp-block-post-terms,
.post.category-saude .wp-block-post-terms a {
    background: #ebad19 !important;
}

/* CINEMA E TV */
.post.category-cinema-e-tv .wp-block-post-terms,
.post.category-cinema-e-tv .wp-block-post-terms a {
    background: #e61b71 !important;
}

/* TECNOLOGIA */
.post.category-tecnologia .wp-block-post-terms,
.post.category-tecnologia .wp-block-post-terms a {
    background: #355da8 !important;
}
/* =========================
   TEXO BRANCO NAS TAGS
========================= */

.wp-block-post-terms,
.wp-block-post-terms a,
.wp-block-post-terms__separator {
    color: #fff !important;
}
/* =========================
   ESPAÇAMENTO DOS CHAPÉUS
========================= */

.wp-block-post-terms {
    padding-left: 15px !important;
    padding-right: 15px !important;

    border-radius: 15px;
}
/* =========================
   TÍTULO "LEIA TAMBÉM"
========================= */

h2.wp-block-heading.pointer.has-medium-font-size {
    background: #355da8 !important;
    color: #fff !important;

    display: inline-flex;
    align-items: center;

    padding: 8px 26px !important;

    border-radius: 25px;

    line-height: 1.1 !important;

    text-transform: uppercase;
}

/* GARANTE TEXTO BRANCO NO STRONG */
h2.wp-block-heading.pointer.has-medium-font-size strong {
    color: #fff !important;
}