/*
Theme Name: Bất động sản
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

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


@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}
.thong-tin-chi-tiet-wrapper {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
    background: #fff;
}

.thong-tin-chi-tiet-wrapper h3 {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

/* Grid layout */
.thong-tin-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* desktop: 3 cột */
    gap: 20px;
}

@media (max-width: 991px) {
    .thong-tin-grid {
        grid-template-columns: repeat(2, 1fr); /* tablet: 2 cột */
    }
}

@media (max-width: 575px) {
    .thong-tin-grid {
        grid-template-columns: 1fr; /* mobile: 1 cột */
    }
}
.thong-tin-item{
	    display: flex;
    justify-content: space-between;
}
/* Item */
.thong-tin-item strong {
    display: block;
    font-weight: 400;        /* in nhạt */
    color: #666;
    margin-bottom: 4px;
}

.thong-tin-item div {
    font-weight: 600;        /* in đậm */
    color: #000;
}

/* Highlight (Giá + Chủ đầu tư) */
.thong-tin-item.highlight div {
    color: #0073e6; /* xanh dương */
}

