/* ============================================================
   MRC CONSULTORIA — Estilos exclusivos de mrc_blog.html
   ============================================================ */

/* ── Cabeçalho do artigo ── */
.artigo-header {
    padding: 50px 5% 30px;
    background-color: var(--grafite);
    border-bottom: 1px solid rgba(179, 139, 109, 0.3);
}

.artigo-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--branco-gelo);
    line-height: 1.4;
    margin-bottom: 12px;
}

.artigo-header h2 {
    font-size: 16px;
    color: var(--dourado);
    font-weight: normal;
}

/* ── Imagem do artigo ── */
.artigo-imagem {
    display: block;
    width: calc(100% - 10%);
    margin: 30px 5%;
    max-height: 340px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid var(--dourado);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

/* ── Corpo do texto ── */
section {
    padding: 10px 5% 60px;
}

section p {
    font-size: 15px;
    line-height: 1.9;
    color: #d0d0d0;
    margin-bottom: 18px;
}

section p b {
    color: var(--branco-gelo);
}

/* ── Responsivo exclusivo do blog ── */
@media screen and (max-width: 1005px) {

    .artigo-header {
        padding: 30px 5% 20px;
    }

    .artigo-header h1 {
        font-size: 20px;
    }

    .artigo-imagem {
        max-height: 200px;
    }

    section {
        padding: 10px 5% 40px;
    }
}
