/* Container chính */
.qh-box { 
    background: #ffffff; 
    padding: 10px 0; 
}

/* Đồng hồ: Màu đen #000 tuyệt đối để fix lỗi tương phản */
.qh-clock { 
    display: block;
    font-size: 13px; 
    color: #000000; 
    font-weight: 700;
    margin-bottom: 15px; 
    padding-bottom: 10px; 
    border-bottom: 1px solid #eeeeee;
}

.qh-block { margin-bottom: 25px; }

/* Tiêu đề mục: Đen đậm + Vạch xanh 3px */
.qh-title { 
    font-size: 14px; 
    font-weight: 800; 
    color: #000000; 
    text-transform: uppercase;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}
.qh-title::before { 
    content: ""; 
    width: 3px; 
    height: 14px; 
    background: #0066cc; 
    margin-right: 10px; 
}

/* Danh sách tin */
.qh-list { display: flex; flex-direction: column; }

.qh-list a { 
    display: flex; 
    justify-content: space-between; 
    align-items: flex-start;
    padding: 10px 0; 
    text-decoration: none !important;
    border-bottom: 1px solid #f2f2f2;
}
.qh-list a:last-child { border-bottom: none; }

/* Tiêu đề bài viết: Màu đen #222 rõ nét, không dùng font riêng */
.qh-txt { 
    color: #222222; 
    font-size: 14px; 
    line-height: 1.5;
    font-weight: 600;
    flex: 1; 
    padding-right: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Ngày tháng: Ép màu ĐEN #000 để Google Pagespeed không báo lỗi mờ */
.qh-date { 
    font-size: 12px; 
    color: #000000; 
    font-weight: 700;
    flex-shrink: 0; 
    margin-top: 3px;
}

/* Hiệu ứng Hover xanh theo tông site */
.qh-list a:hover .qh-txt,
.qh-list a:hover .qh-date { 
    color: #0066cc; 
}