/* Style cho phần Bài viết liên quan của trang Bài viết (single) */

.related-posts {
    margin-top: 40px;
}

.related-posts h3 {
    margin-bottom: 20px;
}

.related-posts-list {
    display: flex;
    gap: 30px;
    padding: 30px 0;
}

.related-post-item {
    flex: 1;
    max-width: 100%;
}

.related-post-thumbnail img {
    width: 100%;
    display: block;
    height: auto;
}

.related-post-title {
    margin: 15px 0 30px 0;
}

.related-post-title a {
    color: var(--text-color);
}

.related-post-title a:hover {
    color: var(--accent-color);
}

/* Responsive cho máy tính bảng và mobile */
@media (max-width: 1024px) {
    .related-posts-list {
        flex-direction: column;
        align-items: flex-start;
    }

    .related-post-item {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .related-post-thumbnail {
        display: none;
    }
}
