/* <<< --- Actualites --- >>> */


#dix-astuces-simples-resolutions-sante-2025 {
    background-image: url(../imgs/10-astuces-simples-resolutions-sante-2025.jpg);
}
#dix-conseils-booster-testosterone {
    background-image: url(../imgs/10-conseils-booster-testosterone.jpg);
}
#douleur-sportive-chaud-froid {
    background-image: url(../imgs/douleur-sportive-chaud-froid.jpg);
}

#actualites .section-content {
    overflow: visible;
}

#actualites .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 60px;
    width: 100%;
    height: auto;
    overflow: visible;
}

#actualites .card-wrap {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    width: 100%;
    height: auto;
    overflow: visible;
}

#actualites .card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 370px;
    height: auto;
    background-color: var(--white);
    border-radius: 9px;
    outline: 1px solid var(--white-2);
    outline-offset: -1px;
    transition: .2s ease;
}

#actualites .card.-hover {
    opacity: 50%;
}

#actualites .card .cover {
    width: 100%;
    height: 190px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

#actualites .card-content {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 10px;
    width: 100%;
    height: auto;
    padding: 15px 30px 30px 30px;
}

#actualites .card .title {
    display: -webkit-box;
    font-size: 16px;
    font-weight: 600;
    line-height: 30px;
    color: var(--black);
    text-align: start;
    text-wrap: wrap;
    text-transform: uppercase;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    width: 100%;
    height: auto;
    overflow: hidden;
}

#actualites .btn {
    background-color: var(--black);
    color: var(--white);
    font-weight: 600;
}

#actualites .btn::after {
    background-color: var(--color);
}

#actualites .btn img {
    filter: invert(1);
}

#actualites-btn {
    font-size: 18px;
    font-weight: 700 !important;
    line-height: 20px;
    height: 50px;
    padding: 0 30px;
}

@media screen and (min-width: 980px) {
    #actualites .card:hover {
        outline: 1px solid var(--color);
    }
    #actualites .btn:hover {
        color: var(--black);
        background-color: var(--color);
    }
    #actualites .btn:hover img {
        filter: var(--filter-black);
    }
}

@media screen and (max-width: 470px) {
    #actualites .card {
        width: 100%;
    }
    #actualites .card .cover {
        height: 160px;
    }
    #actualites .card-content {
        padding: 15px 20px 20px 20px;
    }
    #actualites .card-content .title {
        font-size: 14px;
        line-height: 25px;
    }
}