.page-ressources-articles {
    width: 100%;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
}

.page-ressources-articles.before-init>div.card-with-hover:nth-child(n+14) {
    display: none;
}

.card-with-hover {
    min-height: 252px;
}

.pages-numbers {
    display: flex;
    justify-content: flex-start;
    gap: 5px;
    margin-top: 50px;
    margin-bottom: 10px;
    width: 100%;
}

.pages-numbers button {
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #7D8A9A;
    background-color: white;
    padding: 10px;
    height: 45px;
    width: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pages-numbers button img {
    height: 12px;
    position: relative;
    top: 1px;
}

.pages-numbers button img.back {
    transform: rotate(180deg);
}

.pages-numbers button.active {
    border: 1px solid #7D8A9A;
    background-color: #7D8A9A;
    color: white;
}

.no-results {
    grid-column: span 2;
}

@media (min-width: 816px) {

    .pages-numbers {
        justify-content: center;
    }
}