.card-palpite-post {
    background-color: var(--bg-color-light);
    border-radius: 15px;
    border: 1px solid var(--green);
    width: 90%;
    max-width: 375px;
    height: 480px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media screen and (max-width: 768px) {
    .card-palpite-post {
        margin: 0 auto;
    }
    
}

.card-palpite-post h3{
    margin: 0 0 15px 0;
}

.card-palpite-post-img img{
    width: 100%;
    height: 200px;
    border-radius: 15px 15px 0 0;
    object-fit: cover;
}

.card-palpite-post-tags span{
    background-color: var(--green);
    padding: 5px 10px;
    position: absolute;
    top: 10px;
    right: 10px;
    border-radius: 15px;
    color: var(--bg-color-light);
}

.card-palpite-post-container{
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 0 25px;
}

.card-palpite-post-footer{
    background-color: var(--green);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    margin-bottom: 15px;
    width: 100%;
    border-radius: 15px;
}

.card-palpite-post-footer a{
    color: var(--bg-color-light);
    text-decoration: none;
    font-weight: 600;
}

.card-palpite-post-content{
    padding: 0 25px;
}

.card-palpite-post-content a:hover{
    text-decoration: none;
}