/*
Theme Name: Mente Acima Pro
Author: Seu Nome
Version: 1.0
*/
/* ==================================================
FONTES
================================================== */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&family=Karla:wght@300;400;600&display=swap');


/* ==================================================
RESET
================================================== */

*{
box-sizing:border-box;
}

body{
margin:0;
font-family:'Open Sans',sans-serif;
color:#222;
background:#fff;
padding-top:100px;
overflow-x:hidden;
}

img{
max-width:100%;
height:auto;
display:block;
}

.container{
max-width:1200px;
margin:auto;
padding:0 20px;
}


/* ==================================================
TIPOGRAFIA
================================================== */

h1,h2,h3{
font-weight:700;
margin:0;
}
/* =========================================
RESET CONTROLADO DO MAIS LIDOS (CORRETO)
========================================= */

.most-read,
.most-read *{
    box-sizing:border-box;
}

/* REMOVE BUG sem quebrar o layout */
.most-read img{
    max-width:100% !important;
}
/* PADRÃO DEFINITIVO DAS THUMBS */

.popular-item .thumb-wrap{
aspect-ratio:1/1 !important;
overflow:hidden;
}

.popular-item .thumb-wrap img{
width:100% !important;
height:100% !important;
object-fit:cover !important;
display:block;
}

/* GRID */
.most-read .popular-grid{
    display:grid !important;
    grid-template-columns:repeat(3,1fr) !important;
    gap:28px !important;
}

/* CARD */
.most-read .popular-card{
    display:block !important;
    position:relative;
}

/* THUMB */
.most-read .post-thumb{
    position:relative !important;
    overflow:visible !important;
}

/* IMAGEM — FORÇA TAMANHO IGUAL */
.most-read .post-thumb img{
    width:100% !important;
    height:220px !important;
    object-fit:cover !important;
    display:block !important;
    border-radius:12px;
}

/* NUMERAÇÃO (METADE FORA) */
.most-read .post-rank{
    position:absolute !important;

    top:0 !important;
    left:0 !important;

    transform:translate(-40%,-40%) !important;

    width:42px !important;
    height:42px !important;

    background:#000 !important;
    color:#fff !important;

    border-radius:50% !important;

    display:flex !important;
    align-items:center;
    justify-content:center;

    font-weight:700 !important;
    font-size:15px !important;

    z-index:10 !important;
}

/* REMOVE categoria da imagem */
.most-read .post-thumb .post-category{
    display:none !important;
}

/* CATEGORIA (ACIMA DO TÍTULO) */
.most-read .post-info .post-category{
    display:block !important;
    position:static !important;

    font-size:11px !important;
    font-weight:600 !important;
    color:#666 !important;

    text-transform:uppercase;
    letter-spacing:.4px;

    margin:14px 0 10px !important;
}

/* TÍTULO */
.most-read .post-info h3{
    font-family:'Open Sans', sans-serif !important;
    font-weight:700 !important;
    font-size:17px !important;
    line-height:1.4 !important;
    margin:0 !important;
}

/* REMOVE RESUMO */
.most-read .post-excerpt{
    display:none !important;
}
/* =========================================
FIX HARD — MAIS LIDOS (BLINDADO)
========================================= */

/* CONTAINER */
.most-read{
    position:relative;
    z-index:1;
}

/* GRID */
.most-read .popular-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

/* CARD */
.most-read .popular-card{
    position:relative;
    display:block;
}

/* LINK NÃO PODE SER FLEX NEM GRID */
.most-read .popular-card a{
    display:block !important;
}

/* THUMB (BASE REAL) */
.most-read .post-thumb{
    position:relative;
    width:100%;
    height:220px; /* <<< ALTURA REAL DEFINIDA */
    overflow:visible; /* permite a bolinha sair */
}

/* IMAGEM (FORÇADA MESMO) */
.most-read .post-thumb img{
    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:cover;

    display:block;

    border-radius:12px;
}

/* REMOVE QUALQUER REGRA GLOBAL QUEBRADA */
.most-read img{
    max-width:unset !important;
}

/* NUMERAÇÃO METADE FORA */
.most-read .post-rank{
    position:absolute;

    top:0;
    left:0;

    transform:translate(-45%,-45%); /* <<< AGORA FUNCIONA */

    width:44px;
    height:44px;

    background:#000;
    color:#fff;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-weight:700;
    font-size:16px;

    z-index:20;
}

/* REMOVE categoria da imagem */
.most-read .post-thumb .post-category{
    display:none !important;
}

/* TEXTO */
.most-read .post-info{
    margin-top:14px;
}

/* CATEGORIA */
.most-read .post-info .post-category{
    display:block;
    font-size:11px;
    font-weight:600;
    color:#666;
    text-transform:uppercase;
    margin-bottom:10px;
}

/* TÍTULO */
.most-read .post-info h3{
    font-family:'Open Sans', sans-serif;
    font-weight:700;
    font-size:17px;
    line-height:1.4;
}

/* REMOVE RESUMO */
.most-read .post-excerpt{
    display:none;
}

h1{font-size:38px;}
h2{font-size:28px;}
h3{font-size:20px;}

a{
text-decoration:none;
color:#111;
}


/* ==================================================
HEADER FIXO
================================================== */

.main-header{
position:fixed;
top:0;
left:0;
width:100%;
height:90px;
background:#fff;
z-index:9999;
border-bottom:1px solid #eee;
display:flex;
align-items:center;
transition:all .3s ease;
}

body.admin-bar .main-header{
top:32px;
}

.header-container{
max-width:1200px;
margin:auto;
padding:8px 20px;
display:flex;
align-items:center;
justify-content:space-between;
}

.logo-area img{
height:46px;
width:auto;
}


/* ==================================================
MENU
================================================== */

.menu{
list-style:none;
display:flex;
gap:40px;
margin:0;
padding:0;
}

.menu li a{
text-transform:uppercase;
font-size:14px;
font-weight:600;
letter-spacing:.6px;
}


/* ==================================================
HERO PORTAL
================================================== */

.hero-portal{
margin-bottom:50px;
}

.hero-grid{

display:grid;

grid-template-columns:2fr 1fr;
grid-template-rows:1fr 1fr;

gap:20px;

}

/* POST PRINCIPAL */

.hero-1{
grid-column:1;
grid-row:1 / span 2;
position:relative;
overflow:hidden;
}

/* POSTS LATERAIS */

.hero-2{
grid-column:2;
grid-row:1;
position:relative;
overflow:hidden;
}

.hero-3{
grid-column:2;
grid-row:2;
position:relative;
overflow:hidden;
}

/* IMAGEM */

.hero-thumb img{
width:100%;
height:100%;
object-fit:cover;
display:block;
transition:transform .5s ease;
}

.hero-post:hover img{
transform:scale(1.06);
}

/* GRADIENTE */

.hero-gradient{
position:absolute;

left:0;
right:0;
bottom:0;

height:40%;

background:linear-gradient(
to top,
rgba(0,0,0,.92) 0%,
rgba(0,0,0,.65) 40%,
rgba(0,0,0,.25) 70%,
rgba(0,0,0,0) 100%
);

pointer-events:none;
}
.hero-gradient{
pointer-events:none;
}

/* TEXTO */

.hero-content{
position:absolute;
bottom:20px;
left:20px;
right:20px;
color:#fff;
}

.hero-category{
display:inline-block;
font-size:11px;
text-transform:uppercase;
background:#c9a14a;
color:#fff;
padding:4px 8px;
margin-bottom:8px;
}

.hero-title{
font-size:28px;
line-height:1.2;
color:#fff;
}

.hero-2 .hero-title,
.hero-3 .hero-title{
font-size:18px;
}

/* ==================================================
TRENDING DISCOVER (OTIMIZADO PORTAL)
================================================== */

.trending-discover{
    margin:60px auto;
    max-width:1200px;
}

.section-title{
    font-size:22px;
    margin-bottom:20px;
}

/* GRID */
.trending-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

/* CARD */
.trending-item{
    display:flex;
    flex-direction:column;
}

/* IMAGEM */
.trending-item img{
    width:100%;
    height:150px;
    object-fit:cover;
    border-radius:6px;
}

/* CONTEÚDO */
.trending-item .card-content{
    margin-top:8px;
}

/* CATEGORIA (PADRÃO EDITORIAL) */
.trending-item .category{
    font-size:12px;
    color:#777;
    display:block;
    margin-bottom:4px;
}

/* TÍTULO */
.trending-item h3{
    font-size:16px;
    line-height:1.3;
    margin:4px 0 6px;
}

/* RESUMO */
.trend-excerpt{
    font-size:14px;
    line-height:1.5;
    color:#555;
    text-align:left;
}

/* CAPITULAR (EFEITO REVISTA) */
.trend-excerpt::first-letter{
    float:left;
    font-size:28px;
    line-height:1;
    padding-right:5px;
    font-weight:bold;
}

/* CTA */
.read-more{
    display:block;
    margin-top:8px;
    font-size:13px;
    font-weight:600;
    text-align:right;
    color:#111;
}

.read-more:hover{
    opacity:0.7;
}

/* =========================
RESPONSIVO
========================= */

/* Tablet */
@media (max-width:1024px){
    .trending-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

/* Mobile */
@media (max-width:600px){
    .trending-grid{
        grid-template-columns:1fr;
    }
}

/* ==================================================
VISUAL STRIP
================================================== */

.visual-strip{
margin:50px auto;
max-width:1200px;
}

.visual-grid{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:10px;
}

.visual-item img{
height:120px;
object-fit:cover;
transition:opacity .3s;
}

.visual-item:hover img{
opacity:.85;
}


/* ==================================================
POSTS RECENTES
================================================== */

.recent-posts{
max-width:1200px;
margin:60px auto;
}

.posts-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.post-card img{
height:220px;
object-fit:cover;
margin-bottom:10px;
}

.post-card h3{
font-size:18px;
line-height:1.4;
}
/*
Theme Name: Mente Acima Pro
Author: Seu Nome
Version: 1.0
*/
/* ==================================================
FONTES
================================================== */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&family=Karla:wght@300;400;600&display=swap');


/* ==================================================
RESET
================================================== */

*{
box-sizing:border-box;
}

body{
margin:0;
font-family:'Open Sans',sans-serif;
color:#222;
background:#fff;
padding-top:100px;
overflow-x:hidden;
}

img{
max-width:100%;
height:auto;
display:block;
}

.container{
max-width:1200px;
margin:auto;
padding:0 20px;
}


/* ==================================================
TIPOGRAFIA
================================================== */

h1,h2,h3{
font-weight:700;
margin:0;
}

h1{font-size:38px;}
h2{font-size:28px;}
h3{font-size:20px;}

a{
text-decoration:none;
color:#111;
}


/* ==================================================
HEADER FIXO
================================================== */

.main-header{
position:fixed;
top:0;
left:0;
width:100%;
height:90px;
background:#fff;
z-index:9999;
border-bottom:1px solid #eee;
display:flex;
align-items:center;
transition:all .3s ease;
}

body.admin-bar .main-header{
top:32px;
}

.header-container{
max-width:1200px;
margin:auto;
padding:8px 20px;
display:flex;
align-items:center;
justify-content:space-between;
}

.logo-area img{
height:46px;
width:auto;
}


/* ==================================================
MENU
================================================== */

.menu{
list-style:none;
display:flex;
gap:40px;
margin:0;
padding:0;
}

.menu li a{
text-transform:uppercase;
font-size:14px;
font-weight:600;
letter-spacing:.6px;
}


/* ==================================================
HERO PORTAL
================================================== */

.hero-portal{
margin-bottom:50px;
}

.hero-grid{

display:grid;

grid-template-columns:2fr 1fr;
grid-template-rows:1fr 1fr;

gap:20px;

}

/* POST PRINCIPAL */

.hero-1{
grid-column:1;
grid-row:1 / span 2;
position:relative;
overflow:hidden;
}

/* POSTS LATERAIS */

.hero-2{
grid-column:2;
grid-row:1;
position:relative;
overflow:hidden;
}

.hero-3{
grid-column:2;
grid-row:2;
position:relative;
overflow:hidden;
}

/* IMAGEM */

.hero-thumb img{
width:100%;
height:100%;
object-fit:cover;
display:block;
transition:transform .5s ease;
}

.hero-post:hover img{
transform:scale(1.06);
}

/* GRADIENTE */

.hero-gradient{
position:absolute;

left:0;
right:0;
bottom:0;

height:40%;

background:linear-gradient(
to top,
rgba(0,0,0,.92) 0%,
rgba(0,0,0,.65) 40%,
rgba(0,0,0,.25) 70%,
rgba(0,0,0,0) 100%
);

pointer-events:none;
}
.hero-gradient{
pointer-events:none;
}

/* TEXTO */

.hero-content{
position:absolute;
bottom:20px;
left:20px;
right:20px;
color:#fff;
}

.hero-category{
display:inline-block;
font-size:11px;
text-transform:uppercase;
background:#c9a14a;
color:#fff;
padding:4px 8px;
margin-bottom:8px;
}

.hero-title{
font-size:28px;
line-height:1.2;
color:#fff;
}

.hero-2 .hero-title,
.hero-3 .hero-title{
font-size:18px;
}

/* ==================================================
TRENDING DISCOVER
================================================== */

.trending-discover{
margin:60px auto;
max-width:1200px;
}

.section-title{
font-size:22px;
margin-bottom:20px;
}

.trending-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
}

.trending-item img{
height:150px;
object-fit:cover;
margin-bottom:10px;
}

.trending-item h3{
font-size:16px;
}


/* ==================================================
VISUAL STRIP
================================================== */

.visual-strip{
margin:50px auto;
max-width:1200px;
}

.visual-grid{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:10px;
}

.visual-item img{
height:120px;
object-fit:cover;
transition:opacity .3s;
}

.visual-item:hover img{
opacity:.85;
}


/* ==================================================
POSTS RECENTES
================================================== */

.recent-posts{
max-width:1200px;
margin:60px auto;
}

.posts-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.post-card img{
height:220px;
object-fit:cover;
margin-bottom:10px;
}

.post-card h3{
font-size:18px;
line-height:1.4;
}


/* ==================================================
MAIS LIDOS
================================================== */

.popular-posts{
max-width:1200px;
margin:60px auto;
}

.popular-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
}

.popular-item img{
height:120px;
object-fit:cover;
margin-bottom:8px;
}

.popular-item h4{
font-size:15px;
}


/* ==================================================
BLOCOS DE CATEGORIA
================================================== */

.category-block{
max-width:1200px;
margin:60px auto;
}

.category-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}


/* ==================================================
EXPLORAR TEMAS
================================================== */

.explore-topics{
max-width:900px;
margin:70px auto;
text-align:center;
}

.topics-grid{
display:flex;
flex-wrap:wrap;
gap:12px;
justify-content:center;
}

.topic-item{
background:#f2f2f2;
padding:8px 14px;
border-radius:20px;
font-size:14px;
}


/* ==================================================
SINGLE POST
================================================== */

.single-post article{
max-width:760px;
margin:auto;
padding:40px 20px;
}

.single-post p{
margin-bottom:1.7em;
}

.single-post h2{
margin-top:2em;
}


/* ==================================================
SNIPPET BOX
================================================== */

.snippet-box{
border:1px solid #e5e5e5;
background:#f8f8f8;
padding:20px;
margin:2.5em 0;
border-radius:6px;
}


/* ==================================================
FOOTER
================================================== */

.ma-footer{
background:#111;
color:#fff;
padding:60px 20px;
text-align:center;
}

.ma-footer-container{
max-width:1200px;
margin:auto;
}

.ma-footer-logo img{
max-width:160px;
margin-bottom:20px;
}

.ma-footer-links a{
color:#ccc;
margin:0 10px;
font-size:14px;
}

.ma-footer-copy{
font-size:13px;
opacity:.7;
margin-top:20px;
}


/* ==================================================
RESPONSIVO
================================================== */

@media(max-width:900px){

.hero-grid{
grid-template-columns:1fr;
}

.trending-grid{
grid-template-columns:1fr 1fr;
}

.posts-grid{
grid-template-columns:1fr;
}

.category-grid{
grid-template-columns:1fr 1fr;
}

.visual-grid{
grid-template-columns:repeat(3,1fr);
}

}
/* esconder search e menu mobile inicialmente */

.search-bar{
display:none;
}

.mobile-menu{
display:none;
}

/* garantir que o header não expanda */

.main-header{
height:auto;
}

/* espaço real para o header */

body{
padding-top:85px;
}
.main-header{
transition:all .3s ease;
}

.header-small{
padding:5px 0;
}

.header-small .logo-area img{
height:36px;
}
/* =================================
HEADER TAMANHO CONTROLADO
================================= */

.main-header{
height:95px;
display:flex;
align-items:center;
transition:all .3s ease;
}

.header-container{
height:95px;
}

/* LOGO */

.logo-area img{
height:100px;
width:auto;
}

/* HEADER QUANDO ROLA */

.header-small{
height:70px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.header-small .logo-area img{
height:42px;
}

/* AJUSTE HERO */

.home-main{
margin-top:30px;
}
.header-container{
height:90px;
}
.hero-premium{
margin-top:20px;
}
/* ===============================
HEADER PORTAL MODERNO
=============================== */

.main-header{
background:#fff;
border-bottom:1px solid #e9e9e9;
box-shadow:0 2px 10px rgba(0,0,0,.05);
}

/* container central */

.header-container{
max-width:1200px;
margin:auto;
padding:8px 20px;
display:flex;
align-items:center;
justify-content:space-between;
}

/* logo menor */

.logo-area img{
height:42px;
width:auto;
}

/* menu horizontal */

.desktop-menu ul{
display:flex;
align-items:center;
gap:22px;
list-style:none;
margin:0;
padding:0;
}

/* links */

.desktop-menu a{
font-size:13px;
font-weight:600;
letter-spacing:.4px;
text-transform:uppercase;
color:#222;
text-decoration:none;
}

/* hover */

.desktop-menu a:hover{
color:#c40000;
}

/* dropdown */

.desktop-menu li{
position:relative;
}

.desktop-menu .sub-menu{
position:absolute;
top:38px;
left:0;
background:#fff;
padding:15px 20px;
border-radius:6px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
display:none;
flex-direction:column;
gap:8px;
min-width:220px;
}

/* mostrar dropdown */

.desktop-menu li:hover > .sub-menu{
display:flex;
}

/* sub links */

.desktop-menu .sub-menu a{
font-size:13px;
font-weight:500;
text-transform:none;
}
body{
padding-top:90px;
}

/* =================================
HERO PORTAL PROFISSIONAL
================================= */

.hero-portal{
margin-bottom:50px;
}

.hero-grid{

display:grid;

grid-template-columns:2fr 1fr;
grid-template-rows:320px 320px;

gap:20px;

}

/* estrutura */

.hero-post{
position:relative;
overflow:hidden;
border-radius:10px;
}

/* destaque principal */

.hero-1{
grid-row:1 / span 2;
}

/* imagem */

.hero-thumb,
.hero-thumb img{
width:100%;
height:100%;
}

.hero-thumb img{
object-fit:cover;
transition:transform .6s ease;
}

.hero-post:hover img{
transform:scale(1.05);
}

/* gradiente */

.hero-gradient{
position:absolute;
bottom:0;
left:0;
right:0;
height:65%;

background:linear-gradient(
to top,
rgba(0,0,0,.95),
rgba(0,0,0,.4),
transparent
);
}

/* conteúdo */

.hero-content{
position:absolute;
bottom:0;
left:0;
right:0;

padding:24px;

color:#fff;
z-index:2;
}

/* categoria */

.hero-category{

display:inline-block;

font-size:12px;
font-weight:600;

text-transform:uppercase;

background:#e60023;
color:#fff;

padding:4px 8px;

margin-bottom:10px;

}

/* título */

.hero-title{
font-size:30px;
font-weight:700;
line-height:1.25;
color:#fff;
}

/* títulos menores */

.hero-2 .hero-title,
.hero-3 .hero-title{
font-size:20px;
}
/* ===== FOOTER ===== */

.ma-footer{
background:#111;
color:#fff;
padding:50px 20px 35px;
margin-top:60px;
}

.ma-footer-container{
max-width:1200px;
margin:auto;
text-align:center;
display:flex;
flex-direction:column;
align-items:center;
gap:25px;
}

/* logo */

.ma-footer-logo img{
max-width:180px;
height:auto;
}

/* redes sociais */

.ma-footer-socials ul{
display:flex;
justify-content:center;
gap:18px;
padding:0;
margin:0;
list-style:none;
}

.ma-footer-socials a{
color:#fff;
font-size:18px;
transition:.3s;
}

.ma-footer-socials a:hover{
color:#e60023;
}

/* links institucionais */

.ma-footer-menu{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:22px;
padding:0;
margin:0;
list-style:none;
}

.ma-footer-menu a{
color:#888;
font-size:14px;
text-decoration:none;
}

.ma-footer-menu a:hover{
color:#fff;
}

/* copyright */

.ma-footer-copy{
font-size:13px;
color:#fff
}

/* botão topo */

.ma-footer-top{
position:fixed;
bottom:25px;
right:25px;
background:#e60023;
color:#fff;
border:none;
border-radius:50%;
width:42px;
height:42px;
font-size:18px;
cursor:pointer;
transition:.3s;
}

.ma-footer-top:hover{
transform:translateY(-3px);
}
/* =================================
HERO RESPONSIVO
================================= */

@media (max-width:768px){

.hero-grid{

display:grid;

grid-template-columns:1fr;
grid-template-rows:auto;

gap:16px;

}

/* destaque */

.hero-1{
grid-column:auto;
grid-row:auto;
height:340px;
}

/* laterais */

.hero-2,
.hero-3{
height:220px;
}

/* títulos */

.hero-title{
font-size:22px;
}

.hero-2 .hero-title,
.hero-3 .hero-title{
font-size:18px;
}

}
.hero-post{
position:relative;
overflow:hidden;
}

.hero-post a{
position:absolute;
inset:0;
z-index:3;
}

.hero-content{
position:absolute;
bottom:0;
left:0;
right:0;
padding:24px;
z-index:4;
}

.hero-gradient{
position:absolute;
left:0;
right:0;
bottom:0;
height:40%;

background:linear-gradient(
to top,
rgba(0,0,0,.92) 0%,
rgba(0,0,0,.65) 40%,
rgba(0,0,0,.25) 70%,
rgba(0,0,0,0) 100%
);

pointer-events:none;
z-index:2;
}
/* ==================================================
PADRÃO VISUAL DO PORTAL
(ADICIONADO SEM QUEBRAR O CSS EXISTENTE)
================================================== */

:root{
--vermelho-portal:#e60023;
--grafite:#333;
}


/* ==================================================
TÍTULOS DE BLOCO PADRÃO
================================================== */

.section-title{

font-family:'Open Sans',sans-serif;
font-size:22px;
font-weight:700;

margin:50px 0 25px;

position:relative;
padding-left:18px;

}

.section-title:before{

content:"";
position:absolute;

left:0;
top:4px;

width:6px;
height:22px;

background:var(--vermelho-portal);

border-radius:3px;

}

.section-title:after{

content:"";
display:block;

width:100%;
height:1px;

background:#e5e5e5;

margin-top:12px;

}


/* ==================================================
CATEGORIA NA THUMB
================================================== */

.post-category{

position:absolute;

top:10px;
left:10px;

background:var(--vermelho-portal);
color:#fff;

font-size:12px;
font-weight:600;

text-transform:uppercase;

padding:4px 8px;

border-radius:3px;

z-index:2;

}


/* ==================================================
CARDS MODERNOS
================================================== */

.post-card{
background:#fff;
border-radius:10px;
overflow:visible; /* CORRIGIDO */
transition:.3s;
position:relative;
}

.post-card:hover{

transform:translateY(-6px);

box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.post-card img{

width:100%;
height:220px;

object-fit:cover;

transition:transform .5s ease;

}

.post-card:hover img{

transform:scale(1.06);

}


/* conteúdo */

.card-content{

padding:18px 20px;

}

.post-card h3{

font-size:18px;

line-height:1.35;

margin-bottom:8px;

}


/* resumo */

.post-excerpt{

font-size:14px;
line-height:1.5;

color:#555;

margin-top:6px;

}


/* resumo hover */

.card-hover{

opacity:0;

transition:.3s;

}

.post-card:hover .card-hover{

opacity:1;

}


/* ==================================================
MAIS LIDOS ESTILO PORTAL
================================================== */

.popular-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:26px;

}

.popular-card{

position:relative;

border-radius:10px;

overflow:hidden;

background:#fff;

transition:.3s;

}

.popular-card:hover{

transform:translateY(-6px);

box-shadow:0 10px 30px rgba(0,0,0,.1);

}

/* imagem */

.popular-thumb{

position:relative;

overflow:hidden;

}

.popular-thumb img{

width:100%;
height:200px;

object-fit:cover;

transition:transform .6s ease;

}

.popular-card:hover img{

transform:scale(1.08);

}


/* NUMERAÇÃO SOBREPOSTA */

.post-rank{

position:absolute;

top:10px;
left:10px;

background:var(--vermelho-portal);

color:#fff;

width:36px;
height:36px;

border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

font-weight:700;

font-size:14px;

box-shadow:0 4px 10px rgba(0,0,0,.25);

z-index:3;

}


/* conteúdo */

.popular-card .card-content{

padding:18px;

}

.popular-card h3{

font-size:19px;

line-height:1.35;

margin-bottom:8px;

}

.popular-card .post-excerpt{

font-size:14px;

color:#555;

}


/* ==================================================
RESPONSIVO DOS CARDS
================================================== */

@media(max-width:900px){

.popular-grid{
grid-template-columns:1fr;
}

.posts-grid{
grid-template-columns:1fr;
}

.category-grid{
grid-template-columns:1fr 1fr;
}

}

@media(max-width:600px){

.category-grid{
grid-template-columns:1fr;
}

}
/* THUMBS PADRONIZADAS */

.popular-thumb img,
.posts-grid .post-card img,
.trending-item img{

width:100%;
height:200px;

object-fit:cover;

border-radius:6px;

}
.post-card h3,
.popular-card h3{

margin-top:12px;

}
.post-rank{

position:absolute;

top:-14px;
left:-14px;

background:#e60023;

color:#fff;

width:36px;
height:36px;

border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

font-weight:700;
font-size:14px;

z-index:5;

}
/* TARJA CATEGORIA SOBRE IMAGEM */

.post-category{

position:absolute;

left:50%;
bottom:-10px;

transform:translateX(-50%);

background:#111;

color:#fff;

font-size:12px;

padding:4px 10px;

border-radius:3px;

font-family:'Open Sans',sans-serif;

text-transform:uppercase;

letter-spacing:.3px;

z-index:4;

}
.post-thumb,
.popular-thumb,
.trending-item{

position:relative;

}
/* ==================================================
PADRONIZAÇÃO DAS THUMBS
================================================== */

.popular-posts img,
.recent-posts img,
.trending-grid img{

width:100%;
height:200px!important;
object-fit:cover;

}


/* ==================================================
ESPAÇO ENTRE IMAGEM E TÍTULO
================================================== */

.post-card h3,
.popular-card h3{

margin-top:14px;
padding:0 6px;

}


/* ==================================================
NUMERAÇÃO MAIS LIDOS METADE FORA DA IMAGEM
================================================== */

.popular-card .post-rank{

top:-16px;
left:-16px;

width:38px;
height:38px;

background:#e60023;

z-index:10;

}


/* ==================================================
TARJA GRAFITE SOBRE A IMAGEM
(somente blocos principais)
================================================== */

.popular-posts .post-category,
.recent-posts .post-category,
.trending-discover .post-category{

position:absolute;

left:50%;
bottom:-12px;

transform:translateX(-50%);

background:#333;

color:#fff;

font-size:12px;

padding:4px 12px;

border-radius:3px;

text-transform:uppercase;

letter-spacing:.4px;

z-index:5;

}


/* ==================================================
REMOVER TARJA DOS BLOCOS DE CATEGORIA
================================================== */

.category-block .post-category{

display:none;

}


/* ==================================================
GARANTIR POSICIONAMENTO NAS THUMBS
================================================== */

.post-thumb,
.popular-thumb,
.trending-item{

position:relative;

}


/* ==================================================
COR GRAFITE MAIS SUAVE
================================================== */

.post-category{

background:#333;

}
/* ================================
RESET TOTAL DAS THUMBS
remove overlays bugados
================================ */

.post-thumb::before,
.post-thumb::after,
.popular-thumb::before,
.popular-thumb::after,
.trending-item::before,
.trending-item::after{
content:none !important;
display:none !important;
}


/* ================================
IMAGEM LIMPA
================================ */

.post-thumb img,
.popular-thumb img,
.trending-item img{

width:100%;
height:200px;

object-fit:cover;

display:block;

}


/* ================================
TARJA GRAFITE SOBRE A IMAGEM
================================ */

.post-category{

position:absolute;

left:12px;
bottom:12px;

background:#333;

color:#fff;

font-size:11px;

padding:4px 10px;

border-radius:3px;

text-transform:uppercase;

letter-spacing:.4px;

z-index:5;

}

/* REMOVE OVERLAYS QUE GERAM AS BARRAS */

.card-hover::before,
.card-hover::after,
.card-content::before,
.card-content::after,
a::before,
a::after{

display:none !important;
content:none !important;

}


/* GARANTE QUE A IMAGEM FIQUE LIMPA */

a img{

display:block;
width:100%;
height:200px;
object-fit:cover;

}


/* REMOVE FUNDO EFEITO HOVER BUGADO */

.card-hover{

background:none !important;

}
.card-content{

position:relative;

}

.post-category{

position:absolute;

bottom:12px;
left:12px;

background:#333;

color:#fff;

font-size:11px;

padding:4px 10px;

border-radius:3px;

}
/* ===== MAIS LIDOS PROFISSIONAL ===== */

.popular-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:24px;
}

/* card */

.popular-card{
background:#fff;
border-radius:10px;
overflow:hidden;
transition:.3s;
}

.popular-card:hover{
transform:translateY(-4px);
box-shadow:0 15px 30px rgba(0,0,0,.08);
}

/* imagem */

.post-thumb{
position:relative;
overflow:hidden;
}

.post-thumb img{
width:100%;
height:200px;
object-fit:cover;
transition:.4s;
}

.popular-card:hover img{
transform:scale(1.06);
}

/* número */

.post-rank{
position:absolute;
top:-12px;
left:-12px;

width:42px;
height:42px;

background:#e60023;
color:#fff;

display:flex;
align-items:center;
justify-content:center;

font-weight:700;
border-radius:50%;

font-size:16px;
z-index:3;
}

/* categoria sobre imagem */

.post-thumb .post-category{
position:absolute;
bottom:10px;
left:50%;
transform:translateX(-50%);

background:#2a2a2a;
color:#fff;

font-size:12px;
text-transform:uppercase;

padding:5px 12px;
border-radius:3px;
z-index:2;
}

/* conteúdo */

.post-info{
padding:16px 18px;
}

.post-info h3{
font-size:18px;
line-height:1.4;
margin-bottom:8px;
}

.post-excerpt{
font-size:14px;
color:#555;
line-height:1.5;
}

/* RESPONSIVO */

@media(max-width:900px){

.popular-grid{
grid-template-columns:1fr;
}

.post-thumb img{
height:220px;
}

}
/* ===== CORREÇÃO CRÍTICA DAS BARRAS ===== */

.post-category{
display:inline-block !important;
width:auto !important;
height:auto !important;
max-width:90%;

white-space:nowrap;
overflow:hidden;
text-overflow:ellipsis;

font-size:12px;
line-height:1;

padding:5px 10px;
border-radius:3px;

/* cor grafite */
background:#2a2a2a;
color:#fff;

/* impedir expansão bugada */
position:absolute;
bottom:10px;
left:50%;
transform:translateX(-50%);

z-index:2;
}

/* REMOVE categorias vazias (causa raiz do bug) */
.post-category:empty{
display:none !important;
}

/* garantir que thumb não deforme */
.post-thumb{
position:relative;
overflow:hidden;
}

/* impedir qualquer overlay estranho */
.post-thumb *{
max-height:100%;
}
/* ===== CORREÇÃO FINAL DAS "BARRAS" ===== */

/* remove overlays fantasmas */
.post-thumb::before,
.post-thumb::after,
.popular-card::before,
.popular-card::after{
display:none !important;
content:none !important;
}

/* impedir qualquer layer escura indevida */
.card-hover{
position:relative !important;
background:none !important;
opacity:1 !important;
}

/* se algum overlay estiver sendo aplicado */
.post-thumb div{
max-height:100%;
}

/* GARANTIR QUE NADA CUBRA A IMAGEM */
.post-thumb{
position:relative;
z-index:1;
}

.post-thumb img{
display:block;
position:relative;
z-index:1;
}

/* categoria correta (tarja pequena) */
.post-category{
position:absolute;
bottom:10px;
left:50%;
transform:translateX(-50%);

background:#2a2a2a;
color:#fff;

font-size:12px;
padding:5px 10px;

border-radius:3px;
z-index:3;

display:inline-block;
white-space:nowrap;
}

/* número acima de tudo */
.post-rank{
z-index:4 !important;
}

/* texto nunca sobrepor imagem */
.post-info{
position:relative;
z-index:2;
}
/* ===== RESET TOTAL DO MAIS LIDOS ===== */

.most-read *{
all: unset;
box-sizing:border-box;
}

/* reconstroi estrutura básica */

.most-read{
margin:60px auto;
max-width:1200px;
}

.most-read .section-title{
all:unset;
display:block;
font-size:22px;
font-weight:700;
margin-bottom:20px;
position:relative;
padding-left:16px;
}

.most-read .section-title:before{
content:"";
position:absolute;
left:0;
top:4px;
width:6px;
height:22px;
background:#e60023;
border-radius:3px;
}

/* grid */

.popular-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:24px;
}

/* card */

.popular-card{
background:#fff;
border-radius:10px;
overflow:hidden;
transition:.3s;
}

.popular-card:hover{
transform:translateY(-5px);
box-shadow:0 15px 30px rgba(0,0,0,.08);
}

/* thumb */

.post-thumb{
position:relative;
overflow:hidden;
}

.post-thumb img{
width:100%;
height:200px;
object-fit:cover;
display:block;
}

/* REMOVE QUALQUER OVERLAY BUGADO */
.post-thumb div,
.post-thumb span:not(.post-rank):not(.post-category){
display:none !important;
}

/* número */

.post-rank{
position:absolute;
top:-12px;
left:-12px;

width:42px;
height:42px;

background:#e60023;
color:#fff;

display:flex;
align-items:center;
justify-content:center;

font-weight:700;
border-radius:50%;
z-index:3;
}

/* categoria */

.post-category{
position:absolute;
bottom:10px;
left:50%;
transform:translateX(-50%);

background:#2a2a2a;
color:#fff;

font-size:12px;
padding:5px 10px;
border-radius:3px;
z-index:3;
}

/* conteúdo */

.post-info{
padding:16px;
}

.post-info h3{
font-size:18px;
line-height:1.4;
margin-bottom:8px;
}

.post-excerpt{
font-size:14px;
color:#555;
}

/* responsivo */

@media(max-width:900px){
.popular-grid{
grid-template-columns:1fr;
}
}
/* =========================================
RESET TOTAL DAS TARJAS BUGADAS
========================================= */

.post-category{
    position: static !important;
    display: inline-block !important;
    background: transparent !important;
    color: #555 !important;
    padding: 0 !important;
    font-size: 12px !important;
    text-transform: uppercase;
    margin-bottom: 8px;
}

/* remove qualquer pseudo-elemento antigo */
.post-category::before,
.post-category::after{
    display:none !important;
    content:none !important;
}
/* =========================================
MAIS LIDOS — PADRÃO PORTAL PROFISSIONAL
========================================= */

.popular-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

/* card */
.popular-card{
    position:relative;
}

/* imagem padronizada */
.popular-card img{
    width:100%;
    height:190px;
    object-fit:cover;
    border-radius:12px;
    display:block;
}

/* número estilo editorial (metade fora) */
.post-rank{
    position:absolute;
    top:-10px;
    left:-10px;

    width:34px;
    height:34px;

    background:#e60023;
    color:#fff;

    font-size:14px;
    font-weight:700;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;
    z-index:10;
}

/* conteúdo */
.popular-card .post-info{
    margin-top:12px;
}

/* título */
.popular-card h3{
    font-size:17px;
    line-height:1.4;
    margin-bottom:8px;
}

/* resumo */
.popular-card .post-excerpt{
    font-size:14px;
    color:#666;
}
/* =========================================
CORREÇÃO CATEGORIA (corte na esquerda)
========================================= */

.post-info{
    padding: 0 4px;
}

.post-category{
    display:inline-block;
    margin: 6px 0 8px 0;
    padding-left:0;
    line-height:1.2;
    letter-spacing:.4px;
    white-space:normal;
}
/* =========================================
AJUSTE DE ESPAÇAMENTO (título + categoria)
========================================= */

.post-info h3{
    margin-top:4px;
    margin-bottom:6px;
    line-height:1.35;
}

.post-excerpt{
    margin-top:6px;
}
.post-category{
    font-size:11px;
    font-weight:600;
    color:#666;
    text-transform:uppercase;
}

/* =========================================
CORREÇÃO SEGURA — CATEGORIA + MAIS LIDOS
(NÃO AFETA O RESTO DO SITE)
========================================= */


/* =========================
CATEGORIA (TEXTO LIMPO)
========================= */

.post-category{
    position: static !important;
    display: inline-block !important;

    background: transparent !important;
    color: #666 !important;

    font-size: 11px;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: .4px;

    margin: 6px 0 6px 0 !important;
    padding: 0 !important;

    white-space: normal !important;
}


/* remove qualquer pseudo bugado */
.post-category::before,
.post-category::after{
    display:none !important;
    content:none !important;
}


/* =========================
ESPAÇAMENTO CORRETO
========================= */

.post-info{
    padding: 0 6px;
}

.post-info h3{
    margin: 4px 0 6px;
    line-height: 1.35;
}

.post-excerpt{
    margin-top: 6px;
}


/* =========================
MAIS LIDOS (ISOLADO)
========================= */

.popular-posts .popular-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}


/* CARD */

.popular-posts .popular-card{
    position:relative;
}


/* THUMB PADRONIZADA */

.popular-posts .popular-card img{
    width:100%;
    height:200px;
    object-fit:cover;
    border-radius:10px;
    display:block;
}


/* NUMERAÇÃO (CORRIGIDA) */

.popular-posts .post-rank{
    position:absolute;

    top:8px;
    left:8px;

    width:30px;
    height:30px;

    background:#e60023;
    color:#fff;

    font-size:13px;
    font-weight:700;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;
    z-index:5;
}


/* CONTEÚDO */

.popular-posts .post-info{
    margin-top:10px;
}


/* TÍTULO */

.popular-posts h3{
    font-size:17px;
    line-height:1.4;
}


/* RESPONSIVO */

@media(max-width:900px){
    .popular-posts .popular-grid{
        grid-template-columns:1fr;
    }
}
/* CATEGORIA PADRÃO */

.post-category{
font-size:11px;
font-weight:600;
text-transform:uppercase;
color:#666;
margin-bottom:6px;
display:inline-block;
}

/* MAIS LIDOS */

.popular-card img{
width:100%;
height:200px;
object-fit:cover;
border-radius:10px;
}

.post-rank{
position:absolute;
top:8px;
left:8px;

background:#e60023;
color:#fff;

width:30px;
height:30px;

display:flex;
align-items:center;
justify-content:center;

border-radius:50%;
font-size:13px;
font-weight:700;
}
/* =========================================
CORREÇÃO VISUAL FINAL — GRID PERFEITO
========================================= */


/* =========================
FORÇA ALINHAMENTO DOS CARDS
========================= */

.popular-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
    align-items:start;
}


/* =========================
PADRÃO DE ALTURA IGUAL
========================= */

.popular-card{
    display:flex;
    flex-direction:column;
}


/* THUMB FIXA */

.popular-card .post-thumb{
    width:100%;
    height:200px;
    overflow:hidden;
    border-radius:10px;
}

.popular-card .post-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
}


/* =========================
CONTEÚDO ALINHADO
========================= */

.popular-card .post-info{
    display:flex;
    flex-direction:column;
    flex-grow:1;
    padding:10px 4px 0;
}


/* =========================
CATEGORIA PADRONIZADA
========================= */

.post-category{
    display:block;
    font-size:11px;
    font-weight:600;
    text-transform:uppercase;
    color:#777;

    margin-bottom:6px;

    /* ESSENCIAL PRA ALINHAR */
    min-height:14px;
}


/* =========================
TÍTULO PADRONIZADO
========================= */

.popular-card h3{
    font-size:17px;
    line-height:1.4;

    margin:0 0 6px;

    /* trava altura pra alinhar */
    min-height:48px;
}


/* =========================
RESUMO PADRONIZADO
========================= */

.post-excerpt{
    font-size:14px;
    color:#555;
    line-height:1.5;

    /* evita quebrar layout */
    flex-grow:1;
}


/* =========================
NUMERAÇÃO CORRETA
========================= */

.post-rank{
    position:absolute;
    top:8px;
    left:8px;

    width:30px;
    height:30px;

    background:#e60023;
    color:#fff;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:13px;
    font-weight:700;
}


/* =========================
RESPONSIVO
========================= */

@media(max-width:900px){
    .popular-grid{
        grid-template-columns:1fr;
    }
}
/* =========================================
MAIS LIDOS — AJUSTE FINAL PROFISSIONAL
========================================= */


/* GRID */

.popular-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}


/* CARD */

.popular-card{
    display:flex;
    flex-direction:column;
}


/* =========================
THUMB PADRÃO (CORREÇÃO REAL)
========================= */

.popular-card .post-thumb{
    width:100%;
    aspect-ratio: 16 / 10; /* resolve de vez o desalinhamento */
    overflow:hidden;
    border-radius:12px;
}

.popular-card .post-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}


/* =========================
REMOVE RESUMO
========================= */

.popular-card .post-excerpt{
    display:none;
}


/* =========================
CONTEÚDO
========================= */

.popular-card .post-info{
    padding-top:12px;
}


/* =========================
CATEGORIA
========================= */

.popular-card .post-category{
    display:block;
    text-align:left;

    font-size:11px;
    font-weight:600;
    text-transform:uppercase;

    color:#777;

    margin-bottom:10px; /* MAIS ESPAÇO */
}


/* =========================
TÍTULO
========================= */

.popular-card h3{
    font-family:'Open Sans', sans-serif;
    font-weight:700; /* 🔥 conforme pedido */

    font-size:18px;
    line-height:1.4;

    margin:0;
}


/* =========================
NUMERAÇÃO
========================= */

.post-rank{
    position:absolute;
    top:10px;
    left:10px;

    width:32px;
    height:32px;

    background:#e60023;
    color:#fff;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:14px;
    font-weight:700;
}


/* =========================
RESPONSIVO
========================= */

@media(max-width:900px){
    .popular-grid{
        grid-template-columns:1fr;
    }
}
/* =========================================
FIX DEFINITIVO - MAIS LIDOS
(SEM QUEBRAR O RESTO DO SITE)
========================================= */

/* GRID */
.most-read .popular-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

/* CARD */
.most-read .popular-card{
    position:relative;
}

/* THUMB PADRONIZADA */
.most-read .post-thumb{
    position:relative;
    overflow:visible; /* permite número sair */
}

.most-read .post-thumb img{
    width:100%;
    height:200px;
    object-fit:cover;
    border-radius:12px;
    display:block;
}

/* NUMERAÇÃO (METADE FORA) */
.most-read .post-rank{
    position:absolute;
    top:-12px;
    left:-12px;

    width:38px;
    height:38px;

    background:#000; /* PRETO */
    color:#fff;

    font-size:14px;
    font-weight:700;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;
    z-index:5;
}

/* REMOVE QUALQUER CATEGORIA BUGADA GLOBAL */
.most-read .post-thumb .post-category{
    display:none !important;
}

/* CATEGORIA CORRETA (ACIMA DO TÍTULO) */
.most-read .post-info .post-category{
    display:block !important;
    position:static !important;

    font-size:11px;
    font-weight:600;
    color:#666;

    text-transform:uppercase;
    letter-spacing:.4px;

    margin:14px 0 10px 0;
}

/* TÍTULO */
.most-read .post-info h3{
    font-family:'Open Sans', sans-serif;
    font-weight:700;
    font-size:17px;
    line-height:1.4;

    margin:0;
}

/* REMOVE RESUMO */
.most-read .post-excerpt{
    display:none !important;
}
/* =========================================
FIX FINAL — MAIS LIDOS (THUMBS + NUMERAÇÃO)
========================================= */

/* força consistência do grid */
.most-read .popular-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

/* garante que nada interfira */
.most-read .popular-card{
    position:relative;
}

/* THUMB PADRÃO (BASE REAL) */
.most-read .post-thumb{
    position:relative;
    overflow:visible; /* permite número sair */
}

/* imagem padronizada (igual card #2) */
.most-read .post-thumb img{
    width:100%;
    height:220px !important; /* <<< AJUSTE PRINCIPAL */
    object-fit:cover;
    display:block;
    border-radius:12px;
}

/* REMOVE qualquer regra global conflitante */
.post-thumb img{
    height:auto;
}

/* NUMERAÇÃO METADE FORA */
.most-read .post-rank{
    position:absolute;

    top:0;
    left:0;

    transform:translate(-35%,-35%); /* <<< ESSENCIAL */

    width:42px;
    height:42px;

    background:#000;
    color:#fff;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-weight:700;
    font-size:15px;

    z-index:10;
}

/* REMOVE categoria de dentro da imagem */
.most-read .post-thumb .post-category{
    display:none !important;
}

/* categoria correta acima do título */
.most-read .post-info .post-category{
    display:block !important;
    position:static !important;

    font-size:11px;
    font-weight:600;
    color:#666;

    margin:14px 0 10px;
    text-transform:uppercase;
}

/* título */
.most-read .post-info h3{
    font-family:'Open Sans', sans-serif;
    font-weight:700;
    font-size:17px;
    line-height:1.4;
}

/* remove resumo */
.most-read .post-excerpt{
    display:none !important;
}
/* =========================================
MAIS LIDOS — ESTRUTURA LIMPA (DEFINITIVO)
========================================= */

/* GRID */
.most-read .popular-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

/* CARD */
.most-read .popular-card{
    position:relative;
}

/* THUMB ISOLADA (SEM CONFLITO) */
.most-read .popular-thumb{
    position:relative;
}

/* IMAGEM PADRÃO (TODAS IGUAIS) */
.most-read .popular-thumb img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
    border-radius:12px;
}

/* NUMERAÇÃO METADE FORA */
.most-read .post-rank{
    position:absolute;
    top:0;
    left:0;

    transform:translate(-40%,-40%);

    width:42px;
    height:42px;

    background:#000;
    color:#fff;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-weight:700;
    font-size:15px;

    z-index:5;
}

/* CONTEÚDO */
.most-read .post-info{
    margin-top:14px;
}

/* CATEGORIA */
.most-read .post-info .post-category{
    display:block;
    font-size:11px;
    font-weight:600;
    color:#666;
    text-transform:uppercase;
    margin-bottom:10px;
}

/* TÍTULO */
.most-read .post-info h3{
    font-family:'Open Sans', sans-serif;
    font-weight:700;
    font-size:17px;
    line-height:1.4;
}

/* REMOVE RESUMO */
.most-read .post-excerpt{
    display:none;
}
.popular-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9; /* padrão tipo card moderno */
    overflow: visible; /* IMPORTANTE para a bolinha sair */
    border-radius: 14px;
}

.popular-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* resolve TODAS as distorções */
    border-radius: 14px;
    display: block;
}
.post-rank {
    position: absolute;
    top: -12px;
    left: -12px;

    width: 36px;
    height: 36px;

    background: #000;
    color: #fff;

    font-size: 14px;
    font-weight: 700;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    z-index: 10;
}
.popular-card {
    overflow: visible;
}
.post-excerpt {
    display: none;
}
.popular-card h3 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.4;
    margin-top: 10px;
}
.post-category {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    color: #777;

    margin-top: 12px;
    margin-bottom: 6px;

    text-align: left;
}
/* =========================
   GRID MAIS LIDOS
========================= */
.popular-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* =========================
   CARD
========================= */
.popular-card {
    display: flex;
    flex-direction: column;
}

/* LINK NÃO QUEBRA O LAYOUT */
.popular-card a {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* =========================
   THUMB PADRONIZADA (FIX PRINCIPAL)
========================= */
.popular-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10; /* 🔥 TODAS IGUAIS */
    overflow: visible; /* permite o número sair */
    border-radius: 14px;
}

/* IMAGEM 100% AJUSTADA */
.popular-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 🔥 resolve distorção */
    display: block;
    border-radius: 14px;
}

/* =========================
   NUMERAÇÃO (QUADRADO ARREDONDADO)
========================= */
.post-rank {
    position: absolute;
    top: -8px;
    left: -8px;

    width: 28px;
    height: 28px;

    background: #000;
    color: #fff;

    font-size: 13px;
    font-weight: 700;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px; /* 🔥 quadrado arredondado */
    z-index: 10;
}

/* =========================
   INFO DO POST
========================= */
.post-info {
    padding-top: 12px;
}

/* =========================
   CATEGORIA (AGORA DENTRO DO CARD)
========================= */
.post-category {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #888;

    margin-bottom: 10px;
}

/* =========================
   TÍTULO
========================= */
.popular-card h3 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 18px; /* 🔥 como você pediu */
    line-height: 1.4;

    margin: 0;
}

/* =========================
   REMOVE RESUMO
========================= */
.post-excerpt {
    display: none;
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 1024px) {
    .popular-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .popular-grid {
        grid-template-columns: 1fr;
    }
}
.popular-thumb,
.popular-thumb img {
    all: unset;
}
/* RESET (mata qualquer CSS antigo quebrado) */
.popular-thumb,
.popular-thumb img {
    all: unset;
}

/* AGORA SIM — reaplica o layout correto */
.popular-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: visible;
    border-radius: 14px;
}

.popular-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 14px;
}
/* =========================
   GRID
========================= */
.most-read .popular-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* =========================
   CARD
========================= */
.most-read .popular-card {
    display: flex;
    flex-direction: column;
}

/* LINK NÃO BAGUNÇA O LAYOUT */
.most-read .popular-card a {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* =========================
   THUMB (PADRÃO ABSOLUTO)
========================= */
.most-read .popular-thumb {
    position: relative;
    width: 100%;
    height: 220px; /* 🔥 ALTURA FIXA (resolve 100%) */
    overflow: visible;
    border-radius: 14px;
}

/* IMAGEM AJUSTADA */
.most-read .popular-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
    border-radius: 14px;
}

/* =========================
   NUMERAÇÃO (QUADRADO)
========================= */
.most-read .post-rank {
    position: absolute;
    top: -8px;
    left: -8px;

    width: 26px;
    height: 26px;

    background: #000;
    color: #fff;

    font-size: 12px;
    font-weight: 700;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 6px;
    z-index: 10;
}

/* =========================
   CONTEÚDO
========================= */
.most-read .post-info {
    padding-top: 12px;
}

/* CATEGORIA */
.most-read .post-category {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 10px;
}

/* TÍTULO */
.most-read .popular-card h3 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.4;
    margin: 0;
}

/* REMOVE RESUMO */
.most-read .post-excerpt {
    display: none;
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 1024px) {
    .most-read .popular-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .most-read .popular-grid {
        grid-template-columns: 1fr;
    }
}
.most-read img {
    max-width: none !important;
}
/* =========================
   REMOVE COMPORTAMENTO DE CARD
   SOMENTE EM "MAIS LIDOS"
========================= */

/* REMOVE LINK ENVOLVENTE FORÇADO PELO TEMA */
.most-read .popular-card a {
    display: inline !important;
}

/* GARANTE QUE O CARD NÃO VIRE BLOCO FLEX DO TEMA */
.most-read .popular-card {
    display: block !important;
}

/* REMOVE QUALQUER HERANÇA DE CARD GLOBAL */
.most-read .popular-card,
.most-read .popular-card * {
    box-shadow: none !important;
    transform: none !important;
}

/* =========================
   ESTRUTURA LIMPA
========================= */

.most-read .popular-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* THUMB */
.most-read .popular-thumb {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: visible;
}

.most-read .popular-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
}

/* NUMERAÇÃO */
.most-read .post-rank {
    position: absolute;
    top: -8px;
    left: -8px;

    width: 24px;
    height: 24px;

    background: #000;
    color: #fff;

    font-size: 12px;
    font-weight: 700;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 6px;
}

/* TEXTO */
.most-read .post-info {
    margin-top: 10px;
}

.most-read .post-category {
    display: block;
    font-size: 11px;
    color: #777;
    margin-bottom: 8px;
    text-align: left;
}

.most-read h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

/* =========================
   THUMBS PROPORCIONAIS
========================= */
.most-read .popular-thumb {
    position: relative;
    width: 100%;
    height: 200px; /* 🔥 ajuste fino (pode usar 190–220 se quiser) */
    overflow: visible;
    border-radius: 12px;
}

.most-read .popular-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
    border-radius: 12px;
}

/* =========================
   APROXIMAR TEXTO DA IMAGEM
========================= */
.most-read .post-info {
    margin-top: 6px; /* 🔥 mais próximo da thumb */
}

.most-read .post-category {
    margin-bottom: 4px; /* 🔥 aproxima do título */
}

/* =========================
   NUMERAÇÃO (QUADRADO IGUAL AO SEU)
========================= */
.most-read .post-rank {
    position: absolute;
    top: -6px;
    left: -6px;

    width: 22px;  /* 🔥 menor */
    height: 22px;

    background: #000;
    color: #fff;

    font-size: 11px;
    font-weight: 700;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 6px; /* 🔥 igual ao da imagem */
    z-index: 10;
}

/* =========================
   TÍTULO (REFINO)
========================= */
.most-read h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0;
}
/* ===== RESET FORÇADO DO BLOCO ===== */
.popular-grid,
.popular-card,
.post-info {
    all: unset !important;
}

/* =========================
MAIS LIDOS (CORRIGIDO FINAL)
========================= */

.popular-list{
    display:grid !important;
    grid-template-columns:repeat(2,1fr) !important;
    gap:16px !important;
}

@media(min-width:768px){
    .popular-list{
        grid-template-columns:repeat(3,1fr) !important;
        gap:22px !important;
    }
}

/* ITEM */
.popular-item a{
    display:block;
    text-decoration:none;
}

/* THUMB */
.thumb-wrap{
    position:relative;
    width:100%;
    aspect-ratio:1/1;
    overflow:hidden;
    border-radius:10px;
    background:#eee;
}

.thumb-wrap img{
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
    display:block;
}

/* RANK */
.rank-box{
    position:absolute;
    top:-6px;
    left:-6px;
    width:26px;
    height:26px;
    background:#000;
    color:#fff;
    border-radius:8px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    font-weight:700;
    z-index:10;
}

/* =========================
CATEGORIA PADRÃO
========================= */

.category{
    display:block;
    font-size:12px;
    margin:6px 0 4px;
    color:#666;
    text-align:left;
}

/* =========================
TÍTULOS
========================= */

.title,
.trending-item h3{
    margin-top:4px;
    font-size:17px;
    font-weight:700;
    line-height:1.4;
    text-align:left;
}

/* =========================
TRENDING (ALINHADO)
========================= */

.trending-item .card-content{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}

.trending-item .category{
    margin-top:6px;
    margin-bottom:2px;
}

/* =========================
RESUMOS (EDITORIAL SUAVE)
========================= */

.post-excerpt,
.trend-excerpt{
    font-size:15px;
    line-height:1.6;
    margin-top:6px;
    margin-bottom:8px;
    color:#444;
    text-align:left;

    /* estilo editorial mais elegante */
    font-family:'Georgia', serif;
    font-style:italic;
}

/* =========================
CTA PADRÃO
========================= */

.read-more{
    display:block;
    margin-top:6px;
    font-size:13px;
    font-weight:600;
    text-align:right;
    color:#000;
    transition:0.3s;
}

.read-more:hover{
    text-decoration:underline;
}

/* =========================
FIX LITESPEED (IMAGEM SUMINDO)
========================= */

img[data-lazyloaded="1"]{
    opacity:1 !important;
    visibility:visible !important;
}

/* =========================
HERO GRID (SEM SOBREPOSIÇÃO)
========================= */

@media(min-width:768px){

.hero-grid{
    display:grid !important;
    grid-template-columns:2fr 1fr !important;
    grid-template-rows:auto auto !important;
    gap:10px;
}

.hero-1{
    grid-row:1 / 3 !important;
    grid-column:1 / 2 !important;
}

.hero-2{
    grid-column:2 / 3 !important;
    grid-row:1 / 2 !important;
}

.hero-3{
    grid-column:2 / 3 !important;
    grid-row:2 / 3 !important;
}

}

/* =========================
AJUSTE CATEGORIAS (ESPAÇO)
========================= */

.cat-item h3{
    margin-top:10px;
}
/* FIX FINAL MAIS LIDOS (sem quebrar layout) */
.popular-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
}

@media(min-width:768px){
    .popular-list{
        grid-template-columns:repeat(3,1fr);
        gap:22px;
    }
}
/* FIX TRENDING ALINHAMENTO REAL */
.trending-item .card-content{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    text-align:left;
}

.trending-item .category{
    margin-top:6px;
    margin-bottom:2px;
    display:block;
}

.trending-item h3{
    margin-top:2px;
}

.trending-item .trend-excerpt{
    margin-top:6px;
}
/* GARANTE ITÁLICO SEM QUEBRAR */
.post-excerpt,
.trend-excerpt{
    font-style:italic;
}
/* =========================================
FIX MAIS LIDOS (tamanho uniforme REAL)
========================================= */

.popular-list{
    display:grid !important;
    grid-template-columns:repeat(2,1fr) !important;
    gap:16px !important;
}

@media(min-width:768px){
    .popular-list{
        grid-template-columns:repeat(3,1fr) !important;
        gap:22px !important;
    }
}

/* força TODAS as thumbs iguais */
.popular-item .thumb-wrap{
    width:100% !important;
    aspect-ratio:1/1 !important;
    overflow:hidden !important;
}

.popular-item .thumb-wrap img{
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
    display:block !important;
}


/* =========================================
FIX TRENDING (alinhamento + espaçamento)
========================================= */

.trending-item{
    display:block;
}

.trending-item .card-content{
    display:flex !important;
    flex-direction:column !important;
    align-items:flex-start !important;
    text-align:left !important;
}

/* aproxima da imagem */
.trending-item .category{
    margin-top:4px !important;
    margin-bottom:2px !important;
    display:block !important;
}

/* título maior (como pediu) */
.trending-item h3{
    font-size:18px !important;
    margin-top:2px !important;
    line-height:1.3;
}

/* espaço correto do resumo */
.trending-item .trend-excerpt{
    margin-top:6px !important;
}


/* =========================================
RESUMOS EM ITÁLICO (FORÇA TOTAL)
========================================= */

/* ESTE FOI O PADRÃO QUE FUNCIONOU ANTES */
.post-excerpt,
.trend-excerpt{
    font-style:italic !important;
    font-family: Georgia, serif !important;
    color:#444;
}


/* =========================================
GARANTIA EXTRA (caso LiteSpeed interfira)
========================================= */

img{
    max-width:100%;
    height:auto;
}
/* =========================================
FORÇA TOTAL - MAIS LIDOS (PADRÃO IGUAL)
========================================= */

.home-main .most-read .popular-list{
    display:grid !important;
    grid-template-columns:repeat(2,1fr) !important;
    gap:16px !important;
}

@media(min-width:768px){
    .home-main .most-read .popular-list{
        grid-template-columns:repeat(3,1fr) !important;
        gap:22px !important;
    }
}

.home-main .popular-item .thumb-wrap{
    aspect-ratio:1/1 !important;
    height:auto !important;
}

.home-main .popular-item .thumb-wrap img{
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
}


/* =========================================
FORÇA TOTAL - TRENDING (ALINHAMENTO REAL)
========================================= */

.home-main .trending-item .card-content{
    display:flex !important;
    flex-direction:column !important;
    align-items:flex-start !important;
    text-align:left !important;
}

.home-main .trending-item .category{
    margin-top:4px !important;
    margin-bottom:2px !important;
}

.home-main .trending-item h3{
    font-size:18px !important;
    margin-top:2px !important;
}

.home-main .trending-item .trend-excerpt{
    display:block !important;
    margin-top:6px !important;
}


/* =========================================
RESUMO PREMIUM (FORÇA MÁXIMA REAL)
========================================= */

.home-main .post-excerpt,
.home-main .trend-excerpt{
    display:block !important;
    font-size:14px !important;
    line-height:1.6 !important;
    color:#555 !important;
    text-align:left !important;
    margin-top:6px !important;
    font-style:italic !important;
    font-family: Georgia, "Times New Roman", serif !important;
}
/* =========================================
CORREÇÃO REAL - MAIS LIDOS (IMAGENS IGUAIS)
========================================= */

/* container manda no tamanho */
.home-main .popular-item .thumb-wrap{
    aspect-ratio:1/1 !important;
    width:100% !important;
    overflow:hidden !important;
}

/* imagem OBRIGADA a preencher */
.home-main .popular-item .thumb-wrap img{
    width:100% !important;
    height:100% !important; /* 🔥 ESSA LINHA RESOLVE */
    object-fit:cover !important;
    display:block !important;
}
/* =========================================
PADRONIZAÇÃO FINAL MAIS LIDOS (CORRETA)
========================================= */

.home-main .popular-item .thumb-wrap{
    aspect-ratio:1/1 !important;
    overflow:hidden !important;
}

.home-main .popular-item .thumb-wrap img{
    width:100% !important;
    height:100% !important; /* 🔥 ESSENCIAL */
    object-fit:cover !important;
    display:block !important;
}
/* =========================================
CORREÇÃO DEFINITIVA MAIS LIDOS (ANTI-LITESPEED)
========================================= */

.home-main .popular-item .thumb-wrap{
    position:relative;
    width:100%;
    padding-top:100%; /* 🔥 força quadrado REAL */
    overflow:hidden;
}

.home-main .popular-item .thumb-wrap img{
    position:absolute !important;
    top:0;
    left:0;
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
}
/* =========================================
FIX SEGURO MAIS LIDOS (SEM SUMIR IMAGEM)
========================================= */

.home-main .popular-item .thumb-wrap{
    width:100%;
    aspect-ratio:1/1;
    overflow:hidden;
    background:#eee;
}

.home-main .popular-item .thumb-wrap img{
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
    display:block;
}
/* =========================================
CORREÇÃO DEFINITIVA - MAIS LIDOS (IMAGEM VOLTA)
========================================= */

.home-main .popular-item .thumb-wrap{
    width:100%;
    height:200px !important; /* 🔥 força altura real */
    overflow:hidden;
    background:#eee;
    position:relative;
}

.home-main .popular-item .thumb-wrap img{
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
    display:block !important;
}
/* =========================
MAIS LIDOS — PADRONIZAÇÃO REAL (CORREÇÃO DEFINITIVA)
========================= */

.popular-list{
display:grid !important;
grid-template-columns:repeat(2,1fr) !important;
gap:16px !important;
}

@media(min-width:768px){
.popular-list{
grid-template-columns:repeat(3,1fr) !important;
gap:20px !important;
}
}

.popular-item .thumb-wrap{
width:100%;
aspect-ratio:1/1 !important;
overflow:hidden;
border-radius:10px;
background:#eee;
}

.popular-item .thumb-wrap img{
width:100% !important;
height:100% !important;
object-fit:cover !important;
display:block;
}


/* =========================
TRENDING — ALINHAMENTO REAL
========================= */

.trending-item .card-content{
display:flex;
flex-direction:column;
align-items:flex-start;
}

.trending-item .category{
margin-top:4px !important;
margin-bottom:2px !important;
text-align:left !important;
}

.trending-item h3{
font-size:18px !important;
margin-top:2px !important;
text-align:left !important;
}


/* =========================
RESUMOS — ITÁLICO (FORÇADO)
========================= */

.post-excerpt,
.trend-excerpt{
font-size:14px;
line-height:1.6;
color:#555;
text-align:left;
margin-top:6px;
font-style:italic !important;
font-family: Georgia, serif !important;
}


/* =========================
CTA PADRÃO
========================= */

.read-more{
display:block;
margin-top:6px;
font-size:13px;
font-weight:600;
text-align:right;
color:#000;
}

.read-more:hover{
text-decoration:underline;
}
/* =========================
FIX FINAL — MAIS LIDOS (PRIORIDADE MÁXIMA)
========================= */

.popular-item .thumb-wrap{
aspect-ratio:1/1 !important;
overflow:hidden !important;
}

.popular-item .thumb-wrap img{
width:100% !important;
height:100% !important; /* 🔥 SOBRESCREVE O height:auto */
object-fit:cover !important;
display:block !important;
}


/* =========================
TRENDING — AJUSTE REAL
========================= */

.trending-item .card-content{
display:flex;
flex-direction:column;
align-items:flex-start;
}

.trending-item .category{
margin-top:4px !important;
margin-bottom:2px !important;
text-align:left !important;
}

.trending-item h3{
font-size:18px !important;
margin-top:2px !important;
text-align:left !important;
}


/* =========================
RESUMOS — ITÁLICO FORÇADO
========================= */

.post-excerpt,
.trend-excerpt{
font-style:italic !important;
font-family: Georgia, serif !important;
}
/* ===== AUTOR / META DO POST ===== */
.post-author{
display:flex;
align-items:center;
justify-content:space-between;
margin-top:10px;
margin-bottom:20px;
}

/* BLOCO ESQUERDO (logo + textos) */
.author-left{
display:flex;
align-items:center;
gap:10px;
}

/* MINI LOGO */
.author-avatar{
width:32px;
height:32px;
object-fit:contain;
}

/* META EM COLUNA (CORREÇÃO PRINCIPAL) */
.author-meta{
display:flex;
flex-direction:column;
justify-content:center;
}

/* AUTOR */
.author-name{
font-size:13px;
color:#444;
line-height:1.2;
}

/* "por" sem destaque */
.author-prefix{
font-weight:400;
font-style:italic;
}

/* "Mente Acima" com peso */
.author-name strong{
font-weight:700;
}

/* CATEGORIA (AGORA ALINHA CORRETAMENTE ABAIXO) */
.post-category{
font-size:12px;
color:#666;
text-decoration:none;
margin-top:2px;
display:block;
line-height:1.2;
}

.post-category:hover{
text-decoration:underline;
}

/* DATA À DIREITA */
.post-date{
font-size:11px;
color:#9c9c9c;
white-space:nowrap;
}

/* ===== FIX FINAL AUTOR / CATEGORIA ===== */

.post-author{
display:flex;
align-items:center;
justify-content:space-between;
}

.author-left{
display:flex;
align-items:center;
gap:10px;
}

/* GARANTE COLUNA LIMPA */
.author-meta{
display:flex;
flex-direction:column;
position:relative;
}

/* CORREÇÃO CRÍTICA */
.post-category{
position:static !important;
display:block !important;
margin:4px 0 0 0 !important;
padding:0 !important;
line-height:1.3 !important;
clear:both !important;
}

/* REMOVE QUALQUER INTERFERÊNCIA GLOBAL */
.post-author .category{
position:static !important;
float:none !important;
}

/* SEGURANÇA EXTRA */
.author-name{
display:block;
line-height:1.2;
}
/* ================================
CORREÇÃO DEFINITIVA - POST AUTHOR
ISOLAMENTO TOTAL DO BLOCO
================================ */

/* container principal */
.post-author{
display:flex;
justify-content:space-between;
align-items:center;
}

/* lado esquerdo (logo + textos) */
.author-left{
display:flex;
align-items:center;
gap:10px;
}

/* logo */
.author-avatar{
width:32px;
height:32px;
object-fit:contain;
flex-shrink:0;
}

/* coluna de texto */
.author-meta{
display:flex;
flex-direction:column;
justify-content:center;
}

/* autor */
.author-name{
font-size:13px;
color:#444;
line-height:1.2;
margin:0;
}

/* REMOVE QUALQUER ESTILO GLOBAL DE .category */
.post-author .post-category,
.post-author .category{
all: unset !important;
display:block !important;
font-size:12px !important;
color:#666 !important;
margin-top:4px !important;
line-height:1.3 !important;
cursor:pointer;
}

/* hover */
.post-author .post-category:hover{
text-decoration:underline;
}

/* data */
.post-date{
font-size:11px;
color:#9c9c9c;
white-space:nowrap;
}
/* ===== AJUSTE FINAL CATEGORIA ===== */

.author-meta{
display:flex;
flex-direction:column;
align-items:flex-start; /* garante alinhamento à esquerda */
}

/* força quebra de linha real */
.post-category{
display:block !important;
width:100% !important;
margin-top:6px !important;

/* estilo solicitado */
font-size:14px !important;
text-transform:uppercase !important;
letter-spacing:0.5px;
font-weight:600;
color:#555;
}

/* garante que author não concorra */
.author-name{
display:block;
width:100%;
}
/* ===== ESTRUTURA CORRETA EM 2 LINHAS ===== */

.post-author{
display:flex;
justify-content:space-between;
align-items:center;
}

/* vira um mini-grid: logo + conteúdo */
.author-left{
display:flex;
align-items:flex-start; /* 🔥 ESSENCIAL: tira centralização vertical */
gap:10px;
}

/* coluna de texto */
.author-meta{
display:flex;
flex-direction:column;
justify-content:flex-start;
}

/* linha 1: author */
.author-name{
font-size:13px;
color:#444;
line-height:1.2;
margin:0;
}

/* linha 2: categoria (forçada para baixo) */
.post-category{
display:block !important;
margin-top:6px !important;

/* estilo solicitado */
font-size:14px !important;
text-transform:uppercase !important;
letter-spacing:0.5px;
font-weight:600;
color:#555;
}

/* data alinhada com author (linha central visual) */
.post-date{
font-size:11px;
color:#9c9c9c;
white-space:nowrap;
align-self:center;
}