/* WEKA Article and Resources */
.wk-article-and-resources{
    padding: var(--spacing-48) 0;
}
.wk-article-and-resources .articles-and-resources-wrapper{
    display: flex;
    gap: var(--spacing-24);
    flex-wrap: wrap;
    margin-top: var(--spacing-64);
    flex-direction: column;
}
.wk-article-and-resources .articles-and-resources-wrapper .resources-inner-wrapper{
    display: flex;
    gap: var(--spacing-24);
    flex: 1;
}
.wk-article-and-resources .articles-and-resources-wrapper .featured-wrapper{
    display: flex;
    position: relative;
    flex-grow: 1;
    width: 48%;
}
.wk-article-and-resources .articles-and-resources-wrapper .featured-wrapper .gradient-palette-img{
    width: 16px;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
}
.wk-article-and-resources .articles-and-resources-wrapper .featured-box{
    display: flex;
    padding: var(--spacing-24) var(--spacing-24) var(--spacing-24) var(--spacing-40);
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: var(--spacing-20);
    flex: 1 0 0;
    background: var(--weka-off-black);
    border: 1px solid rgba(217, 217, 217, 0.20);
}
.wk-article-and-resources .articles-and-resources-wrapper .featured-box .wk-label{
    text-transform: uppercase;
}
.wk-article-and-resources .articles-and-resources-wrapper .featured-box h5{
    margin: var(--spacing-none)
}
.wk-article-and-resources .articles-and-resources-wrapper .featured-sm-box{
    display: flex;
    flex-direction: row;
    gap: var(--spacing-24);
    flex: 1;
}
.wk-article-and-resources .articles-and-resources-wrapper .featured-box .cta-wrapper{
    margin-top: auto;
}
@media(max-width: 991px){
    .wk-article-and-resources{
        padding: var(--spacing-40) 0;
    }
    .wk-article-and-resources .articles-and-resources-wrapper{
        flex-direction: column;
    }
    .wk-article-and-resources .articles-and-resources-wrapper .featured-sm-box{
        flex-wrap: wrap;
    }
    .wk-article-and-resources .articles-and-resources-wrapper .featured-box{
        flex-basis: 48%;
    }
}
@media (max-width: 767px){
    
    .wk-article-and-resources .articles-and-resources-wrapper .featured-box{
        flex-basis: 47%;
    }
}
@media(max-width: 575px){
    .wk-article-and-resources .articles-and-resources-wrapper .resources-inner-wrapper{
        flex-direction: column;
    }
    .wk-article-and-resources .articles-and-resources-wrapper .resources-inner-wrapper, .wk-article-and-resources .articles-and-resources-wrapper .featured-sm-box{
        flex-direction: column;
        align-items: center;
    }
    .wk-article-and-resources .articles-and-resources-wrapper .featured-wrapper, .wk-article-and-resources .articles-and-resources-wrapper .featured-box{
        flex-basis: 100%;
        width: 100%;
        max-width: 336px;
    }
}