/*=====>=====>=====>*** Articles CSS Start Here ***<=====<=====<=====*/
/* Articles Filters CSS Are Here */
.articles-filters {
    overflow: auto;
    white-space: nowrap;
    scrollbar-gutter: stable;
    padding-bottom: 12px;
    scrollbar-width: thin;
}

.articles-filters li {
    border: 1px solid var(--ds-gray-400);
    padding: 10px 28px;
    border-radius: 30px;
    cursor: pointer;
    transition: all .45s ease-in-out;
    color: var(--ds-black-color);
    line-height: 1.4024;
}

.articles-filters li.active {
    background-color: var(--ds-primary-color);
    color: var(--ds-white-color);
    border-color: var(--ds-primary-color);
    font-weight: 400;
}

/* Articles Cards CSS Are Here */
.articles-filters + .articles-row {
    margin-top:clamp(32px, 4.15vw, 55px);
}

.articles-row.ds-row {
    --ds-row-gap:clamp(24px, 3.85vw, 55px);
    --ds-col-gap:clamp(15px, 1.45vw, 26px);
}

.articles-col .articles-img {
    aspect-ratio: 472 / 295;
    overflow: hidden;
    border-radius: 10px 20px 0 0;
}

.articles-col .articles-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all .5s ease-in-out;
}

.articles-col:hover .articles-img img {
    transform: scale(1.1);
}

.articles-col .article-content {
    margin-top: 15px;
}

.article-content .article-terms a:hover {
    color: var(--ds-black-color);
}

.article-content .article-title:hover a {
    color: var(--ds-primary-color);
}

.article-content .article-excerpt {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    overflow-wrap: break-word;
    word-break: break-word;
}

.article-content .article-read-more {
    padding-top: 14px;
    text-transform: uppercase;
    grid-gap: 5px;
}

.article-content .article-read-more:hover {
    color: var(--ds-black-color);
}

.article-content .article-read-more img {
    width: 14px;
    max-height: 12px;
    object-fit: contain;
    transition: all .35s ease-in-out;
}

.article-content .article-read-more:hover img {
    transform: translate(4px, -2px);
    filter: brightness(0);
}

/* Load More CSS Are Here */

.load-more-wrap {
    margin-top:clamp(32px, 4.15vw, 60px);
}

.load-more-wrap #load-more-posts {
    cursor: pointer;
}

.load-more-wrap #load-more-loader {
    --size: 36px;
    width: var(--size);
    height: var(--size);
    border: 5px solid var(--ds-primary-color);
    border-top-color: transparent;
    border-radius: 100%;
    font-size: 0;
    line-height: 0;
    animation: rotateLoader 2s linear infinite;
}

@keyframes rotateLoader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(359deg);
    }
}

/* Skeleton CSS Are Here */
.skeleton-animation {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 2.5s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.skeleton-card .skeleton-img {
    aspect-ratio: 472 / 295;
    border-radius: 10px 10px 0 0;
}

.skeleton-content .skeleton-line.short {
    width: 100%;
    max-width: 150px;
    height: 10px;
    border-radius: 2px;
    animation-duration: 1.5s;
}

.skeleton-content .skeleton-line.medium {
    height: 32px;
    width: 80%;
    border-radius: 4px;
    animation-duration: 1.75s;
}

.skeleton-content .skeleton-line-container .skeleton-line {
    height: 16px;
    width: 72%;
    border-radius: 2px;
    animation-duration: 2.25s;
    display: block;
}

.skeleton-content .skeleton-line-container .skeleton-line:not(:last-child) {
    width: 100%;
    margin-bottom: 6px;
}

.articles-filters li:hover {
    border: 1px solid var(--ds-primary-color);
}
/*=====>=====>=====>*** Articles CSS End Here ***<=====<=====<=====*/