﻿.container-detalhes_noticia {
    display: flex;
    margin-top: 8rem;
    font-family: Ubuntu;
}

.box-detalhes {
    display: flex;
    flex-direction: column;
    width: 70%;
    padding: 1rem 5rem;
    gap: 1rem;
}

.detalhes_titulo {
    width: 100%;
    font-size: 2rem;
}

.info-criador {
    width: 50%;
}

.info-criador > p,
.info-texto {
    font-size: 0.9rem;
    margin-top: -0.4rem;
}

.box-detalhes_img {
    width: 100%;
}

.box-detalhes_img > img {
    width: 100%;
}

.detalhes_conteudo {
    width: 100%;
    font-size: 1rem;
    text-align: justify;
    line-height: 1.4rem;
}

.dealhes_voltar {
    margin-top: 2rem;
    display: flex;
}

.dealhes-button_voltar {
    color: #fff;
    font-family: Ubuntu;
    font-size: 1rem;
    font-weight: 400;
    background-color: #4B1568;
    border: none;
    border-radius: 5px;
    padding: 0.5rem 2rem;
}

.container-post {
    width: 30%;
    display: flex;
    padding: 1rem 2rem;
    font-family: Ubuntu;
}

.hr {
    height: 520px;
    width: 2px;
    border-left: 2px solid #dddde1;
    margin-right: 2rem;
}

.post-titulo {
    color: #4B1568;
    font-size: 1.8rem;
    margin-top: 2rem;
}

.box-post {
    margin-top: 1rem;
}

.list-post {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    list-style: none;
}

.item-post {
    font-size: 1.8rem;
    line-height: 1.7rem;
}

.item-post > a {
    color: #000 !important;
}

@media screen and (min-width: 0px) and (max-width: 1024px) {

    .container-detalhes_noticia {
        display: flex;
        flex-direction: column;
    }

    .box-detalhes {
        display: flex;
        width: 100%;
        padding: 1rem 1rem;
        gap: 1rem;
    }

    .detalhes_titulo {
        width: 100%;
        font-size: 1.6rem;
    }

    .info-criador {
        width: 100%;
    }

    .info-criador > p,
    .info-texto {
        font-size: 0.7rem;
        margin-top: -0.4rem;
    }

    .dealhes_voltar {
        margin-top: 2rem;
        display: flex;
        justify-content: end;
    }

    .container-post {
        width: 100%;
        display: flex;
        padding: 1rem 1rem;
    }

    img {
        width: 100%!important;
        height: 100%!important;
    }

    h2 {
        font-size: 2rem;
    }

}

@media screen and (min-width: 481px) and (max-width: 1024px) {

    .container-post {
        width: 50%;
        display: flex;
        padding: 1rem 1rem;
    }

}