/* Thiết lập Box Sizing cho tất cả các phần tử */
* {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    text-rendering: geometricprecision;
    font-family: Nunito, sans-serif;
}

/* --- SingleTab Container --- */
.SingleTab {
    margin: 0 0 15px;
    width: 100%;
}

/* --- Header Section --- */
.SingleTab .Header {
    height: 30px;
    width: 100%;
    border-radius: 8px;
    background-color: #1a8ce0;
    /*display: flex; /* Kích hoạt Flexbox */
    align-items: center; /* Căn giữa theo chiều dọc */
    justify-content: center; /* CĂN GIỮA CÁC MỤC THEO CHIỀU NGANG */
    padding: 0 10px; /* Thêm padding ngang, không cần padding-right riêng nữa */
}

.SingleTab .Header span.text {
    background: url(images/c.png) left top no-repeat;
    display: block;
    /* float: left; -- Bỏ float khi dùng flexbox để căn giữa */
    height: 41px;
    -moz-border-radius-topleft: 5px;
    -webkit-border-top-left-radius: 5px;
    border-top-left-radius: 5px;
    -moz-border-radius-bottomleft: 5px;
    -webkit-border-bottom-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.SingleTab .Header .HeaderWrap {
    display: flex;
    align-items: center;
    /* margin: auto; -- Có thể dùng để đẩy HeaderWrap ra giữa nếu có các phần tử khác */
}

.SingleTab .Header .HeaderWrap .text > a {
    position: relative;
    color: #fff;
    font: 700 12px/30px Nunito, sans-serif, arial;
    display: inline-block;
    padding: 0 10px;
    text-transform: uppercase;
    background-size: cover;
    border-radius: 7px;
    white-space: nowrap;
}

/* Ẩn hoàn toàn HeadWraper (danh sách tab) để chỉ hiển thị tiêu đề và căn giữa nó */
.SingleTab .Header .HeadWraper {
    display: none; /* Ẩn toàn bộ phần này */
}

/* Giữ lại các quy tắc nếu bạn muốn hiện lại HeadWraper nhưng nó sẽ không được căn giữa cùng với tiêu đề một cách tự động khi dùng justify-content: center cho cả Header */
/* .SingleTab .Header .HeadWraper ul {
    display: inline-block;
    list-style: none;
    margin: 0;
    padding: 0;
}

.SingleTab .Header .HeadWraper li {
    display: inline-block;
}

.SingleTab .Header .HeadWraper li span {
    display: block;
    height: 28px;
    line-height: 28px;
}

.SingleTab .Header .HeadWraper .Primary span {
    background: #cecece;
    margin-right: 4px;
} */

.SingleTab .Wrap .first .title .new,
.SingleTab .Wrap .next li a .new {
    background: url(images/new.gif) right center no-repeat rgba(0, 0, 0, 0);
}

.SingleTab .Header .HeadWraper .Image {
    margin-right: 6px;
}

/* --- Content Wrapper --- */
.SingleTab .Wrap {
    border: 1px solid #e0e0e0;
    margin: 0;
    padding: 10px 15px 10px 5px;
    display: flex;
    flex-direction: column;
}

/* --- First Article/Item Section --- */
.SingleTab .Wrap .first {
    position: relative;
    min-height: 125px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 10px;
    gap: 15px;
}

.SingleTab .Wrap .first .image {
    width: 160px;
    height: 120px;
    object-fit: cover;
    flex-shrink: 0;
}

.SingleTab .Wrap .first .content-text {
    flex-grow: 1;
    flex-basis: 0;
    overflow: hidden;
}

.SingleTab .Wrap .first .title {
    margin: 0;
    padding: 0;
    line-height: 1.2;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
}

.SingleTab .Wrap .first .title .new {
    padding-left: 8px;
    color: transparent;
}

.SingleTab .Wrap .first p {
    margin: 0;
    padding-top: 6px;
    text-align: justify;
    font-size: 12px !important;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.SingleTab .Wrap .first .title a {
    color: #555;
    font-weight: 700;
    font-size: 14px;
}

.SingleTab .Wrap .first .title a:hover,
.SingleTab .Wrap a:hover {
    color: #1879cf;
}

.SingleTab .Wrap .clear {
    clear: both;
}

/* --- Next Articles/Items Section --- */
.SingleTab .Wrap .next {
    color: #1879cf;
    list-style: square;
    margin: 3px 0 0 0;
    padding-left: 20px;
}

.SingleTab .Wrap .next li {
    padding: 4px 0;
    font: 13px arial;
}

.SingleTab .Wrap .next li a {
    text-decoration: none;
    font-family: arial;
}

.SingleTab .Wrap .next li a .new {
    padding-left: 7px;
    color: transparent;
}

---
### Media Queries

```css
/* --- Desktop & Laptop (Mặc định) --- */
/* Các thuộc tính trên đã được tối ưu cho màn hình lớn hơn */

/* --- Tablet (768px trở xuống) --- */
@media only screen and (max-width: 768px) {
    .SingleTab .Header {
        height: auto;
        flex-wrap: wrap;
        padding: 5px 10px;
    }

    .SingleTab .Header .HeaderWrap .text > a {
        font-size: 11px;
        line-height: 25px;
        padding: 0 8px;
    }

    /* Đảm bảo HeaderWraper vẫn bị ẩn trên tablet/mobile nếu bạn muốn căn giữa tiêu đề */
    .SingleTab .Header .HeadWraper {
        display: none;
    }

    /* Các quy tắc responsive cho nội dung chính */
    .SingleTab .Wrap {
        padding: 10px 10px 10px 5px;
    }

    .SingleTab .Wrap .first {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .SingleTab .Wrap .first .image {
        width: 100%;
        height: 180px;
    }

    .SingleTab .Wrap .first .content-text {
        width: 100%;
        text-align: left;
    }

    .SingleTab .Wrap .first .title {
        width: 100%;
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }

    .SingleTab .Wrap .first p {
        width: 100%;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    .SingleTab .Wrap .next {
        padding-left: 15px;
    }

    .SingleTab .Wrap .next li {
        font-size: 12px;
    }
}

/* --- Mobile (480px trở xuống) --- */
@media only screen and (max-width: 480px) {
    .SingleTab .Header {
        padding: 5px;
    }

    .SingleTab .Header .HeaderWrap .text > a {
        font-size: 10px;
        line-height: 20px;
        padding: 0 5px;
    }

    .SingleTab .Wrap {
        padding: 8px 5px;
    }

    .SingleTab .Wrap .first .image {
        height: 150px;
    }

    .SingleTab .Wrap .next {
        padding-left: 10px;
    }
}