.relatedPosts-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: column;
}

.relatedPosts>.relatedPosts-list>div {
    position: relative;
    display: inline-block;
    overflow: hidden;
    margin: 3px;
    width: calc(33.333% - 6px);
    height: 200px;
    background: var(--heo-main);
    vertical-align: bottom;
}

.relatedPosts>.relatedPosts-list>div {
    background: var(--heo-secondbg);
    border: var(--style-border);
    transition: .3s;
    cursor: pointer;
    overflow: hidden;
    width: 100%;
    margin-bottom: 8px
}


.relatedPosts>.relatedPosts-list>div:hover {
    background: var(--heo-main)
}

@media screen and (max-width: 768px) {
    .relatedPosts {
        display: block;
        margin-top: 1rem;
    }

    .relatedPosts>.relatedPosts-list {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .relatedPosts>.relatedPosts-list>div {
        width: 100%;
        height: 148px;
        margin: 0;
        border-radius: 8px;
        overflow: hidden;
        position: relative;
        transition: none;
    }

    .relatedPosts>.relatedPosts-list>div>a {
        display: block;
        width: 100%;
        height: 100%;
        position: relative;
    }

    .relatedPosts>.relatedPosts-list .cover {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        filter: brightness(.82);
    }

    .relatedPosts>.relatedPosts-list .content {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
        width: 100%;
        padding: 10px 12px;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .58) 70%, rgba(0, 0, 0, .68) 100%);
    }

    .relatedPosts>.relatedPosts-list .content .title {
        color: #fff;
        font-size: .85rem;
        line-height: 1.35;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .relatedPosts>.relatedPosts-list .content .date {
        display: none;
    }

    .relatedPosts>.relatedPosts-list>div:hover {
        background: var(--heo-secondbg);
    }

    .relatedPosts>.relatedPosts-list>div:hover a .title {
        color: #fff;
    }
}

.relatedPosts>.relatedPosts-list>div:hover a .title {
    color: var(--heo-white)
}

.relatedPosts>.relatedPosts-list .content .title {
    color: var(--heo-white);
    -webkit-line-clamp: 2;
    margin-right: auto;
}

.relatedPosts>.relatedPosts-list .content .title {
    color: var(--heo-fontcolor);
    font-weight: 700;
    line-height: 1.5;
    -webkit-line-clamp: 4;
    font-size: .9rem;
    text-align: left;
    overflow: hidden
}

.relatedPosts>.relatedPosts-list .content {
    padding: 0 1rem;
    width: 100%;
}
.relatedPosts>.relatedPosts-list .is-center {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: row;
    align-items: center;
}

.relatedPosts>.relatedPosts-list .content .date {
    color: var(--heo-fontcolor);
    display: none
}

.relatedPosts>.relatedPosts-list .cover {
    width: 360px;
    min-width: 45%;
    height: 100%;
    transition: all .6s ease 0s;
    object-fit: cover;
    filter: brightness(.9);
    max-width: 45%;
}

@media screen and (max-width: 768px) {
    .relatedPosts {
        display: block !important;
        margin-top: 1rem;
    }

    .relatedPosts>.relatedPosts-list {
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
    }

    .relatedPosts>.relatedPosts-list>div {
        width: 100% !important;
        height: 148px !important;
        margin: 0 !important;
        border-radius: 8px !important;
        overflow: hidden !important;
        position: relative !important;
        transition: none !important;
    }

    .relatedPosts>.relatedPosts-list>div>a {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        position: relative !important;
    }

    .relatedPosts>.relatedPosts-list .cover {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
        transition: none !important;
        filter: brightness(.82) !important;
    }

    .relatedPosts>.relatedPosts-list .content {
        position: absolute !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        z-index: 1 !important;
        width: 100% !important;
        padding: 10px 12px !important;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .58) 70%, rgba(0, 0, 0, .68) 100%) !important;
    }

    .relatedPosts>.relatedPosts-list .content .title {
        color: #fff !important;
        font-size: .85rem !important;
        line-height: 1.35 !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }

    .relatedPosts>.relatedPosts-list .content .date {
        display: none !important;
    }
}

