.lista-posts {
    position: relative;
}

.lista-posts h2 {
    margin: 0 0 10px 0;
}

.lista-posts .itens-posts {
    display: flex;
    gap: 20px;
    margin: 40px 0 0 0;
}

.lista-posts .itens-posts .item-post {
    width: 100%;
    max-width: 305px;
    border-radius: 20px;
    border: 1px solid #00383F;
}

.lista-posts .itens-posts .item-post img {
    width: 100%;
    max-width: 305px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.lista-posts .itens-posts .item-post .conteudo-post {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 15px;
    min-height: 310px;
}

.lista-posts .itens-posts .item-post .conteudo-post h6 {
    font-size: 10px;
    color: #097268;
    font-weight: 600;
    margin: 0;
    padding: 0;
}

.lista-posts .itens-posts .item-post .conteudo-post h3 {
    font-size: 22px;
    color: #00383F;
    font-weight: 600;
    margin: 5px 0 10px 0;
}

.lista-posts .itens-posts .item-post .conteudo-post p {
    font-size: 16px;
    color: #00383F;
    font-weight: 500;
}

.lista-posts .itens-posts .item-post .conteudo-post .btn-leia-mais {
    background-color: #097268;
    padding: 5px 10px;
    border-radius: 5px;
    width: 40%;
    text-align: center;
    color: #F3EEE8;
    font-size: 14px;
    font-weight: 600;
    transition: all 1s;
    border: 2px solid #F3EEE8;
}

.lista-posts .itens-posts .item-post .conteudo-post .btn-leia-mais:hover {
    color: #097268;
    background-color: #F3EEE8;
    border: 2px solid #097268;
}

@media screen and (max-width: 1000px) {
    .lista-posts .itens-posts {
        flex-direction: column;
        align-items: center;
    }    
}




