/* =================================================_
   MELHORIAS DA PÁGINA DE MATÉRIA (PADRÃO GRANDES PORTAIS)
   ================================================= */

/* Trilha de Navegação (Breadcrumb) */
.breadcrumb {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 20px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.breadcrumb a {
    color: #4b5563;
}

.breadcrumb a:hover {
    color: #2d3b96;
    text-decoration: underline;
}

/* Barra Superior do Artigo (Meta + Compartilhamento) */
.article-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.article-info-group {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #6b7280;
}

/* Botões de Compartilhamento */
.share-bar {
    display: flex;
    gap: 10px;
    align-items: center;
}

.share-btn {
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 4px;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: opacity 0.2s;
}

.share-btn:hover {
    opacity: 0.85;
    color: #fff;
}

.share-whatsapp { background-color: #25d366; }
.share-twitter { background-color: #000000; }
.share-linkedin { background-color: #0a66c2; }
.share-copy { background-color: #4b5563; cursor: pointer; border: none; }

/* Legenda da Imagem de Destaque */
.article-image-destaque figure {
    margin: 0;
}

.article-image-destaque img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: 8px;
}

.foto-legenda {
    font-size: 13px;
    color: #6b7280;
    margin-top: 8px;
    font-style: italic;
    line-height: 1.4;
}

/* Tipografia Avançada do Corpo da Matéria */
.article-body h2 {
    font-size: 24px;
    color: #111827;
    margin: 35px 0 15px 0;
    font-weight: 700;
    border-left: 4px solid #2d3b96;
    padding-left: 12px;
}

.article-body h3 {
    font-size: 20px;
    color: #1f2937;
    margin: 25px 0 12px 0;
    font-weight: 600;
}

.article-body blockquote {
    margin: 30px 0;
    padding: 20px 25px;
    background: #f8fafc;
    border-left: 4px solid #2d3b96;
    font-size: 20px;
    font-style: italic;
    color: #1e293b;
    line-height: 1.5;
    border-radius: 0 6px 6px 0;
}

/* Bloco de Tags */
.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #f3f4f6;
}

.tag-item {
    font-size: 12px;
    background: #f1f5f9;
    color: #475569;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 500;
}

.tag-item:hover {
    background: #e2e8f0;
    color: #1e293b;
}

/* Seção Leia Também (Matérias Relacionadas) */
.related-news-container {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #e5e7eb;
}

.related-news-container h3 {
    font-size: 20px;
    text-transform: uppercase;
    color: #111827;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}