.latest-news {
    overflow: hidden;
    margin-bottom: var(--gap-module);
}

.latest-news .inner-section {
    display: flex;
}

.latest-news .section-span-title {
    padding-top: 0;
    color: var(--color-f2);
}

.latest-news .categories span:after {
    content: '/';
}

.latest-news .categories span:last-child:after {
    content: '';
}

.latest-news .column:nth-child(1) {
    width: 15vw;
}

.latest-news .column:nth-child(2) {
    width: 59%;
    padding-right: 9.7%;
    display: flex;
    /*justify-content: space-between;*/
    flex-direction: column;
}

.latest-news .column:nth-child(2) .meta .date,
.latest-news .main-new h4,
.latest-news .others .meta,
.latest-news .others h4,
.latest-news .arrow-button {
    color: var(--color-f2);
}

.latest-news .column:nth-child(3) {
    width: 24%;
}

.latest-news .randomPicto {
    margin-top: 10vw;
}

.latest-news picture {
    position: relative;
    border-radius: var(--picture-border-radius);
    overflow: hidden;
    display: block;
}

.latest-news .main-new picture {
    height: 30.4vw;
}

.latest-news .others picture {
    height: 11.77vw;
}

.latest-news picture img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.latest-news a {
    color: var(--color-3);
}

.latest-news .main-new h4 {
    margin-top: 2vw;
    margin-bottom: 2vw;
    display: block;
}

.latest-news .main-new picture {
    margin-top: 2vw;
    display: block;
}

.latest-news .others picture {
    margin-top: 0.5vw;
    margin-bottom: 1.75vw;
}

.latest-news .others a:last-child picture {
    margin-bottom: 0;
}

.latest-news .others .meta {
    margin-bottom: 0.5vw;
}

.latest-news .arrow-button {
    float: right;
    margin-top: var(--gap-button);
}

.latest-news .reveal {
    opacity: 0;
    position: relative;
    margin-top: 20px;
}

.latest-news .revealed {
    opacity: 1;
    margin-top: 0;
}


@media only screen and (max-width: 768px) {
    .latest-news {
        margin-top: 0;
    }

    .latest-news .inner-section {
        display: block;
    }

    .latest-news .randomPicto {
        margin: 0;
        right: var(--gap-50);
        top: 0;
        transform: translateY(-50%);
    }

    .latest-news .column {
        width: 100% !important;
        padding-right: 0 !important;
    }

    .latest-news .section-span-title {
        display: block;
        margin-bottom: 6vw;
    }

    .latest-news .main-new {
        margin-bottom: 6vw;
    }

    .latest-news .meta {
        display: flex;
        flex-direction: column-reverse;
    }

    .latest-news .main-new h4 {
        margin-top: 3vw;
    }
    
    .latest-news .main-new .text,
    .latest-news .others a h4 {
        font-size: 1em;
    }

    .latest-news .reverse-mobile {
        flex-direction: column-reverse;
        display: flex;
    }

    .latest-news .main-new picture {
        height: 58vw;
    }

    .latest-news .others a:nth-child(3) {
        display: none;
    }

    .latest-news .others {
        display: flex;
        justify-content: space-between;
    }
    
    .latest-news .others a {
        width: 48%;
    }

    .latest-news .others picture {
        height: 43vw;
    }
}