.elementor-8879 .elementor-element.elementor-element-3880859{--display:flex;--background-transition:0.3s;}/* Start custom CSS for html, class: .elementor-element-bc4ac03 *//* Container chính */
.info-container {
    display: flex; /* Căn thông tin theo hàng ngang */
    gap: 20px; /* Khoảng cách giữa các info-house */
    background: var(--lt-color-gray-100); /* Nền nhạt */
    padding: 20px;
    border-radius: 10px;
}

/* Khối từng info-house */
.info-house {
    background: rgb(247, 242, 236);
    padding: 150px;
    color: black;
    width: 50%; /* Chiếm 45% chiều rộng container */
    box-shadow: none; /* Không có bóng */
    border-radius: 10px; /* Không bo góc */
    text-align: left; /* Chữ căn trái */
}


/* Tiêu đề */
.title-container {
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
}

.title-label {
    color: black;
    font-size: 20px;
    font-weight: 550;
    margin-right: 10px;
}

.title-value {
    color: #BDA588; /* Màu xanh lá */
    font-size: 20px;
    font-weight: 700;
    background: white;
    padding: 5px 15px;
    border-radius: 20px;
}

/* Nội dung chữ */
.info-house p {
    margin: 5px 0;
    font-size: 18px;
    line-height: 1.px;
}
.pic-house {
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white; /* Nền trắng */
    position: relative;
    transform: scale(1); /* Mặc định scale đầy đủ */
    transition: all 0.6s ease-in-out;
    opacity: 1; /* Mặc định ảnh hiển thị */
    padding: 10px; /* Thêm khoảng cách nhỏ */
}

/* Ảnh bên trong */
.pic-house img {
    max-width: 100%; /* Giới hạn ảnh theo kích thước container */
    height: auto; /* Đảm bảo tỷ lệ ảnh */
    display: inline-block;
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-3880859 *//* Desktop mặc định */
.info-container {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%; /* Giữ chiều rộng đầy đủ */
}

.info-house {
    flex: 1;
    text-align: left;
    word-wrap: break-word;
    word-break: break-word;
}

.pic-house {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pic-house img {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    border-radius: 8px;
    object-fit: cover;
}

/* Tablet */
@media (max-width: 768px) {
    .info-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 12px;
    }

    .info-house {
        text-align: center;
        padding: 0 10px;
    }

    .pic-house img {
        max-width: 90%;
        max-height: 200px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .info-container {
        width: 170%; /* Giữ chiều rộng 170% */
        margin: 0; /* Hủy margin mặc định */
        left: 40%; /* Dịch chuyển từ trái */
        transform: translateX(-20%); /* Căn giữa theo chiều ngang */
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 10px;
    }

    .info-house {
        text-align: center;
        padding: 0 8px;
    }

    .info-house .title-value {
        font-size: 16px;
        line-height: 1.5;
        font-weight: 500;
        color: #333;
    }

    .info-house p {
        font-size: 14px;
        line-height: 1.4;
        color: #555;
    }

    .pic-house img {
        max-width: 100%;
        max-height: 180px; /* Giảm chiều cao của ảnh */
        object-fit: cover;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
}/* End custom CSS */