/**
 * CSS ESPECÍFICO PARA AUTOR DO POST
 * Blog Tec Perifa - 2026
 * 
 * Este arquivo garante que o nome do autor apareça SEMPRE
 */

/* Cabeçalho do Post */
.materia .cabecalho,
.cabecalho {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

/* Título do Post */
.materia .cabecalho h1,
.cabecalho h1 {
    font-size: 2.5em;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 15px 0;
    line-height: 1.2;
    text-transform: uppercase;
}

/* Data do Post */
.materia .cabecalho .data,
.materia .cabecalho .post-date,
.cabecalho .data,
.cabecalho .post-date {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-size: 0.95rem;
    color: #666;
    margin: 10px 0 5px 0;
    font-weight: 400;
    line-height: 1.4;
}

/* Autor do Post - GARANTIR QUE APAREÇA */
.materia .cabecalho .autor,
.materia .cabecalho .post-author,
.materia .cabecalho .post-author-forced,
.cabecalho .autor,
.cabecalho .post-author,
.cabecalho .post-author-forced {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    font-size: 1rem !important;
    color: #666 !important;
    margin: 5px 0 10px 0 !important;
    padding: 0 !important;
    font-style: italic !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    text-align: left !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    max-width: none !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
    clip: auto !important;
    clip-path: none !important;
    transform: none !important;
    z-index: 1 !important;
}

/* Garantir que o texto do autor seja visível */
.materia .cabecalho .autor::before,
.materia .cabecalho .post-author::before,
.cabecalho .autor::before,
.cabecalho .post-author::before {
    content: none !important;
}

.materia .cabecalho .autor::after,
.materia .cabecalho .post-author::after,
.cabecalho .autor::after,
.cabecalho .post-author::after {
    content: none !important;
}

/* Responsividade */
@media (max-width: 768px) {
    .materia .cabecalho h1,
    .cabecalho h1 {
        font-size: 1.8em;
    }
    
    .materia .cabecalho .data,
    .materia .cabecalho .post-date,
    .cabecalho .data,
    .cabecalho .post-date {
        font-size: 0.9rem;
    }
    
    .materia .cabecalho .autor,
    .materia .cabecalho .post-author,
    .cabecalho .autor,
    .cabecalho .post-author {
        font-size: 0.95rem !important;
    }
}

/* Garantir ordem visual correta */
.cabecalho > * {
    order: 0;
}

.cabecalho h1 {
    order: 1;
}

.cabecalho .data,
.cabecalho .post-date {
    order: 2;
}

.cabecalho .autor,
.cabecalho .post-author,
.cabecalho .post-author-forced {
    order: 3 !important;
}

