/* Estilos isolados para a página de leitura */
    .article-section { padding: 60px 20px; background-color: #ffffff; }
    .article-container { max-width: 800px; margin: 0 auto; }
    
    .article-header { margin-bottom: 40px; }
    .article-category { display: inline-block; background: var(--brand-primary); color: white; padding: 4px 12px; border-radius: 4px; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; margin-bottom: 16px; }
    .article-title { font-size: 2.5rem; color: var(--brand-dark); line-height: 1.2; margin-bottom: 16px; font-weight: 800; }
    .article-meta { color: var(--text-muted); font-size: 0.95rem; display: flex; align-items: center; gap: 16px; border-bottom: 1px solid #e2e8f0; padding-bottom: 24px; }
    
    .article-cover { width: 100%; height: auto; max-height: 450px; object-fit: cover; border-radius: 12px; margin-bottom: 40px; box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }
    
    /* Área do texto formatado */
    .article-content { font-size: 1.1rem; line-height: 1.8; color: #334155; }
    .article-content p { margin-bottom: 24px; }
    .article-content h2, .article-content h3 { color: var(--brand-dark); margin: 40px 0 16px; }
    .article-content ul, .article-content ol { margin-bottom: 24px; padding-left: 24px; }
    .article-content li { margin-bottom: 8px; }
    
    .back-link { display: inline-flex; align-items: center; gap: 8px; color: var(--brand-primary); font-weight: 600; margin-bottom: 32px; transition: color 0.2s; }
    .back-link:hover { color: var(--brand-dark); }
    
    @media (max-width: 768px) {
        .article-title { font-size: 1.8rem; }
        .article-content { font-size: 1.05rem; }
    }

    /* ==========================================================================
   RODAPÉ DA NOTÍCIA (ENGAJAMENTO)
   ========================================================================== */
.article-footer { margin-top: 60px; border-top: 2px solid #f1f5f9; padding-top: 40px; }

.share-box { display: flex; align-items: center; gap: 16px; margin-bottom: 40px; flex-wrap: wrap; }
.share-box p { font-weight: 600; color: var(--text-muted); margin: 0; }
.btn-share-wa { 
    background: #128c7e; 
    color: white; 
    padding: 10px 20px; 
    border-radius: 6px; 
    font-weight: bold; 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    transition: background-color 0.3s ease; /* Ajustado para transição de cor */
    text-decoration: none; 
}

.btn-share-wa:hover { 
    background-color: #075e54; /* Verde mais escuro do WhatsApp */
    color: white; 
}

/* ==========================================================================
   CALL TO ACTION (CTA) - ASSOCIAÇÃO SINDICAL
   ========================================================================== */
.union-cta-box {
    background: linear-gradient(135deg, var(--brand-dark) 0%, #1e293b 100%);
    color: white;
    padding: 40px;
    border-radius: 16px;
    display: flex; /* Alinha os itens lado a lado no desktop */
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); /* Sombra suave para dar destaque */
    position: relative;
    overflow: hidden;
}

/* Detalhe visual de fundo (círculo sutil no canto superior direito) */
.union-cta-box::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: var(--brand-primary);
    opacity: 0.15;
    border-radius: 50%;
    z-index: 0;
}

/* Garante que o texto e botão fiquem acima do círculo de fundo */
.cta-content, .cta-action {
    position: relative;
    z-index: 1;
}

.cta-content {
    flex: 1;
    text-align: left;
}

.union-cta-box h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
}

.union-cta-box h3 i {
    color: var(--brand-accent); /* Ícone com a cor de destaque do tema */
}

.union-cta-box p {
    color: #cbd5e1; /* Cinza claro para não ofuscar o título */
    margin-bottom: 0; /* Margin removida pois o botão agora está do lado */
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Botão do CTA */
.btn-cta-associese {
    background: var(--brand-accent);
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap; /* Evita que o texto do botão quebre em duas linhas */
}

.btn-cta-associese:hover {
    background: #ffffff;
    color: var(--brand-accent); /* Inverte as cores no hover para chamar atenção */  
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

/* Responsividade: Quebra para empilhado no celular */
@media (max-width: 768px) {
    .union-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 32px 20px;
        gap: 24px;
    }
    
    .cta-content {
        text-align: center;
    }
    
    .union-cta-box h3 {
        justify-content: center;
        font-size: 1.5rem;
    }
    
    .btn-cta-associese {
        width: 100%;
        justify-content: center;
    }
}

/* Estilo para as Citações (Blockquote) do CKEditor */
.article-content blockquote {
    border-left: 5px solid #10b981; /* Cor da barrinha vertical (Ajuste para o verde do seu layout se necessário) */
    margin: 1.5rem 0;
    padding: 0.5rem 1.5rem;
    font-style: italic;
    color: #4b5563; /* Cinza escuro para dar destaque */
    background-color: #f8fafc; /* Fundo levemente acinzentado */
    border-radius: 0 8px 8px 0;
}

/* Garante que o parágrafo dentro da citação não desalinhe o fundo */
.article-content blockquote p {
    margin-bottom: 0;
}

.article-meta {
    display: flex; 
    flex-wrap: wrap; 
    gap: 15px; 
    align-items: center; 
    margin-top: 10px;
}