.archives-news-container{
    display: flex;
    padding: 1rem 0 3rem;
    justify-content: center;
    & .archives-news-wrapper{
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 0 var(--container-space);
        max-width: 1700px;
        & .archives-news-head{
            display: flex;
            width: 100%;
            justify-content: space-between;
            align-items: center;
            & .archives-news-title{
                border-radius: 50px;
                backdrop-filter: blur(5px);
                padding: 16px 20px;
                font-weight: 600;
                color: var(--wp--preset--color--blanc);
                font-size: var(--wp--preset--font-size--s-text);
            }
            & .archives-news-link{
                display: flex;
                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;
                }
            }
        }
        & .archives-news-list{
            display: flex;
            justify-content: space-between;
            & .archives-news-item{
                display: flex;
                position: relative;
                flex-direction: column;
                width: 24%;
                aspect-ratio: 1/1;
                border-radius: 18px;
                & .archives-news-thumb{
                    width: 100%;
                    height: 100%;
                    border-radius: 18px;
                    overflow: hidden;
                    position: absolute;
                    top: 0;
                    left: 0;
                    & img{
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                    }
                    &::after{
                        content: '';
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        background-color: rgba(0, 0, 0, 0.3);
                    }
                }
                .archives-news-content{
                    position: relative;
                    padding: 1rem;
                    z-index: 1;
                    color: var(--wp--preset--color--blanc);
                    margin-top: auto;
                    display: flex;
                    flex-direction: column;
                    gap: 0.5rem;
                    & .archives-news-item-date{
                        font-size: var(--wp--preset--font-size--s-text);
                    }
                    & .archives-news-item-title{
                        font-size: var(--wp--preset--font-size--m-text);
                        font-weight: 600;
                        margin: 0;
                        display: -webkit-box;
                        -webkit-line-clamp: 3;
                        -webkit-box-orient: vertical;
                        overflow: hidden;
                        text-overflow: ellipsis;
                    }
                }
            }
        }
    }
}
@media (max-width: 576px) {
    .archives-news-container{
        & .archives-news-wrapper{
            & .archives-news-head{
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }
            & .archives-news-list{
                flex-wrap: wrap;
                & .archives-news-item{
                    width: 47%;
                    margin-bottom: 1rem;  
                }
            }
        }
    }
}