.articles-container > .breadcrumbs > div {
    align-items: start;
}

.articles-content {
    padding-right: 0px;
    padding-top: 30px;
    padding-bottom: 100px;
}

.articles-wrapper, .articles-pagination {
    padding-right: 50px;
}

.articles-links-div {
    display: flex;
    gap: 12px;
    margin-bottom: 50px;
}

.articles-links-div {
    overflow: auto;
}

.articles-link {
    padding: 14px 20px;
    border-radius: 8px;
    cursor: pointer;
    color: var(--grey2);
    border: 1px solid var(--greyBorder);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s ease all;
    white-space: nowrap;
}

.articles-link:hover {
    background-color: var(--hoverBlue);
    border: 1px solid var(--hoverBlue);
    color: var(--white1);
    transition: 0.5s ease all;
}

.articles-link.current-article {
    background-color: var(--blue1);
    color: var(--white1);
    pointer-events: none;
    border: 1px solid var(--blue1);
}

.article-category {
    color: var(--grey2);
    margin: 16px 0px 8px 0px;
}

.article-title {
    color: var(--black1);
}

.article-img {
    height: 300px;
    width: 100%;
}

.article-img img, .article-img picture {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.articles-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    row-gap: 32px;
}

.articles-pagination:has(a) {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    gap: 8px;
}

.articles-pagination > *:not(.dots) {
    padding: 12.5px;
    border-radius: 8px;
    border: 1px solid var(--greyBorder);
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--black1);
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    font-family: "OpenSans-SemiBold";
}

.articles-pagination > span:not(.dots) {
    border: 1px solid var(--hoverBlue);
    color: var(--blue1);
    background-color: var(--blue2);
}

.next.page-numbers > svg {
    rotate: 180deg;
}

.page-numbers > svg path {
    fill: var(--blue1);
}

.next.page-numbers, .prev.page-numbers {
    border: 1px solid var(--hoverBlue);
}

.page-numbers {
    transition: 0.3s ease all;
}

.page-numbers:hover {
    background-color: var(--blue2);
    border: 1px solid var(--blue1);
    transition: 0.3s ease all;
}

.page-numbers.dots {
    display: flex;
    justify-content: center;
    align-items: end;
    pointer-events: none;
}

@media screen and (max-width:1000px) {

    .articles-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width:768px) {

    .articles-pagination > *:not(.dots) {
        width: 40px;
        height: 40px;
        font-size: 14px;
        line-height: 19px;
        font-weight: 600;
        font-family: "OpenSans-SemiBold";
        padding: 0px;
    }

    .articles-pagination:has(a) {
        margin-top: 30px;
    }

    .articles-links-div {
        margin-bottom: 30px;
    }

    .articles-content {
        padding-bottom: 50px;
    }

    .articles-link {
        padding: 11.5px 20px;
    }

    .articles-wrapper, .articles-pagination:has(a) {
        padding-right: 20px;
    }
    
    .article-img {
        height: 250px;
    }

    .articles-wrapper {
        row-gap: 24px;
    }
}

@media screen and (max-width:650px) {
    
    .articles-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}