/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Jul 21 2026 | 14:08:45 */
/* =====================================================
   AKTEC - TIÊU ĐỀ BÀI VIẾT TRONG CATALOGUE
   Primary:   #148CFF
   Deep Navy: #021B45
   ===================================================== */

/* Tiêu đề bài viết */
.post-title,
.post-title a {
    color: #148CFF !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    text-decoration: none !important;
    
    /* Khoảng cách với phần mô tả */
    margin-bottom: 8px !important;

    /* Hiệu ứng đổi màu khi hover */
    transition: color 0.25s ease !important;
}


/* Khi rê chuột vào tiêu đề */
.post-title:hover,
.post-title a:hover {
    color: #021B45 !important;
    text-decoration: none !important;
}


/* Tablet */
@media (max-width: 849px) {
    .post-title,
    .post-title a {
        font-size: 19px !important;
        line-height: 1.4 !important;
    }
}


/* Mobile */
@media (max-width: 549px) {
    .post-title,
    .post-title a {
        font-size: 18px !important;
        line-height: 1.4 !important;
    }
}