.flux-articles-container{
    display: flex;
    justify-content: center;
    position: relative;
    padding: 0 calc(var(--container-space)/2);
    & .flux-articles-wrapper{
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 4rem var(--container-space) 4rem;
        justify-content: space-between;
        max-width: 1700px;
        border-radius: 40px;
        background-color: rgba(173, 229, 94, 0.20);
        border: solid 1px var(--wp--preset--color--vert-clair);
        & .flux-articles-msg{
            color: var(--wp--preset--color--vert);
            background-color: var(--wp--preset--color--blanc);
            border-radius: 50px;
            padding: 16px 20px;
            display: flex;
            width: fit-content;
            border: 1px solid var(--wp--preset--color--vert);
        }
        & .flux-articles-head{
            display: flex;
            justify-content: space-between;
            margin: 2rem 0;
            & .flux-articles-title{
                margin: 0;
            }
            & .flux-articles-btn{
                display: flex;
                margin-top: auto;
                font-size: var(--wp--preset--font-size--s-text);
                font-weight: 600;
                gap: 0.5rem;
                padding-bottom: 0.5rem;
                border-bottom: solid 1px var(--wp--preset--color--noir);
                width: fit-content;
                transition: gap 0.3s ease;
                & span {
                    display: flex;
                    width: 16px;
                    height: 16px;
                    background: url(../../../assets/svg/btn-arrow-3.svg) no-repeat center center;
                }
                &:hover {
                    gap: 1.5rem;
                }
            }
        }
        & .flux-articles-list{
            display: flex;
            justify-content: space-between;
            & .flux-article-card{
                display: flex;
                flex-direction: column;
                width: 24%;
                position: relative;
                border-radius: 18px;
                border: solid 1px var(--wp--preset--color--vert);
                aspect-ratio: 1;
                & a{
                    width: 100%;
                    height: 100%;
                    display: flex;
                    & .flux-article-thumb{
                        display: flex;
                        flex-direction: column;
                        width: 100%;
                        height: 100%;
                        position: absolute;
                        top: 0;
                        left: 0;
                        z-index: 0;
                        & img{
                            position: absolute;
                            top: 0;
                            left: 0;
                            width: 100%;
                            height: 100%;
                            border-radius: 18px;
                            object-fit: cover;
                        }
                        &::after{
                            content: '';
                            position: absolute;
                            top: 0;
                            left: 0;
                            width: 100%;
                            height: 100%;
                            background-color: rgba(0, 0, 0, 0.35);
                            border-radius: 18px;
                        }
                    }
                    & .flux-article-infos{
                        display: flex;
                        flex-direction: column;
                        padding: 1rem 1rem;
                        margin-top: auto;
                        position: relative;
                        z-index: 1;
                        color: var(--wp--preset--color--blanc);
                        transition: transform 0.3s ease;
                        & .flux-articles-date{
                            font-size: var(--wp--preset--font-size--s-text);
                            font-weight: 400;
                            padding-bottom: 0.25rem;
                        }
                        & .flux-article-title{
                            font-size: var(--wp--preset--font-size--m-text);
                            font-weight: 600;
                            margin: 0;
                        }
                        & .flux-article-infos-btn{
                            display: flex;
                            font-size: 12px;
                            font-weight: 600;
                            gap: 0.5rem;
                            padding-top: 1rem;
                            padding-bottom: 0.5rem;
                            border-bottom: solid 1px var(--wp--preset--color--blanc);
                            width: fit-content;
                            transition: gap 0.3s ease;
                            & span{
                                display: flex;
                                width: 16px;
                                height: 16px;
                                background: url(../../../assets/svg/btn_arrow_2.svg) no-repeat center center;
                            }
                            &:hover {
                                gap: 1.5rem;
                            }
                        }
                    }
                }
            }
        }
    }
}
@media (max-width: 576px) { 
    .flux-articles-container {
        & .flux-articles-wrapper {
            padding: 2rem var(--container-space) 2rem;
            & .flux-articles-head {
                display: flex;
                flex-direction: column;
                margin-top: 1rem;
                & .flux-articles-title{
                    & p{
                        margin-top: 0;
                        & span{
                            font-size: var(--wp--preset--font-size--l-title) !important;
                        }
                    }
                }
            }
            & .flux-articles-list{
                flex-wrap: wrap;
                gap: 1rem;
                & .flux-article-card{
                    width: 100%;
                    overflow: hidden;
                }
            }
        }
    }
}