.resources_feed_module_wrap{
    padding: 56px 0;
    @media(min-width: 601px){
        padding: 64px 0;
    }
    @media(min-width: 992px){
        padding: 88px 0;
    }
    @media(min-width: 1300px){
        padding: 128px 0;
    }
}
.resources_feed_module_heading{
    display:flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    @media(min-width: 601px){
        padding: 0 48px;
    }
    @media(min-width: 992px){
        padding: 0 80px;
    }
    @media(min-width: 1300px){
        padding: 0 100px;
    }
}
.resources_feed_module_heading--title{
    font-family: "Inter", Arial, sans-serif;
    font-size: 40px;
    font-weight: 300;
    line-height: 1.2;
    color: #27292f;
    margin-bottom: 0;
    @media(min-width: 992px){
        font-size: 47px;
        line-height: 1.19;
    }
}
.resources_feed_module_heading--nav--owl{
    display: flex;
}
.resources_feed_module_heading--nav--owl > div{
    width: 29px;
    height: 29px;
    border: solid 1px #3f5fff;
    padding: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    @media(min-width: 992px){
        width: 49px;
        height: 49px;
    }
    margin-left: 8px;
}
.resources_feed_module_heading--nav--owl > div.owl-next{
    margin-left: 16px;
}
.resources_feed_module_heading--nav--owl > div.disabled{
    border-color: #101926;
    opacity: 0.4;
}
.resources_feed_module_heading--nav--owl > div.owl-prev{
    transform: rotate(180deg);
}
.resources_feed_module_heading--nav--owl > div > span{
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}
.resources_feed_module_heading--nav--owl > div:after{
    width: 17px;
    height: 21px;
    content: url("data:image/svg+xml,%3Csvg width='17' height='18' viewBox='0 0 17 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m6.458 13.082 4.083-4.083-4.083-4.083' stroke='%23101926' stroke-width='1.531' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.resources_feed_module_heading--nav--owl > div:hover{
    cursor: pointer;
}
.resources_feed_module{
    position: relative;
    margin-top: 14px;
    @media(min-width: 601px){
        margin-top: 26px;
    }
    @media(min-width: 992px){
        margin-top: 38px;
    }
    @media(min-width: 1300px){
        margin-top: 74px;
    }
}
.resources_feed_module.owl-carousel .owl-stage{display: flex;}
.resources_feed_module--item-wrapper {
    overflow: hidden;
    border-radius: 4px;
}
.resources_feed_module--item {
    height: 100%;
    padding: 10px 0 20px;
}
.resources_feed_module--item-inner{
    height:100%;
    background:#fff;
    padding: 4px 4px 0;
    border-radius: 8px;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    box-shadow: 4px 4px 12px 0 rgba(16, 25, 38, 0.08);
    background-image: linear-gradient(to bottom, #fff 0%, rgba(255, 255, 255, 0.5) 100%);
}
.resources_feed_module--item--image_wrap{
    height: 195px;
    overflow: hidden;
}
.resources_feed_module--item--image {
    object-fit: cover;
    height: 195px;
    width: 100%;
    border-radius: 4px;
}
.resources_feed_module--item--title {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color:#0f1011;
}
.resources_feed_module--item--description{
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.5;
    color:rgba(15, 16, 17, 0.6);
    margin-bottom: 0;
}
.resources_feed_module--item--read-more{
    font-family: "Inter", sans-serif;
    margin-top: 16px;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.13;
    color: #101926;
    text-transform: uppercase;
    @media(min-width: 992px){
        display:none;
        position: absolute;
        bottom: -10px;
    }
}
.resources_feed_module--item--read-more svg{
    position: relative;
    top: 3.5px;
    left: 4px;
}
.resources_feed_module--item--content{
    padding: 24px 8px;
    @media(min-width: 992px){
        padding-bottom:20px;
    }
}

/* animation on hover */
@media(min-width: 992px) {
    .resources_feed_module--item--read-more{
        display: block;
        visibility: hidden;
        opacity: 0;
        transition: all 0.5s ease-out;
    }
    .resources_feed_module--item--animate {
        position: relative;
        top: 0;
        transition: top ease 0.5s;
    }

    .resources_feed_module--item--link:hover .resources_feed_module--item--animate {
        top: -34px;
    }
    .resources_feed_module--item--link:hover .resources_feed_module--item--read-more{
        visibility: visible;
        opacity: 1;
        transition: all 0.5s ease-in;
    }
}
.resources_feed_module--item--link:hover .resources_feed_module--item--title{
    color:#3f5fff;
}
.resources_feed_module--item--link:hover .resources_feed_module--item--read-more{
    color:#0d9aff;
}

.resources_feed_module--item--link:hover .resources_feed_module--item--read-more svg path{
    stroke:#0D9AFF;
}
