
#featured-resources {
    background-color: #fff;
    padding: 65px 0 105px 0;
}
#featured-resources .section-title {}
#featured-resources .section-title .title {
    font-weight: 700;
    font-size: 52px;
    line-height: 62px;
    color: #0A2144;
    text-align: center;
    margin: 0 0 65px 0;
    letter-spacing: -0.04em;
}
#featured-resources #featured-resources-list {
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
#featured-resources #featured-resources-list .featured-resources-list-item {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    box-shadow: 4px 12px 40px rgba(66, 94, 165, 0.1);
    border-radius: 10px;
    overflow: hidden;
    max-width: 364px;
    width: 100%;
    height: 406px;
    position: relative;
    transition: all .2s linear;
}
#featured-resources #featured-resources-list .featured-resources-list-item .img {
    height: 176px;
    min-height: 176px;
}
#featured-resources #featured-resources-list .featured-resources-list-item .content {
    padding: 24px 16px 85px 16px;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 230px;
    transition: all 0.2s linear;
}
#featured-resources #featured-resources-list .featured-resources-list-item:hover .content {
    height: 100%;
    transition: all 0.2s linear;
}
#featured-resources #featured-resources-list .featured-resources-list-item:hover {
    transition: all .2s linear;
    transform: translate(0,-4px);
    box-shadow: 6px 10px 26px rgb(78 119 224 / 15%);
}
#featured-resources #featured-resources-list .featured-resources-list-item .title {
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    min-height: 87px;
    color: #000000;
    margin: 0 0 24px 0;
}
#featured-resources #featured-resources-list .featured-resources-list-item .text {
    display: block;
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    color: #000000;
}
/* #featured-resources #featured-resources-list .featured-resources-list-item:hover .text {
    display: block;
} */
#featured-resources #featured-resources-list .featured-resources-list-item .link {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    padding: 0 16px;
    background-color: #fff;
    text-align: left;
}
#featured-resources #featured-resources-list .featured-resources-list-item .link span {
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: #2671FF;
}
#featured-resources #featured-resources-list .featured-resources-list-item .info {
    display: flex;
    flex-direction: row;
    justify-content: start;
    margin: 0 0 23px 0;
}
#featured-resources #featured-resources-list .featured-resources-list-item .info .type {
    font-weight: bold;
    font-size: 14px;
    line-height: 17px;
    color: #000000;
}
#featured-resources #featured-resources-list .featured-resources-list-item .info .time {
    font-weight: 300;
    font-size: 14px;
    line-height: 17px;
    color: #000000;
}
#featured-resources #featured-resources-list .featured-resources-list-item .info .separator {
    height: 17px;
    width: 1px;
    background-color: #000000;
    margin: 0 10px;
}

@media (max-width: 1188px) {
    #featured-resources #featured-resources-list {
        max-width: 100%;
        padding: 0 24px;
    }
    #featured-resources #featured-resources-list .featured-resources-list-item {
        width: 32%;
    }
}
@media (max-width: 992px) {
    #featured-resources {
        padding: 65px 36px 95px 36px;
    }
    #featured-resources .section-title .title {
        font-size: 40px;
        line-height: 48px;
        margin-bottom: 35px;
    }
    #featured-resources #featured-resources-list .featured-resources-list-item {
        width: 30%;
    }
}
@media (max-width: 768px) {
    #featured-resources #featured-resources-list {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    #featured-resources #featured-resources-list .featured-resources-list-item {
        width: 288px;
        margin-bottom: 60px;
    }
    #featured-resources #featured-resources-list .featured-resources-list-item:last-child {
        margin-bottom: 0px;
    }
    #featured-resources .section-title .title {
      font-size: 28px;
      line-height: 33px;
    }
}