/* Developed by TRIEUCA - https://tiz.im */

/* Box chứa nội dung liên quan */
.related-box {
    background-color: #f9f9f9;
    border-left: 4px solid #f58927; /* mặc định, sẽ bị override bằng inline style */
    padding: 12px 16px;
    margin: 24px 0;
    border-radius: 6px;
}

/* Tiêu đề "Có thể bạn quan tâm" */
.related-box .related-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
}

/* Danh sách liên kết bài viết */
.related-box ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.related-box ul li {
    margin: 6px 0;
}

.related-box ul li a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-box ul li a:hover {
    text-decoration: underline;
}

/* Box "Xem thêm các nội dung hấp dẫn…" */
.more-box {
    background-color: #f0f0f0;
    padding: 10px 14px;
    margin: 20px 0;
    border-radius: 5px;
    font-size: 15px;
    color: #333;
}

.more-box a {
    color: #0073aa;
    text-decoration: none;
    font-weight: bold;
}

.more-box a:hover {
    text-decoration: underline;
}
