#more-like-this {
    padding: 2rem 0;
    border: solid rgb(237 237 237) 1px;
}
#more-like-this .more-like-this-article-ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.more-like-this-article-li-item {
    background: #fff;
    border: solid rgb(237 237 237) 1px;
    box-shadow: 2px 3px 3px #ebebeb;
    border-radius: 10px;
    padding-bottom: 0.8rem;
    padding-left: 0;
    min-width: 200px;
    width: 23%;
    display: grid;
    gap: 15px;
    grid-template-rows: 176px 1fr 29px;
}
.more-like-this-article-img-link {
    max-height: 175px;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: #e8e8e8;
    text-align: center;
}
.more-like-this-article-li-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.more-like-this-article-li-item h4 {
    margin: 0 0 4px;
    font-size: 1.1rem;
    line-height: 1.2;
    font-weight: 700;
    color: #000;
    padding: 0 1.5rem;
}
.more-like-this-article-li-item p {
    margin: 0;
    font-size: 0.8rem;
    width: 95%;
    padding: 0 1.5rem;
}
.more-like-this-article-li-item a {
    text-decoration: none;
}
#engtipsforums #more-like-this {
    padding: 2rem 1rem;
    display: flex;
    justify-content: center;
}
#engtipsforums .more-like-this-article-ul {
    justify-content: space-around;
}
#engtipsforums .more-like-this-article-li-item {
    width: 23%;
    grid-template-rows: 119px 1fr 29px;
}
#engtipsforums .more-like-this-article-li-item h4 {
    font-size: 0.8rem;
}
@media (max-width: 500px) {
    #engtipsforums .more-like-this-article-li-item {
        width: 46%;
        grid-template-rows: 150px 1fr 29px;
    }
}
@media (max-width: 400px) {
    #engtipsforums .more-like-this-article-li-item {
        width: 100%;
        grid-template-rows: 170px 1fr 29px;
    }
}
