.fsue-posts {
    margin: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    align-content: space-around;
    flex-wrap: wrap;
}

.fsue-posts_post {
    width: 30%;
    margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
    .fsue-posts_post {
        width: 48%;
    }
}

@media screen and (max-width: 450px) {
    .fsue-posts_post {
        width: 100%;
    }
}

.fsue-posts_thumbnail-section {
    width: 100%;
    height: 200px;
    position: relative;
    margin-bottom: 15px;
}

.fsue-posts_shadow {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    pointer-events: none;
    transition: 0.4s;
}

.fsue-posts_post:hover .fsue-posts_shadow {
    background-color: rgba(0, 0, 0, 0.3);
}

.fsue-posts_thumbnail-section a {
    display: block;
    width: 100%;
    height: 100%;
}

.fsue-posts_thumbnail-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.fsue-posts_tag {
    position: absolute;
    background-color: #17a2b8;
    padding: 4px 15px;
    color: #fff;
    bottom: 0;
    left: 0;
    border-radius: 0 6px 0 6px;
    font-size: 12px;
    font-weight: 400;
    z-index: 1;
}

.fsue-posts_title {
    display: block;
    font-size: 20px;
    line-height: 1.25;
    color: #000;
    font-weight: 700;
    margin-bottom: 10px;
    transition: 0.4s;
}

.fsue-posts_title:hover {
    text-decoration: none;
    color: #b2bec3;
}

.fsue-posts_excerpt {
    color: #7f8c8d;
    margin-bottom: 15px;
    font-size: 16px;
}

.fsue-posts_posted {
    font-size: 12px;
    display: flex;
    align-items: center;
    color: #7f8c8d;
}

.fsue-posts_posted svg{
    margin-right: 5px;
}
