#featured-resources {
    padding: 110px 0;
    background-color: #fff;
}
#featured-resources .container {
    /* max-width: 1352px;
    width: 100%; */
}

#featured-resources .label {
    height: 28px;
    padding: 2px 10px 2px 10px;
    gap: 10px;
    border-radius: 4px;
    box-shadow: 4px 4px 20px 0px rgba(255, 143, 37, 0.16);
    box-shadow: -4px -4px 20px 0px rgba(31, 44, 156, 0.16);
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-align: center;
    margin: 0 auto 80px auto;
}
#featured-resources .buttons-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 24px;
}

#featured-resources-list {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 32px;
    margin: 0 0 64px 0;
}
.featured-resource-card {
    max-width: 416px;
    width: 32%;
    height: 373px;
    overflow: hidden;
    border-radius: 17px 17px 0 0;
    position: relative;
}
.featured-resource-card:hover .content {
    transform: translateY(-200px);
    transition: transform 0.2s;
}
.featured-resource-card .image img, .featured-resource-card picture {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}
.featured-resource-card .content {
    padding: 24px 0 0 0;
    height: 373px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s;
}
.featured-resource-card .content .text {
    display: none;
}
.featured-resource-card:hover .content .text {
    display: block;
}
.featured-resource-card .info-row {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    justify-content: flex-start;
    margin: 0 0 16px 0;
}
.featured-resource-card .category {
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
    text-align: left;
    color: #333333;
    padding: 4px 8px;
    background-color: #F4F4F4;
}
.featured-resource-card .category.post {
    background-color: #FFD0A5;
}
.featured-resource-card .read {
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
    text-align: left;
    color: #333333;
}
.featured-resource-card .title {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    text-align: left;
    color: #333333;
    margin: 0 0 24px 0;
}
.featured-resource-card .text {
    color: #333333;
    max-height: 182px;
    overflow: hidden;
}
.featured-resource-card .read-more {
    color: #2671FF;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    position: absolute;
    bottom: 0;
}

@media (max-width: 1080px) {
    .featured-resource-card {
        max-width: 360px;
        width: 100%;
    }
    #featured-resources-list {
        flex-direction: column;
        gap: 32px;
        align-items: center;
    }
}
