.conteiner_posts{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 2rem 10% 1rem 10%;
    gap: 15px;
    background-color: #E5E5E5;
}

.list_posts{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 75%;
    padding: 15px;
    gap: 15px;
    overflow-y: scroll;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
}

.list_posts::-webkit-scrollbar {
    width: 8px;
}

.list_posts::-webkit-scrollbar-track {
    background: transparent;
}

.list_posts::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

.post_card{
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #F7F2E9;
    /* border: 2px solid #8C4C27; */
    border-radius: 16px;
    padding: 15px;
    text-decoration: none;
    color: #384001;
    box-shadow: 0 8px 16px rgba(89, 38, 20, 0.1);
    transition: transform 0.2s ease;
    &:hover{
        transform: scale(1.02);
        background-color: #eeebe1;
    }
}

.cabecalho_card_post{
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding-bottom: 8px;
    /* font-family: AbhayaLibre, sans-serif; */
    color: #592614;
    font-family: FoundersGrotesk, sans-serif;
}

/* Ajustar uma imagem depois */

.divisor_post{
    display: flex;
    width: 100%;
    background-color: #8C4C28;
    height: 2px;
    margin-bottom: 8px;
}

.conteudo_card_post{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    color: #8C4C28;
    font-family: AbhayaLibre, sans-serif;
}

.imagem_post{
    display: flex;
    width: 40%;
}

.imagem_post img{
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
    border-radius: 6px;
    &:hover{
        transform: scale(1.02);
    }
}

.texto_conteudo_card_post{/* Parao texto com imagem */
    width: 54%;
}

.texto_conteudo_card_post_max{/* Para o texto sem imagem */
    width: 100%;
}

.paginacao_posts{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    color: #8C4C28;
    gap: 3px;
}

.paginacao_posts a {
    color: #8C4C28;
}

.sem_posts_lista{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.sem_posts_card{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60%;
    padding: 10px;
    background-color: #F7F2E9;
    /* border: 2px solid #8C4C27; */
    border-radius: 16px;
    text-decoration: none;
    color: #592614;
    box-shadow: 0 8px 16px rgba(89, 38, 20, 0.1);
    transition: transform 0.2s ease;
    gap: 10px;
    text-align: center;
    font-family: AbhayaLibre, sans-serif;
    &:hover{
        transform: scale(1.01);
        background-color: #eeebe1;
    }
}

.sem_posts_card h2{
    font-size: 1.4rem;
}

.sem_posts_card p{
    font-size: 1.1rem;
}

/* Detalhando post */
.conteiner_post{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 5% 20% 10% 20%;
    background-color: #E5E5E5;
    gap: 10px;
}

.card_post_detalher{
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 15px;
    background-color: #e5e5e55e;
    border-radius: 35px;
    box-shadow: 0 0 8px rgba(89, 38, 20, 0.15);
}

.cabecalho_post{
    display: flex;
    width: 100%;
    margin-bottom: 15px;
    font-family: AbhayaLibre, sans-serif;
}

.imagem_post_detal{
    display: block;
}

.imagem_post_detail img{
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    transition: transform 0.4s ease;
    margin-bottom: 20px;
    &:hover{
        transform: scale(1.02);
    }
}

.conteudo_post{
    display: flex;
    width: 100%;
    flex-direction: column;
    text-align: justify;
    font-family: AbhayaLibre, sans-serif;
    margin-bottom: 25px;
}

.conteudo_post li{
    margin-left: 30px;
}

.ver_mais_posts{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 15px;
}

.cabecalho_ver_mais{
    display: flex;
    width: 100%;
    justify-content: center;
    font-family: AbhayaLibre, sans-serif;
}

@media (max-width: 980px) {
    .conteiner_posts{
        padding: 2rem 5% 1rem 5%;
    }
}


@media (max-width: 850px) {
    .conteiner_posts{
        padding: 2rem 1% 1rem 1%;
    }
    .sem_posts_card{
        width: 80%;
    }
}

@media (max-width: 800px) {
    .imagem_post{
        width: 100%;
    }

    .texto_conteudo_card_post{
        width: 100%;
    }

    .sem_posts_card{
        width: 100%;
    }

    /* Detalhando post */
    .conteiner_post{
        padding: 5% 10% 10% 10%;
    }
}