/* Mobile responsive styling for property detail info-box items */

/* Mobile view: 2 items per row */
@media (max-width: 768px) {
    /* Main property overview info-box styling */
    .single-property-overview .info-box {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px 20px;
        column-gap: 20px;
        row-gap: 15px;
    }
    
    .single-property-overview .info-box .item {
        width: 100%;
        max-width: none;
        min-width: 0;
        justify-content: flex-start;
        gap: 8px;
    }
    
    .single-property-overview .info-box .item .box-icon {
        flex-shrink: 0;
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    
    .single-property-overview .info-box .item .box-icon .icon {
        font-size: 20px;
    }
    
    .single-property-overview .info-box .item .content {
        min-width: 0;
        flex: 1;
    }
    
    .single-property-overview .info-box .item .content .label {
        font-size: 12px;
        margin-bottom: 2px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .single-property-overview .info-box .item .content span {
        font-size: 14px;
        line-height: 18px;
        font-weight: 700;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    /* Comparison section meta-list styling */
    .homeya-box .content .meta-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px 15px;
        margin-top: 12px;
    }
    
    .homeya-box .content .meta-list .item {
        gap: 6px;
        align-items: center;
        font-size: 13px;
    }
    
    .homeya-box .content .meta-list .item .icon {
        font-size: 16px;
        flex-shrink: 0;
    }
    
    .homeya-box .content .meta-list .item span {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        min-width: 0;
    }
}

/* Very small mobile devices: Stack vertically if needed */
@media (max-width: 480px) {
    .single-property-overview .info-box {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .single-property-overview .info-box .item {
        padding: 8px 0;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .single-property-overview .info-box .item:last-child {
        border-bottom: none;
    }
    
    /* Keep comparison section as 2 columns even on very small screens */
    .homeya-box .content .meta-list {
        grid-template-columns: 1fr 1fr;
        gap: 6px 10px;
    }
    
    .homeya-box .content .meta-list .item {
        font-size: 12px;
    }
}