html, body {
    overflow-x: hidden;
}

.articles__list {
    /*
    margin-left: 4rem;
    margin-right: 4rem;
    */
}

.article {
    width: 88%;
    height: 200px;
    margin-bottom: 7rem;
    margin-right: 9rem;
    margin-left: 1.5rem;
}

.article > img {
    width: 100%;
    height: 100%;
    min-height: 200px;
    object-fit: cover;
    object-position: center;
}

.pagination-container {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 1rem;
}

.ellipsis {
    padding-top: 0.8rem;
    letter-spacing: 4px;
}

.inactiveLink {
    pointer-events: none;
    cursor: default;
}

.current-page {
    outline: 3px solid #096df2;
}

@media only screen and (max-width: 530px) {
    .article > img {
        height: 88%;
        width: 88%;
    }

    .container {
        padding-top: 0;
    }

    .article {
        overflow-wrap: break-word;
        word-wrap: break-word;
    }

    .article__title {
    width: 70%;

    }

}


.blog-hero__tags__wrapper {
    overflow: visible !important;
}

.blog-hero__tags {
    flex-wrap: wrap;
    width: auto !important;
}

@media only screen and (max-width: 679px) {
    .hiddenScrollbar {
        scrollbar-width: thin;
        overflow-x: scroll !important;
        overflow-y: hidden !important;
    }

    .blog-hero__tags {
        flex-wrap: nowrap;
        width: max-content !important;
    }
}

.pageNumber {
    padding: 0 0.5rem;
}

.icon-Chevron-Left-Small::before {
  content: "\e95c";
}

.icon-Chevron-Right-Small::before {
  content: "\e964";
}

.btn_pagination {
    background-color: var(--body);
    color: var(--text-light);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 8px;
}

.text_pagination {
    align-self: center;
    font-weight: bold;
}