

.wrapper-actualite {
    padding: 50px 0;
}

.wrap-actualite {
    align-items: unset;
}

.item-actualites {
    width: 100%;
    /* padding: 0 15px; */
    margin: 0 0 25px;
}

.wrap-item-actualites {
    position: relative;
    display: flex;
}

.wrap-item-actualites::before {
    position: absolute;
    content: '';
    width: calc(100% - 10px);
    height: calc(100% - 20px);
    left: 10px;
    top: 10px;
    border: 1px solid #e0e0ea;
    border-radius: 5px;
    z-index: 1;
}

.image-actualites {
    position: relative;
    width: 40%;
}

.wia-image {
    position: relative;
    display: block;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0px 10px 10px 0px rgb(0 0 0 / 8%);
}

.wia-image::before {
    position: absolute;
    content: '';
    background: #252638;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    opacity: 0.15;
    z-index: 1;
    transition: all 500ms ease;
}

.wia-image img {
    width: 100%;
    transition: all 500ms ease;
    border-radius: 5px;
    height: 260px;
    object-fit: cover;
}

.wia-date {
    position: absolute;
    top: 10px;
    left: 10px;
    /* width: 76px; */
}

.wia-date div {
    position: relative;
    width: 70px;
    aspect-ratio: 1;
    font-size: 24px;
    font-weight: 700;
    background: var(--white-color);
    padding: 11px 4px 5px;
    text-align: center;
    border-radius: 5px 0px;
    line-height: 1.2;
    z-index: 1;
    color: var(--primary-color);
}

.wia-date div span {
    display: block;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
}

.actualites-details {
    position: relative;
    padding: 25px 25px 20px;
    width: 60%;
    z-index: 1;
}

.actualites-details * {
    /* z-index: 2; */
}

.categorie-actualite {
    color: #ffffff;
    padding: 3px 12.5px;
    transition: all 500ms ease;
    display: flex;
    font-size: 12px;
    border-radius: 5px;
    margin-bottom: 10px;
    background: var(--primary-color);
    width: fit-content;
    align-items: center;
}

.categorie-actualite i {
    font-size: 10px;
    margin-right: 5px;
}

.actualite-title {
    position: relative;
    font-size: 17px;
    font-weight: 700;
    padding-bottom: 10px;
    line-height: 1.2;
    transition: all 0.5s ease;
}

.wrap-item-actualites:hover .actualite-title {
    color: var(--primary-color);
}

.chapeau-actu {
    font-size: 14px;
    color: #878787;
}

.button-actualite {
    padding-top: 15px;
    margin-top: 14px;
    border-top: 1px solid #e0e0ea;
    line-height: 1;
    position: relative;
    font-size: 14px;
    font-weight: 500;
    color: var(--second-color);
    transition: all 0.5s ease;
}

.wrap-item-actualites:hover .button-actualite {
    color: var(--primary-color);
}

.button-actualite i {
    margin-left: 3px;
    font-size: 11px;
}


.wia-image:after {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    content: '';
    width: 0;
    height: 0;
    background: rgba(255, 255, 255,.2);
    border-radius: 0%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
}

.wrap-item-actualites:hover .wia-image:after {
    animation: circle .95s;
}