.card-palpite-post {
    background-color: var(--bg-color-light);
    border-radius: 15px;
    border: 1px solid white;
    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;
    }
    
}

@media screen and (min-width: 769px) {
    .card-palpite-post {
        max-width: none;
        height: auto;
        width: 90%;
    }

    .card-palpite-post img{
        object-position: top center;
    }

}

.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:hover{
    background-color: var(--green-dark);
}

.card-palpite-post-footer-cta{
    color: var(--bg-color-light);
}

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

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

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

.feature-card-noticias .card-palpite-post{
    width: 100%;
}

.feature-card-noticias .card-palpite-post .card-palpite-post-header{
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 768px) {
    .feature-card-noticias .card-palpite-post .card-palpite-post-header{
        flex-direction: column;
    }

}

.feature-card-noticias .card-palpite-post .card-palpite-post-header img{
    width: 550px;
    height: 100%;
    border-radius: 15px 0 0 15px;
}

@media screen and (max-width: 768px) {
    .feature-card-noticias .card-palpite-post .card-palpite-post-header img{
        width: 100%;
        height: 200px;
        border-radius: 15px 15px 0 0;
    }
}

.feature-card-noticias .card-palpite-post .card-palpite-post-header .card-palpite-post-content{
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}