div#content {
    padding: 30px 0;
}
h1.page-title {
    margin-bottom: 30px;
}
.estate-item .share a {
    gap: 4px;
}
.estate-item .share a:first-child {
    width: max-content;
    padding: 0 4px;
}.box_conetent .gallery-col.col .box-text {    padding: 4px;    text-align: center;    font-size: 14px;}
.widget-area .row.large-columns-4.medium-columns-1.small-columns-1 > .col {
    flex-basis: 100%;
    max-width: 100%;
}
/* Bo góc cho khung chứa ảnh trong Gallery */
.box_conetent .box-image {
    border-radius: 12px; /* Độ bo góc bạn muốn */
    overflow: hidden;    /* Bắt buộc phải có để ảnh không tràn ra khỏi góc bo */
}

/* Bo góc trực tiếp cho ảnh */
.box_conetent .box-image img {
    border-radius: 12px;
    transition: transform 0.5s ease; /* Thêm hiệu ứng mượt khi hover */
}

/* Hiệu ứng zoom nhẹ khi di chuột vào ảnh cho "sang" hơn */
.box_conetent .box:hover .box-image img {
    transform: scale(1.05);
}
.single h1.entry-title {
    margin: 23px 0 14px;
    font-size:21px;
    font-weight:700;
}
.tax_item {
    display: flex;
    flex-flow: wrap;
    gap: 5px;
}
.tax_item a {
    border-radius: 50px;
    padding: 9px 9px;
    display: inline-block;
    color: #fff;
    line-height: 1;
    font-size: 14px;
    text-transform: capitalize;
    background-color: #717171;
}
/* Highlight the Price */
/* TRANG TRÍ BẢNG GIÁ CHUYÊN NGHIỆP */
.bds_content table {
    border-collapse: separate; /* Bắt buộc để bo góc border-radius hoạt động */
    border-spacing: 0;
    width: 100%;
    border: 1px solid #e2e8f0; /* Nét mảnh */
    border-radius: 12px !important; /* Bo góc đồng bộ */
    overflow: hidden;
    margin: 25px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}

/* Hiệu ứng sáng lên và đổ bóng cho toàn bảng khi hover */
.bds_content table:hover {
    border-color: #004AAD; /* Đổi màu viền sang xanh thương hiệu khi hover */
    box-shadow: 0 8px 25px rgba(0,74,173,0.1); /* Sáng lên nhẹ nhàng */
}

/* Làm đẹp tiêu đề bảng (Thường là hàng đầu tiên) */
.bds_content table th {
    background-color: #f8fafc;
    color: #1e293b;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    padding: 15px;
    border-bottom: 1px solid #e2e8f0;
}

/* Hiệu ứng sáng dòng (Highlight Row) khi hover vào từng hàng */
.bds_content table tr {
    transition: background-color 0.2s ease;
}

.bds_content table tr:hover {
    background-color: #f0f7ff !important; /* Màu xanh nhạt cực nhẹ khi khách rê chuột vào dòng */
}

.bds_content table td {
    padding: 12px 15px;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}

/* Dòng cuối cùng không có gạch chân để giữ bo góc đẹp */
.bds_content table tr:last-child td {
    border-bottom: none;
}
/* Chỉ áp dụng giá đỏ lớn cho trang CHI TIẾT BẤT ĐỘNG SẢN */
/* Áp dụng cho mục cuối cùng (thường là Giá) trong phần tax_item */
.single-properties .tax_item a:last-child {
    background: transparent !important;
    color: #d9534f !important;
    font-size: 26px !important;
    font-weight: 800 !important;
    
    /* CĂN LỀ PHẢI TUYỆT ĐỐI */
    margin-left: auto !important;
    display: inline-flex;
    align-self: center;
    text-decoration: none;

    /* THIẾT LẬP BORDER ẨN */
    border: 2px solid transparent !important; /* Tạo sẵn khung nhưng trong suốt */
    border-radius: 50px;                       /* Bo góc nhẹ cho khung */
    padding: 2px 12px !important;             /* Thêm chút khoảng cách để khi hiện border sẽ đẹp hơn */
    transition: all 0.3s ease;                /* Hiệu ứng chuyển mượt mà */
}

/* HIỆU ỨNG KHI HOVER */
.single-properties .tax_item a:last-child:hover {
    border-color: #d9534f !important;         /* Hiện viền cùng màu chữ */
    background-color: rgba(217, 83, 79, 0.05) !important; /* Nền đỏ cực nhạt để làm nổi bật khối */
    transform: scale(1.05);                   /* Phóng to nhẹ 5% để tạo sự sống động */
    cursor: pointer;
}

/* Đảm bảo khung cha hỗ trợ đẩy lề phải */
.single-properties .tax_item {
    display: flex;
    align-items: center;
    width: 100%; /* Trải dài hết chiều ngang để margin-left: auto có tác dụng */
}
/* Trả lại hiển thị bình thường cho trang CHI TIẾT DỰ ÁN */
/* Áp dụng cho trang Chi tiết Dự án */
.single-project .tax_item a:last-child {
    background-color: #717171 !important; /* Màu xám giống các đối tượng khác */
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    text-transform: capitalize !important;
    border-radius: 50px !important;
    padding: 6px 12px !important; /* Padding cân đối */
    margin-left: 0 !important;
    border: none !important;
    display: inline-block !important;
}

/* Đảm bảo tất cả các tag trong Project đều có Border Radius đẹp */
.single-project .tax_item a {
    border-radius: 50px;
    padding: 6px 12px;
    display: inline-block;
    color: #fff;
    line-height: 1;
    font-size: 14px;
    text-transform: capitalize;
    background-color: #717171;
    margin-right: 5px;
}


h3.content-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    border-left: 5px solid #004AAD;
    padding-left: 15px;
    margin: 40px 0 20px;
}
.listing_detail {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    margin-bottom: 30px;
}
.listing_detail .item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}
.listing_detail .item svg {
    width: 15px;
}
.listing_detail .item svg path {
    fill: #717171
}
/* Khởi tạo bộ đếm cho danh sách listing_detail */
.listing_detail {
    counter-reset: listing-counter; /* Bắt đầu đếm từ 0 */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

/* Ẩn icon SVG cũ */
.listing_detail .item svg {
    display: none !important;
}

/* Tạo số thứ tự thay thế icon */
.listing_detail .item::before {
    counter-increment: listing-counter; /* Tăng số lên 1 cho mỗi item */
    content: counter(listing-counter) "."; /* Hiển thị số kèm dấu chấm */
    
    /* Trang trí cho con số */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 21px;
    height: 21px;
    margin-right: 10px;
    background-color: #f1f5f9; /* Màu nền nhẹ cho số */
    color: #004AAD; /* Màu số thương hiệu */
    font-weight: 700;
    font-size: 13px;
    border-radius: 6px; /* Bo góc nhẹ cho số (Border Radius) */
    border: 1px solid #e2e8f0;
}

/* Tùy chỉnh dòng chữ đi kèm */
.listing_detail .item {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #4a5568;
    padding: 4px 0;
}
.bds_lienquan {
    margin-top: 30px;
}
.bds_lienquan h4.title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}
.single_info {
    font-size: 14px;
}
.single_info p {
    margin-bottom: 5px;
}
.single_info a {
    font-weight: bold;
    color: var(--primary-color);
}
/* Bo góc cho khung chứa bản đồ */
.map_single {
    border-radius: 12px; /* Đồng bộ với ảnh và bảng giá của anh */
    overflow: hidden;    /* Bắt buộc phải có để "cắt" các góc nhọn của iframe */
    border: 1px solid #e2e8f0; /* Nét mảnh bao quanh cho sang */
    line-height: 0;      /* Loại bỏ khoảng hở thừa dưới iframe */
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* Đổ bóng nhẹ cho chuyên nghiệp */
}

/* Đảm bảo iframe lấp đầy khung và cũng được bo góc */
.map_single iframe {
    width: 100% !important;
    height: 400px;       /* Anh có thể chỉnh độ cao tùy ý */
    border: 0;           /* Xóa viền mặc định của Google */
    display: block;
}

/* Đảm bảo iframe lấp đầy khung và cũng được bo góc */
.map_single iframe {
    width: 100% !important;
    height: 400px;       /* Anh có thể chỉnh độ cao tùy ý */
    border: 0;           /* Xóa viền mặc định của Google */
    display: block;
}
.info_duan {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 30px;
}
.info_duan .avatar img {
    height: 80px;
    width: 80px;
    object-fit: cover;
    border-radius: 5px;
}
.info_duan .content {
    font-size: 14px;
    display: flex;
    flex-flow: column;
    gap: 4px;
}
.info_duan .content .title {
    font-weight: bold;
}
.info_duan .content .mota {
    display: flex;
    align-items: center;
    gap: 30px;
}
.info_duan .content .mota span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.info_duan .content .mota span svg {
    width: 15px;
}
.info_duan .content .chudautu {
    display: flex;
    align-items: center;
    gap: 4px;
}
.info_duan .content .chudautu svg {
    width: 15px;
}
/* 1. KHUNG CHỨA TỔNG QUAN */
.tongquan {
    display: grid !important; /* Bắt buộc dùng Grid */
    /* Tự động tính số cột dựa trên chiều rộng tối thiểu 150px, tối đa lấp đầy hàng */
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)) !important;
    gap: 10px !important;
    margin-bottom: 30px;
    width: 100% !important;
}

/* 2. CÁC ĐỐI TƯỢNG BÊN TRONG */
.tongquan .item {
    display: flex !important;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    padding: 10px 12px;
    background: #ffffff;
    border: 1px solid #f2f2f2;
    border-radius: 12px; /* Border radius hiện đại */
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: 0.3s;
    
    /* QUAN TRỌNG: Xóa bỏ width calc cũ */
    width: auto !important; 
    min-width: 0;
    min-height: 48px;
}

/* 3. XỬ LÝ ĐỐI TƯỢNG TRỐNG (Ẩn hoàn toàn nếu không có chữ/ảnh) */
.tongquan .item:empty,
.tongquan .item:not(:has(span, strong, img, svg)) {
    display: none !important;
}

/* 4. ICON VÀ SVG */
.tongquan .item img, 
.tongquan .item svg {
    width: 20px !important;
    height: 20px !important;
    object-fit: contain;
    flex-shrink: 0;
}

.tongquan .item:hover {
    border-color: #004AAD;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.col.post-item.estate-item .view_post {
    position: absolute;
    right: 10px;
    top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #ffffff00;
    /* font-weight: bold; */
    font-size: 14px;
}
.col.post-item.estate-item .view_post svg {
    width: 0px;
}
.col.post-item.estate-item .view_post svg path {
    stroke: #fff;
}
.col.post-item.estate-item .view_post svg circle {
    stroke: #fff;
}
.chitiet {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 30px;
}
.chitiet .ietm * {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    line-height: 1;
}
.chitiet .ietm {
    font-size: 14px;
}
.single-du-an h1.entry-title {
    font-weight: bold;
}
.tongquan.tq_da .item i {
    color: var(--primary-color);
    width: 16px;
}
.matbang {
    margin-bottom: 30px;
}
.info_duan .top {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}
.col.post-item.estate-item .info {
    position: absolute;
    bottom: 5px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
    color: #fff;
    font-size: 14px;
}
.duan_address {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    gap: 5px;
    font-size: 14px;
}
.duan_content {
    margin: 20px 0;
}
.tongquan.tq_da .item {
    flex-flow: row;
}
.duan_address svg {
    width: 18px;
}
.row.box_top.lightbox-multi-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.row.box_top.lightbox-multi-gallery .gallery-col.col {
    width: 100%;
    flex-basis: 100%;
    max-width: 100%;
}
.row.box_top.lightbox-multi-gallery .gallery-col.col:first-child {
    grid-row: 1 / 3;
    grid-column: 1 / 3;
}
.row.box_top.lightbox-multi-gallery .gallery-col.col .box_all {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    opacity: 1;
    color: #fff;
    font-weight: bold;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
    background: #00000061;
}
.row.box_top.lightbox-multi-gallery .gallery-col.col .box_all {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    opacity: 1;
    color: #fff;
    font-weight: bold;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
    background: #00000061;
    cursor: pointer;
}
.box_conetent {
    margin-bottom: 30px !important;
}
.box_conetent .gallery-col.col .col-inner {
    border: 1px solid #ccc;
}
.row.box_top.lightbox-multi-gallery .gallery-col.col:nth-child(n+4) {
    display: none;
}
.col.post-item.estate-item.item-duan .box.box-normal {
    display: flex;
}
.estate-item.item-duan .meta-item {
    margin-right: 10px !important;
    width: max-content;
}
.tax_item .item {
    display: flex;
    align-items: center;
    width: max-content;
    min-width: max-content;
    font-size: 14px;
    font-weight: bold;
    gap: 6px;
    margin-left: 10px;
}
.tax_item .item svg {
    width: 9px;
}
/* --- TRANG TRÍ NỘI DUNG BÀI VIẾT .BDS_CONTENT --- */
.bds_content {
    line-height: 1.8; /* Khoảng cách dòng rộng rãi, dễ đọc */
    color: #334155; /* Màu chữ xám sâu, không bị chói mắt */
    font-size: 14px;
    text-align: justify; /* Căn đều hai bên cho chuyên nghiệp */
}

/* Trang trí các tiêu đề H2, H3 trong bài viết */
.bds_content h2, .bds_content h3 {
    color: #1e293b;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 15px;
}

/* Tạo vạch màu bên cạnh tiêu đề - Border Radius nhẹ */
.bds_content h2::before, .bds_content h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 4px;
    background: #004AAD; /* Màu chủ đạo của bạn */
    border-radius: 10px; /* Bo tròn vạch màu */
}

/* Trang trí hình ảnh trong bài viết */
.bds_content img {
    border-radius: 12px !important; /* Bo góc ảnh cực đẹp */
    box-shadow: 0 4px 15px rgba(0,0,0,0.08); /* Đổ bóng nhẹ cho ảnh nổi bật */
    margin: 20px 0;
    transition: transform 0.3s ease;
}

.bds_content img:hover {
    transform: scale(1.01); /* Hiệu ứng zoom nhẹ khi di chuột */
}

/* Trang trí các đoạn văn */
.bds_content p {
    margin-bottom: 20px;
}

/* Nhấn mạnh các đoạn bôi đậm */
.bds_content strong {
    color: #0f172a;
}

/* Trang trí Table (Bảng giá/Thông số) nếu có */
.bds_content table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 12px !important; /* Bo góc cho bảng */
    overflow: hidden;
    margin: 25px 0;
}

.bds_content table td, .bds_content table th {
    padding: 12px 15px;
    border-bottom: 1px solid #f1f5f9;
}

.bds_content table tr:last-child td {
    border-bottom: none;
}

.bds_content table th {
    background-color: #f8fafc;
    font-weight: 600;
    text-align: left;
}
button.toggle-button {
    margin: 0 0 30px;
    width: 100%;
    text-align: left;
    padding: 0;
    text-transform: inherit;
    color: #b6740f;
    font-style: italic;
}
.bds_content.expanded,.info_duan .noidung.expanded {
    height: auto;
}
.toggle-button,.toggle-button1 {
    display: none;
    margin-top: 10px;
}
.show-button {
    display: inline-block;
}
.info_duan .noidung{
    height: 50px;
    overflow: hidden;
    transition: height 0.3s ease;
}
.info_duan button.toggle-button1 {
    margin: 0;
    padding: 0;
    text-transform: inherit;
    line-height: 20px;
    min-height: 20px;
}
.col.post-item.estate-item.item-duan .estate-id {
    font-weight: bold;
}
.form_group {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    flex-flow: wrap;
    row-gap: 0;
}
.form_group .form_item {
    flex: 1;
}
.form_group input,.form_group select {
    box-shadow: none !important;
    border-radius: 3px !important;
}
.form_group select option {
    font-size: 14px;
}
.form_group .form_item:first-child {
    min-width: calc((100% - 45px) / 2 + 15px);
}

.form_group .form_item {
    width: calc((100% - 45px) / 4);
    min-width: calc((100% - 45px) / 4);
}
.tongquan.tq_da {
    margin-top: 10px;
    flex-flow: wrap;
    justify-content: start;
}
form#filter button {
    width: 100%;
    background-color: #5a5858;
    color: #fff;
    border-radius: 2px;
    margin: 0;
}
form#filter_search {
    display: flex;
    gap: 10px;
}

form#filter_search input#ss {
    border: 1px solid #ccc;
    border-radius: 4px;
    height: 40px;
}

form#filter_search button {
    width: fit-content;
    min-width: fit-content;
    background-color: #5a5858;
    color: #fff;
    border-radius: 2px;
    margin: 0;
    height: 40px;
    text-transform: inherit;
    font-weight: 500;
}
.post-type-archive-du-an h1.page-title {
    display: none;
}
.tax_item a:hover {
    background: #004AAD !important; /* Professional Blue */
    color: #fff !important;
    transform: translateY(-2px);
}


/* Pc      --------------------------------------------- */
@media(min-width: 766px){
}
@media (min-width: 1023px){
    .bds_heading {
        margin-top: 15px;
    }
}
@media (max-width: 1024px){
}
@media (min-width: 990px) and (max-width: 1100px){
}
/*************** ------------------------PC và Tablet  --------------------------  ***************/
@media (min-width: 740px){
}
/*************** ------------------------Tablet  --------------------------  ***************/
@media (min-width: 740px) and (max-width: 1023px){
}
@media (max-width:990px){
}
/*************** ------------------------Mobile và Tablet --------------------------  ***************/
@media (max-width: 1023px){
}
 /*************** ------------------------ Mobile   --------------------------  ***************/
@media screen and (max-width: 549px){
    .form_group {
        flex-flow: wrap;
    }
    .form_group .form_item {
        flex: initial;
    }
    .form_group .form_item {
        width: calc((100% - 15px) / 2);
    }
    .form_group .form_item:first-child {
        min-width: 100%;
    }
    .form_group input, .form_group select {
        margin-bottom: 5px;
    }
    .tongquan {
        flex-flow: wrap;
        justify-content: inherit;
    }
    .tax_item .item {
        margin: 0;
    }
    .tongquan .item {
        width: calc(50% - 10px);
    }
    .info_duan .content .mota {
        gap: 10px;
        flex-flow: wrap;
    }
    .single h1.entry-title {
        font-size: 20px;
    }
    
    .tongquan {
        gap: 10px;
       
    }
    
    .chitiet {
        grid-template-columns: repeat(2, 1fr);
    }
    .tongquan.tq_da {
        flex-flow: wrap;
    }
    
    .listing_detail {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .duan_content {
        font-size: 14px;
    }
    .tongquan.tq_da .item {
        width: max-content;
    }
    .row.box_top.lightbox-multi-gallery .gallery-col.col:first-child {
        grid-row: 1 / 2;
        grid-column: 1 / 3;
    }
    
    .row.box_top.lightbox-multi-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    .col.post-item.estate-item.item-duan .box.box-normal {
        flex-flow: column;
    }
.tongquan.tq_da .item {
    width: calc(50% - 5px);
}
}
/* 1. ÉP BO GÓC CHO TOÀN BỘ GALLERY DỰ ÁN */
.single-du-an .gallery-col .box,
.single-du-an .gallery-col .box-image,
.single-du-an .gallery-col .box-image img {
    border-radius: 12px !important;
    overflow: hidden !important;
}

/* 2. ĐỊNH NGHĨA LẠI NÚT "XEM TẤT CẢ" THEO PHONG CÁCH MỚI */
.single-du-an .gallery-box {
    position: relative !important;
}

/* Ưu tiên Class .box_all để hiện nút trắng sang trọng */
.single-du-an .box_all {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    display: flex !important; /* Buộc phải hiện */
    align-items: center;
    justify-content: center;
    width: max-content !important;
    height: auto !important;
    background: rgba(255, 255, 255, 0.95) !important;
    color: #333 !important;
    padding: 10px 22px !important;
    border-radius: 50px !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3) !important;
    backdrop-filter: blur(8px);
    z-index: 99 !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    white-space: nowrap;
    border: 1px solid #eee !important;
}

/* Ẩn các thuộc tính cũ của .box_all trong main.css để không bị đè màu đen */
.row.box_top.lightbox-multi-gallery .gallery-col.col .box_all {
    opacity: 1 !important;
}
/* 1. ÉP BO GÓC 12PX CHO GALLERY VÀ ẢNH TRONG TRANG DỰ ÁN */
.single-du-an .gallery-col .box,
.single-du-an .gallery-col .box-image,
.single-du-an .gallery-col .box-image img,
.single-du-an .custom-gallery-box {
    border-radius: 12px !important;
    overflow: hidden !important;
}

/* 2. ĐỊNH DẠNG NÚT "XEM TẤT CẢ" ĐÈ LÊN ẢNH THỨ 3 */
.single-du-an .custom-gallery-box {
    position: relative !important;
}

.single-du-an .box_all {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95) !important; /* Nền trắng đục sang trọng */
    color: #333 !important;
    padding: 10px 20px !important;
    border-radius: 50px !important; /* Bo tròn kiểu viên thuốc */
    box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important;
    backdrop-filter: blur(5px); /* Làm mờ ảnh phía sau nút */
    z-index: 99 !important;
    width: max-content !important;
    font-weight: bold !important;
    font-size: 14px !important;
    white-space: nowrap;
}

/* ẨN CÁC ẢNH TỪ THỨ 4 TRỞ ĐI ĐỂ GIỮ BỐ CỤC 3 CỘT */
.single-du-an .gallery-col:nth-child(n+4) {
    display: none !important;
}