.actu-bottom-img {
    margin-top: 30px;
}

.actu-card-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 20px 0;
}

.actu-card-container:nth-child(even) {
    background-color: white;
}

.actu-card-container:nth-child(odd) {
    background-color: var(--bg-grey);
}

.actu-card-container > img {
    display: none;
}

.actu-card-container:last-child > img {
    display: none;
}

.actu-card {
    display: flex;
}

.actu-thumbnail-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.actu-thumbnail-container > img {
    max-width: 35vw;
    height: auto;
}

.actu-info {
    position: relative;
    padding: 0;
}

.actu-text-container {
    padding: 10px 20px 0 20px;
}

.actu-info h2 {
    margin: 0 0 5px 0;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 0.8rem;
    line-height: 0.8rem;
    color: #882f1c;
}

.actu-content {
    font-size: 0.6rem;
    line-height: 0.8rem;
}

.actu-content img {
    display: none;
}

.actu-info p {
    margin: 0;
    overflow-wrap: anywhere;
}

.actu-date {
    position: relative;
    color: white;
    background-color: var(--dark-grey-color);
    padding: 7px 20px 7px 10px;
    font-size: 0.6rem;
    line-height: 0.5rem;
}

.actu-date > i {
    margin-right: 10px;
}

@media (min-width: 1050px) {
    .actu-bottom-img {
        margin-top: -100px;
    }

    .actu-card-container {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 0;
    }

    .actu-card-container:nth-child(odd) {
        background-color: white;
    }

    .actu-card-container:not(:last-child) {
        margin-bottom: 50px;
    }

    .actu-card-container > img {
        display: block;
        max-width: 500px;
        height: auto;
    }

    .actu-card-container:last-child > img {
        display: none;
    }

    .actu-card {
        display: flex;
    }

    .actu-card:not(:last-child) {
        margin-bottom: 20px;
    }

    .actu-thumbnail-container {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    .actu-thumbnail-container > img {
        max-width: 16vw;
        height: auto;
    }

    .actu-info {
        position: relative;
        padding: 60px 0 0 30px;
    }

    .actu-text-container {
        padding: 0;
    }

    .actu-info h2 {
        margin: 0 0 5px 0;
        text-transform: uppercase;
        font-weight: 500;
        font-size: 1rem;
        line-height: 0.9rem;
        color: #882f1c;
    }

    .actu-content {
        font-size: 0.7rem;
        line-height: 0.9rem;
    }

    .actu-info p {
        margin: 0;
        overflow-wrap: anywhere;
    }

    .actu-date {
        position: absolute;
        left: -30px;
        top: 15px;
        color: white;
        background-color: black;
        opacity: 70%;
        padding: 7px 20px 7px 10px;
        width: fit-content;
        font-size: 0.8rem;
        line-height: 0.6rem;
    }

    .actu-date > i {
        margin-right: 10px;
    }

    .actu-content img {
        display: block;
    }
}