.aucune-documentation {
    font-size: 20px;
    color: #000000;
    width: 1220px;
    max-width: 95%;
    padding: 5px;
    margin: auto;
}

.contenu-global-documentation .lien {
    width: 1220px;
    max-width: 95%;
    margin: auto;
    padding: 30px 0 20px 5px;
    text-transform: uppercase;
    font-size: 18px;
}

.contenu-list-documentation {
    width: 1220px;
    max-width: 95%;
    margin: auto auto 40px auto;

    display: flex;
    flex-wrap: wrap;
}

.one-documentation {
    text-decoration: none;
    width: 49.1%;
    height: 220px;
    margin: 5px;
    padding: 20px;
    background: #FFFFFF;
    border-radius: 10px;

    display: flex;
}

.one-documentation:hover {
    box-shadow: 0 1px 3px 1px rgba(60, 64, 67, 0.15), 0 1px 2px 0 rgba(60, 64, 67, 0.3);
}

.one-documentation .image-container {
    width: 200px;
    height: 180px;
}

.one-documentation .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.one-documentation .details-content {
    flex-basis: 60%;
    margin-left: 20px;
}

.one-documentation .details-content h1 {
    text-transform: uppercase;
    font-size: 14px;
}

.one-documentation .details-content .contenu {
    text-align: justify;
    font-size: 14px;
    color: #000;
    height: 77px;
    /* background: red; */
}

.details-content .date-voir-plus {
    height: 70px;
    /* margin-top: -10px; */
    color: #000;

    display: flex;
    justify-content: space-between;
}

.details-content .date-voir-plus .date-pub {
    /* background: blue; */
    line-height: 10px;
}

.details-content .date-voir-plus .voir-plus {
    /* background: yellow; */
    margin-top: -10px;
    line-height: 0px;
}

.details-content .date-voir-plus .voir-plus p {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* pour la pagination */
.contenu-global-documentation .pagination-container {
    text-align: center;
    letter-spacing: 8px;
    font-size: 23px;
}

.next.page-numbers {
    letter-spacing: normal;
}

.prev.page-numbers {
    letter-spacing: normal;
}

a.page-numbers {
    text-decoration: none;
}

/* ****************************************************************
                        RESPONSIVE
***************************************************************** */
/* pour le lien et aucune documentation */
@media (max-width: 395px) {
    .aucune-documentation {
        font-size: 12px;
    }

    .contenu-global-documentation .lien {
        font-size: 12px;
    }
}

@media (min-width: 396px) and (max-width: 510px) {
    .aucune-documentation {
        font-size: 15px;
    }

    .contenu-global-documentation .lien {
        font-size: 14px;
    }
}

/* pour le contenu  */
@media (max-width: 580px) {
    .one-documentation {
        width: 100%;
        flex-direction: column;
        height: 415px;
    }

    .one-documentation .image-container {
        width: 100%;
        height: 180px;
    }

    .one-documentation .details-content {
        margin-left: 0;
        margin-top: 10px;
    }
}

@media (min-width: 581px) and (max-width: 1183px) {
    .one-documentation {
        width: 100%;
    }

    .one-documentation .details-content {
        flex-basis: 100%;
    }
}