﻿/* --- BLOG CATEGORY PAGE STYLES --- */

/* 1. Page Header */
.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;
}

/* Đườ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;
}

/* 2. Blog Content Area */
.blog-content {
    background-color: #fff;
    min-height: 60vh;
}

/* Empty State */
.opacity-25 {
    opacity: 0.25;
}

/* Responsive */
@media (max-width: 768px) {
    .page-title {
        font-size: 1.8rem;
    }

    .page-header {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
}
