﻿
/* --- PAGE DESCRIPTION STYLE --- */

.page-header {
    background-color: #f8faff; /* Nền xanh rất nhạt */
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.page-title {
    color: #0b1120;
    font-size: 2.2rem;
    letter-spacing: -0.5px;
}


.page-desc {
    font-size: 1.1rem; /* Lớn hơn chữ thường một chút để dễ đọc */
    line-height: 1.7; /* Tăng khoảng cách dòng tạo cảm giác sang trọng (Airy) */
    color: #64748b !important; /* Màu xám xanh (Slate 500) hiện đại hơn màu xám đen */
    font-weight: 400;
    /* Giới hạn chiều rộng: Giúp dòng chữ không bị trải dài hết màn hình */
    max-width: 700px;
    margin-top: 15px; /* Cách tiêu đề ra một chút */
    margin-bottom: 25px; /* Cách đường line bên dưới */
}

/* Đường gạch dưới tiêu đề */
.title-line {
    width: 60px;
    height: 4px;
    background: var(--primary-color, #0046ba);
    border-radius: 2px;
}

/* Decor Dots (Khác với trang Product để tạo sự mới mẻ) */
.header-decor-dots {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(#0046ba 15%, transparent 16%);
    background-size: 10px 10px;
    opacity: 0.1;
    pointer-events: none;
}

/* Responsive cho Mobile */
@media (max-width: 768px) {
    .page-title {
        font-size: 1.75rem; /* Giảm size tiêu đề trên mobile */
    }

    .page-desc {
        font-size: 1rem; /* Về size chuẩn trên mobile */
        padding: 0 15px; /* Thêm padding 2 bên để không sát mép màn hình */
        line-height: 1.6;
    }

    .header-decor-dots {
        width: 60px; /* Thu nhỏ họa tiết trên mobile */
        height: 60px;
    }
}
