/* ===== Card dự án ===== */
.product-small.box {
    background: var(--color-white);
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #ececec;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    transition: .35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-small.box:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
}

/* ===== Ảnh ===== */
.product-small .box-image {
    overflow: hidden;
    border-radius: 22px 22px 0 0;
}

.product-small .box-image img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
    transition: .6s;
    display: block;
}

.product-small:hover .box-image img {
    transform: scale(1.08);
}

/* ===== Nội dung ===== */
.product-small .box-text {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 15px;
}

/* ===== Tiêu đề ===== */
.product-small .product-title {
    margin: 0;
}

.product-small .product-title a {
    color: var(--color-black);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
    text-decoration: none;
    transition: .3s;
}

.product-small:hover .product-title a {
    color: var(--color-main);
}

/* ===== Địa chỉ + diện tích ===== */
.project-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 10px 0 10px;
    color: #666;
    font-size: 15px;
}

.project-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.project-info i {
    color: var(--color-main);
    font-size: 16px;
}

/* ===== Mô tả ===== */
.product-short-description {
    color: #555;
    font-size: 13px;
	margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== Nút cuối ===== */
.project-btn {
    margin-top: auto;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid #ececec;
    text-decoration: none;
    color: var(--color-main);
    font-weight: 700;
    font-size: 14px;
    transition: .3s;
}

.project-btn span {
    transition: .3s;
}

.project-btn i {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .35s;
}

.product-small:hover .project-btn span {
    transform: translateX(5px);
}

.product-small:hover .project-btn i {
    transform: translateX(8px);
}

/* Ẩn giá */
.price-wrapper {
    display: none;
}

/* Tablet */
@media (max-width:1024px) {
    .product-small .product-title a {
        font-size: 27px;
    }

    .project-info {
        font-size: 15px;
        gap: 15px;
    }

    .product-short-description {
        font-size: 15px;
    }

    .project-btn {
        font-size: 16px;
    }
}

/* Mobile */
@media (max-width:768px) {
    .product-small.box {
        border-radius: 18px;
    }

    .product-small .box-image {
        border-radius: 18px 18px 0 0;
    }

    .product-small .product-title a {
        font-size: 22px;
    }

    .project-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin: 14px 0 16px;
        font-size: 14px;
    }

    .project-info i {
        font-size: 14px;
    }

    .product-short-description {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 22px;
    }

    .project-btn {
        font-size: 15px;
        padding-top: 18px;
    }

    .project-btn i {
        width: 34px;
        height: 34px;
    }
}