/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 07 2025 | 04:48:24 */
/* --- Style the 'Claim This Featured Spot' Card --- */

/* Target the specific listing card that contains a link to 'claim-this-featured-spot' */
.lp-listing:has(a[href*="claim-this-featured-spot"]) {
    border: 3px solid #DD9933 !important; /* Your desired orange border */
    box-shadow: 0 4px 15px rgba(221, 153, 51, 0.3) !important; /* Optional: A matching glow effect */
    transition: all 0.2s ease-in-out;
}

/* Make it look more interactive on hover */
.lp-listing:has(a[href*="claim-this-featured-spot"]):hover {
    cursor: pointer;
    transform: translateY(-5px); /* Optional: Lifts the card slightly on hover */
    box-shadow: 0 8px 25px rgba(221, 153, 51, 0.4) !important;
}