* {
    font-size: 100%;
}

.blog {
    margin: 120px 40px;
}

.blog-header, .blog-header h1 {
    text-align: start;
    /* font-size: 1.4em; */
}

.blog-box {
    display: flex;   
    gap: 20px;
}

/* BLOG BOX */
.blog-menu-lateral {
    /* background-color: #222324; */

    background: rgb(39,39,39);
    background: radial-gradient(circle, rgba(39,39,39,1) 0%, rgba(1,8,14,1) 63%, rgba(34,35,36,1) 100%);

    border-radius: 10px;
    min-width: 200px;
    padding: 20px;
    text-align: start;
}

.blog-menu-lateral ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
/* 
.blog-menu-lateral ul li{
    
} */
.blog-menu-lateral ul li a {
    color: white;
    font-weight: 600;
    font-size: 1em;
}

.blog-menu-lateral ul li a:hover {
    color: #CBB05A;
}
/* FIM BLOG BOX */


/* BLOG BOX CONTAINER */
.blog-box-container {
    display: flex;
    flex-direction: column;
    /* background-color: #222324; */

    background: rgb(39,39,39);
    background: radial-gradient(circle, rgba(39,39,39,1) 0%, rgba(1,8,14,1) 63%, rgba(34,35,36,1) 100%);
    border-radius: 10px;
    max-width: 1200px;
}
/* FIM BLOG BOX CONTAINER */


/* BLOG LATERAL POST */
.blog-posts {
    display: flex;
    /* justify-content: center; */
    /* flex-wrap: wrap; */
}

.post {
    display: flex;
    flex-direction: column;
    /* min-width: 235px; */
    width: 100%;
    /* width: 330px; */
    padding: 20px;
}

.post img {
    width: 100%;
    border-radius: 10px 10px 0 0;
    /* height: 200px; */
    min-height: 120px;
    object-fit: cover;
}

.post span {
    background-color: #CBB05A;
    margin: 5px 0;
    padding: 5px;
    color: #222324;
    font-weight: 600;
    font-size: 0.8em;
}

.post h2 {
    color: #CBB05A;
    font-size: 0.9em;
    text-align: start;
    padding-bottom: 15px;
}

.post p {
    text-align: justify;
    color: #ccc;
    font-size: 0.8em;
}

.post p:last-child {
    color: #CBB05A;
    /* background-color: #CBB05A; */
    width: 100px;
    text-align: start;
    margin-top: 30px;
}



/* RESPONSIVO */
@media (max-width: 787px) {
    .blog {
        margin: 120px 20px;
    }

    .blog-box {
        flex-direction: column;
    }

    .blog-menu-lateral {
        min-width: 100%;
    }

    .blog-box-container {
        max-width: 100%;
    }

    .blog-posts {
        display: flex;
        /* justify-content: center; */
        flex-wrap: wrap;
    }

    .post {
        display: flex;
        flex-direction: column;
        /* min-width: 135px; */
        width: 100%;
        /* max-width: 130px; */
        padding: 20px;
    }

    .post p:last-child {
        margin-top: 10px;
    }
}









/* POSTAGEM DAS PÁGINAS DO BLOGS */
.postagem {
    margin-top: 130px;
    /* padding: 0 60px; */
}

.postagem-container h1 {
    font-size: 1.4em;
    text-align: start;
    padding-bottom: 20px;    
}

.postagem-container img {
    min-width: 250px;
    width: 60%;
    border-radius: 10px 10px 0 0;
    /* min-height: 200px; */
    /* object-fit: cover; */
}

.post-header img {
    min-width: 350px;
    width: 60%;
    min-height: 100px;
    object-fit: cover;
    margin: 0 auto;
}

.post-header h1 {
    font-size: 1.2em;
    text-align: start;
    padding: 30px;
}


/* FIM POSTAGEM DAS PÁGINAS DO BLOGS */