/* Container for the image to enforce height */
.lp-grid-box-thumb-container,
.lp-grid-box-thumb {
    height: 220px !important;
    overflow: hidden;
    position: relative;
    background-color: #fcfcfc;
}

/* Fix for listing images being cut off */
.lp-grid-box-thumb img,
.lp-grid-box-thumb .show-img img,
.lp-grid-box-thumb .hide-img img {
    object-fit: contain !important;
    width: 100% !important;
    height: 100% !important;
    padding: 15px;
    box-sizing: border-box;
}

/* Modernize the card slightly */
.lp-grid-box {
    border-radius: 12px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    border: 1px solid #eaeaea !important;
}

.lp-grid-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
}
