/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 07 2025 | 04:46:09 */
/* --- Display Original Listing Logo Shape (Sharp Corners) --- */

/* This targets the container holding the logo */
.lp-listing-logo {
    /* This is the key: it removes the circular shape */
    border-radius: 0 !important;

    /* These rules ensure the container resizes correctly for rectangular images */
    height: auto !important;
    background: none !important; /* Removes any background color */
}

/* This targets the image itself to ensure it's not being cropped */
.lp-listing-logo img {
    border-radius: 0 !important;
    object-fit: contain !important; /* Ensures the entire image is visible without cropping */
    height: auto !important;
    width: 100% !important;
}