.articles-list.owl-carousel {

}

.articles-list .articles-item {
    display: flex;
    flex-direction: column;
    padding: 30px;
    height: 100%;
    background-color: var(--lightblue2);
    border-radius: 20px;
    border: 1px solid var(--lightgray);
}

.articles-list .articles-item > *:not(:last-child) {
    margin-bottom: 16px;
}

.articles-item .articles-item__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.articles-item .articles-item__tags .articles-item__tags-item {
    font-family: var(--solomon);
    font-weight: 500;
    font-size: 14px;
    line-height: 1.3;
    text-align: left;
    padding: 8px 12px;
    background-color: var(--bg2);
    border-radius: 100px;
    border: 1px solid var(--lightgray);
}

.articles-item .articles-item__link .article-title {
    font-family: var(--solomon);
    font-weight: 600;
    font-size: 24px;
    line-height: 1.3;
    text-align: left;
    color: var(--blue);
    margin-top: 12px;
    transition: all .4s;
}

.articles-item .articles-item__link a:hover .article-title {
    color: var(--accent);
    transition: all .4s;
}

.articles-item .articles-item__link img {
    width: 100%;
    height: 135px;
    object-fit: cover;
    border-radius: 8px;
    overflow: hidden;
}

.articles-item .articles-item__preview {
    font-family: var(--solomon);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    text-align: left;
    color: var(--lightblue);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: auto 0 0;
}

.articles-item .articles-item__info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.articles-item .views {
    display: flex;
    align-items: center;
}

.articles-item .views .views__icon {
    margin-right: 5px;
}

.articles-item .articles-item__info :is(.date, .views__count) {
    font-family: var(--solomon);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.3;
    text-align: center;
    color: var(--lightblue);
}

.articles-slider .owl-stage {
    display: flex;
}

.articles-slider .owl-stage-outer {
    padding: 0 20px;
    margin: 0 -20px;
}

.articles-slider .owl-item {
    transition: 0.4s;
}

.articles-slider .owl-nav {
    justify-content: space-between;
    display: flex !important;
    pointer-events: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -110px;
    right: -110px;
}

.articles-slider .owl-nav.disabled {
    display: none !important;
}

.articles-slider .team-content {
    position: relative;
}

.articles-slider .owl-nav button {
    width: 60px;
    height: 60px;
    border: 1px solid #87A5C099 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: 0.4s;
    pointer-events: all;
}

.articles-slider .owl-nav button:not(.disabled):hover {
    background: var(--accent) !Important;
    border-color: var(--accent) !Important;
}


.articles-slider .owl-nav button svg path {
    transition: 0.4s;
}

.articles-slider .owl-nav button:not(.disabled):hover svg path {
    stroke: #fff;
}

.articles-slider .owl-nav button.disabled {
    opacity: .4;
    cursor: initial;
}

@media all and (max-width: 1750px) {
    .articles-slider .owl-nav {
        left: 5px;
        right: 5px;
    }
}

@media all and (max-width: 1024px) {
    .articles-slider .owl-stage {
        padding-left: 0 !important;
    }

    .articles-slider .owl-nav {
        justify-content: center;
        position: static;
        margin-top: 40px;
        transform: unset;
    }

    .articles-slider .owl-nav > * {
        margin: 0 8px;
    }

    .articles-slider .articles-item:not(:first-child) {
        margin-top: 20px;
    }
}

@media all and (max-width: 480px) {
    .articles-list .articles-item {
        padding: 15px;
    }

    .articles-item .articles-item__tags .articles-item__tags-item {
        font-size: 12px;
    }

    .articles-item .articles-item__link .article-title {
        font-size: 16px;
    }

}