/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/

/* Box thông tin chi tiết dự án */
.box_meta_single_content {
    margin: 35px 0;
    padding: 28px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

/* Tiêu đề */
.box_meta_single_content .tieu-de.thong-so {
    grid-column: 1 / -1;
    margin: 0 0 8px;
    padding-bottom: 14px;
    font-size: 26px;
    font-weight: 700;
    color: #1f2937;
    position: relative;
}

.box_meta_single_content .tieu-de.thong-so::after {
    content: "";
    width: 75px;
    height: 4px;
    background: #4a86e8;
    border-radius: 20px;
    position: absolute;
    left: 0;
    bottom: 0;
}

/* Project nằm 1 hàng riêng */
.box_meta_single_content .item-project {
    grid-column: 1 / -1;
}

/* Efficiency nằm 1 hàng riêng */
.box_meta_single_content .item-efficiency {
    grid-column: 1 / -1;
}

/* Location 50% */
.box_meta_single_content .item-location {
    grid-column: span 1;
}

/* Completion time 50% */
.box_meta_single_content .item-completion-time {
    grid-column: span 1;
}

/* Style từng item */
.box_meta_single_content .item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, #f8fbff, #ffffff);
    border: 1px solid #e1edf8;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.box_meta_single_content .item:hover {
    transform: translateY(-3px);
    border-color: #0d8bd9;
    box-shadow: 0 12px 28px rgba(13, 139, 217, 0.14);
}

.box_meta_single_content .item img {
    width: 52px;
    height: 52px;
    padding: 10px;
    background: #eaf6ff;
    border-radius: 14px;
    object-fit: contain;
    flex-shrink: 0;
}

.box_meta_single_content .fw-b {
    margin-bottom: 5px;
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.box_meta_single_content .fs-12 {
    font-size: 15px;
    line-height: 1.6;
    color: #4b5563;
}

/* Mobile */
@media (max-width: 768px) {
    .box_meta_single_content {
        grid-template-columns: 1fr;
        padding: 22px;
        gap: 14px;
    }

    .box_meta_single_content .item-project,
    .box_meta_single_content .item-efficiency,
    .box_meta_single_content .item-location,
    .box_meta_single_content .item-completion-time {
        grid-column: 1 / -1;
    }

    .box_meta_single_content .tieu-de.thong-so {
        font-size: 20px;
    }

    .box_meta_single_content .item {
        padding: 16px;
    }

    .box_meta_single_content .item img {
        width: 46px;
        height: 46px;
    }
}