/*
 * CSS cho Banner Trang Danh Mục Bài Viết
 */

/* 1. Ẩn tiêu đề mặc định của Flatsome trên trang Category */
.category .page-title {
    display: none !important;
}

/* 2. Style cho Hero Banner mới */
.hbp-category-hero {
    position: relative;
    padding: 80px 0;
    margin-bottom: 40px;
    color: #fff;
    text-align: center;
}
.hbp-category-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}
.hbp-category-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

/* Breadcrumbs */
.hbp-breadcrumbs {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}
.hbp-breadcrumbs a {
    color: #fff;
    transition: color 0.3s;
}
.hbp-breadcrumbs a:hover {
    color: #b3dc82;
}
.hbp-breadcrumbs span {
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.5);
}

/* Title & Desc */
.hbp-category-title {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.hbp-category-desc {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive */
@media (max-width: 849px) {
    .hbp-category-title {
        font-size: 32px;
    }
    .hbp-category-hero {
        padding: 60px 0;
    }
}
@media (max-width: 550px) {
    .hbp-category-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    .hbp-category-hero {
        padding: 40px 15px;
        margin-bottom: 30px;
    }
    .hbp-category-desc {
        font-size: 14px;
    }
    .hbp-breadcrumbs {
        font-size: 11px;
    }
}
