/* --- LAYOUT ESPECÍFICO DO SINGLE POST --- */
.nav{
    display: flex !important;
}
/* 1. Header e Imagem Hero */
.post-hero-gray {
    background-color: #f5f5f5; /* Var: --gray-light */
    padding: 4rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.post-main-image {
    width: 60%;
    max-width: 800px;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: block;
    margin: 0 auto;
}

/* 2. Cabeçalho do Artigo (Título, Data, Meta) */
.post-header {
    margin-bottom: 2rem;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.category-pill {
    /* Assumindo que você já tem estilo de pílula, senão: */
    background-color: var(--primary-color, #003366);
    color: #fff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
}

.post-date {
    color: #666; /* Var: --text-gray */
    font-size: 0.9rem;
}

.post-title {
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--primary-900, #1a1a1a);
    font-weight: 900;
    margin-bottom: 1rem;
}

.post-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--primary-700, #4a4a4a);
    line-height: 1.5;
    margin-bottom: 1rem;
    font-family: inherit;
}

/* 3. Estilo do Conteúdo (O que vem do Editor WP) */
.post-content-style {
    text-align: left;
    line-height: 1.8;
    color: var(--text-color, #333);
    font-size: 1.125rem;
}

.post-content-style p {
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.post-content-style h2, 
.post-content-style h3 {
    color: var(--primary-900, #003366);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 900;
    line-height: 1.3;
}

.post-content-style h2 { font-size: 1.8rem; }
.post-content-style h3 { font-size: 1.5rem; }

.post-content-style ul, 
.post-content-style ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.post-content-style li {
    margin-bottom: 0.5rem;
}

/* Citação (Blockquote) */
.post-content-style blockquote {
    border-left: 5px solid var(--accent-yellow, #f4c430);
    background-color: #f9f9f9;
    padding: 2rem;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--primary-900, #333);
    border-radius: 0 16px 16px 0;
}

/* Imagens dentro do texto */
.post-content-style img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
}

.post-content-style figcaption {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-top: -1.5rem;
    margin-bottom: 2rem;
}

/* 4. Rodapé e Navegação */
.post-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.container--narrow {
    max-width: 800px;
    margin: 0 auto;
}

/* Mobile Responsivo */
@media (max-width: 768px) {
    .post-main-image {
        width: 90%;
    }
    .center-mobile {
        text-align: center;
    }
    .post-meta {
        justify-content: center;
    }
    .post-title {
        font-size: 2rem;
    }
    .hero__divider {
        margin: 2rem auto !important;
    }
}