.eos-related-posts-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.eos-related-post-featured-section .post-thumb-img-content {
    width: 100%;
    height: 263px;
}
.eos-related-post-featured-section .post-thumb-img-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}
.eos-related-post-content .entry-header {
    margin: 12px 0;
}
.eos-related-post-content .posted-on {
    font-size: 14px;
    font-weight: bold;
    color: #434343;
}
.eos-related-post-content .eos-related-post-title,
.eos-related-post-content .eos-related-post-title a {
    font-size: 22px;
    font-weight: bold;
    margin: 0.25em 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.eos-related-post-content .entry-meta * {
    font-size: 16px;
}
.eos-related-post-content .entry-content p {
    font-size: 16px;
}

@media (max-width: 768px) {
    .eos-related-posts-wrapper {
        grid-template-columns: repeat(1, 1fr);
        gap: 56px;
    }
}