
/* Recommended Article START  */
.recommended_article_wrapper{
    background-color: var(--section-bg-white-1);
}
.recommended_article_wrapper .article_img_wrap{
    max-width: var(--article-img-max-width);
    height: 100%;
    /* aspect-ratio: 1/1; */
    object-fit: cover;
}
.recommended_article_wrapper .article_img_wrap img{
    max-width: 100%;
    height: 100%;
}
.article_card .article_tag{
    background-color: var(--article-tag-bg-color);
    font-family: var(--font-rubik);
    font-size: var(--article-tag-text-size);
    font-weight: var(--article-tag-text-weight);
    color: var(--article-tag-color);
    padding:3px 15px;
    text-decoration: none;
    display: none;
}
.article_card .article_title{
    font-family: var(--font-rubik);
    font-size: var(--article-title-text-size);
    font-weight: var(--article-title-text-weight);
    color: var(--article-title-text-color);
    text-decoration: none;
    transition: var(--link-hover-transition);
}
.article_card .article_title:hover,
.article_card .article_title:active{
    color: var(--article-title-active-color);
    text-decoration: underline;
}
.article_desc_content_wrap{
    font-family: var(--font-rubik);
    font-size: var(--article-desc-text-siez);
    font-weight: var(--article-desc-text-weight);
    color: var(--article-desc-text-color);

    -webkit-line-clamp: 2;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
}
.article_read_more_btn_wrap{
    margin-top: 10px;
}
.article_read_more_btn{
    font-family: var(--font-rubik);
    font-weight: var(--article-read-more-text-weight);
    font-size: var(--article-read-more-text-size);
    color: var(--article-read-more-text-color);
    text-decoration: none;
}

.recommended_owl_wrap .owl-dots{
    display: flex;
    justify-content: center;
    column-gap: 10px;
    margin-top: 15px;
}
.recommended_owl_wrap .owl-dots .owl-dot{
    width: 30px;
    height: 10px;
    background: linear-gradient(180deg, rgb(68,10,123) 0%, rgb(124,18,225) 100% );
    border-radius: 10px;
    opacity: 0.7;
}
.recommended_owl_wrap .owl-dots .owl-dot.active{
    opacity: 1;
}
/* Recommended Article END */