/* Blog single page - full page layout (gray background like site) */
.bodyBlogPost .blogPost_page {
    float: left;
    width: 100%;
    min-height: 50vh;
    padding: 30px 0 60px 0;
    background: #F5F6FB;
}
.bodyBlogPost .blogPost_page .wtContainer {
    display: flex;
    justify-content: center;
    width: 100%;
    float: none;
    margin: 0 auto;
}
.bodyBlogPost .blogPost_article {
    float: none;
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    background: #FFF;
    padding: 30px;
    border-radius: 15px;
    box-sizing: border-box;
}
.bodyBlogPost .blogPost_topBar {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}
.bodyBlogPost .blogPost_autorInline {
    display: flex;
    align-items: center;
    gap: 10px;
}
.bodyBlogPost .blogPost_autorInline .blogPost_autorLabel {
    font-size: 12px;
    color: #677296;
}
.bodyBlogPost .blogPost_autorInline .blogPost_autorFoto {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}
.bodyBlogPost .blogPost_autorInline .blogPost_autorFoto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bodyBlogPost .blogPost_autorInline .blogPost_autorNome {
    font-size: 14px;
    font-weight: 600;
    color: #000;
}
.bodyBlogPost .blogPost_topBarBtns {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.bodyBlogPost .blogPost_btnWiki {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    height: 40px;
    border-radius: 10px;
    background-color: #34BFA3;
    color: #FFF;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}
.bodyBlogPost .blogPost_btnWiki:hover {
    background-color: #2da892;
    color: #FFF;
}
.bodyBlogPost .blogPost_btnWiki i {
    font-size: 14px;
}
.bodyBlogPost .blogPost_btnBlog--disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}
.bodyBlogPost .blogPost_shareTop {
    flex-shrink: 0;
}
.bodyBlogPost .blogPost_capa {
    float: left;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
}
.bodyBlogPost .blogPost_capa img {
    width: 100%;
    display: block;
    object-fit: cover;
    max-height: 450px;
}
.bodyBlogPost .blogPost_titulo {
    float: left;
    width: 100%;
    font-size: 1.9rem;
    font-weight: 700;
    color: #000;
    line-height: 1.3;
    margin: 0 0 12px 0;
}
.bodyBlogPost .blogPost_meta {
    float: left;
    width: 100%;
    color: #677296;
    font-size: 14px;
    margin-bottom: 25px;
}
.bodyBlogPost .blogPost_conteudo {
    float: left;
    width: 100%;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}
.bodyBlogPost .blogPost_conteudo p {
    margin-bottom: 1em;
}
.bodyBlogPost .blogPost_conteudo img {
    max-width: 100%;
    height: auto;
}
.bodyBlogPost .blogPost_emptyCard {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    text-align: center;
    padding: 48px 32px;
}
.bodyBlogPost .blogPost_emptyTitle {
    margin: 0 0 18px 0;
    float: none;
    width: 100%;
    padding: 22px 0 0 0;
    position: relative;
    font-size: 35px;
    font-weight: 600;
    line-height: 40px;
    color: #222;
    text-align: center;
    justify-content: center;
}
.bodyBlogPost .blogPost_emptyTitle::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 60px;
    height: 8px;
    border-radius: 20px;
    background-color: #564DC0;
    transform: translateX(-50%);
}
.bodyBlogPost .blogPost_emptyTitle span {
    color: #34BFA3;
}
.bodyBlogPost .blogPost_emptyText {
    margin: 0;
    max-width: 520px;
    font-size: 16px;
    line-height: 1.6;
    color: #677296;
    text-align: center;
}
.bodyBlogPost .blogPost_autor {
    float: left;
    width: 100%;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #E5E9F3;
}
.bodyBlogPost .blogPost_autor small {
    display: block;
    font-size: 12px;
    color: #677296;
    margin-bottom: 15px;
}
.bodyBlogPost .blogPost_autorInner {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 20px;
}
.bodyBlogPost .blogPost_autorFoto {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
}
.bodyBlogPost .blogPost_autorFoto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bodyBlogPost .blogPost_autorInfo {
    flex: 1;
    min-width: 200px;
}
.bodyBlogPost .blogPost_autorNome {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}
.bodyBlogPost .blogPost_autorRedes {
    margin-bottom: 10px;
}
.bodyBlogPost .blogPost_autorRedes a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-right: 8px;
    background: #E5E9F3;
    border-radius: 50%;
    color: #677296;
    transition: all 0.2s;
}
.bodyBlogPost .blogPost_autorRedes a:hover {
    background: #A3AAC0;
    color: #FFF;
}
.bodyBlogPost .blogPost_autorDesc {
    font-size: 14px;
    color: #677296;
    line-height: 1.5;
}

/* Headings aligned to left */
.bodyBlogPost .wtSection h3,
.bodyBlogPost .infoDestino_blogWiki h3 {
    text-align: left;
    justify-content: flex-start;
}
.bodyBlogPost .infoDestino_blogWiki h3::before {
    left: 0;
}
.bodyBlogPost .blogWiki_txt h2 {
    text-align: left;
}

/* More posts from author - same layout as pesquisa.ejs */
.bodyBlogPost .infoDestino_blogWiki.wtBlogWiki {
    margin-top: 60px;
    border-top: 1px solid #D0D4E9;
    padding-top: 0;
}
.bodyBlogPost .blogWiki_itemLink {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Blog Autor - padrão print: 1080px total, Ler Post Completo = link azul */
.bodyBlogAutor .blogAutor_page .wtContainer.blogAutor_container {
    width: 100% !important;
    max-width: 1080px !important;
    margin: 0 auto;
    box-sizing: border-box;
}
.bodyBlogAutor .blogAutor_main {
    flex: 1;
    min-width: 0;
}
.bodyBlogAutor .blogPost_article {
    max-width: 100%;
}
.bodyBlogAutor .blogAutor_btnLer {
    background: none !important;
    color: #564DC0 !important;
    padding: 0 !important;
    height: auto !important;
    font-size: 16px !important;
    margin-top: 15px !important;
    border-radius: 0 !important;
}
.bodyBlogAutor .blogAutor_btnLer:hover {
    background: none !important;
    color: #443D99 !important;
    text-decoration: underline;
}
