/* Related Posts Styles */
.related-posts-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: -10px;
}

.related-post-item {
    width: calc(33.333% - 20px);
    margin: 10px;
    text-align: center;
}

.related-post-thumbnail {
    aspect-ratio: 1/1;
    overflow: hidden;
    margin-bottom: 10px;
}

.related-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-post-title {
    margin: 0;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 40px;
    line-height: 20px;
}

@media (max-width: 768px) {
    .related-post-item {
        width: calc(50% - 20px);
    }
    .related-post-title {
        height: 20px;
    }
}