<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * Greater Zion Venue Listing - Override CSS
 * 
 * This CSS specifically targets and overrides the existing styles
 * to create a modern, square design that aligns with the Greater Zion brand.
 */

/* Reset any border-radius to create square cards */
.greater-zion-listing-map-slider article,
.greater-zion-listing-map-slider .posts-box article,
.greater-zion-listing-map-slider article .venue-details,
.greater-zion-listing-map-slider article .image-container,
.greater-zion-listing-map-slider article img {
    border-radius: 0 !important;
    overflow: hidden !important;
}

/* Remove the curved bottom */
.greater-zion-listing-map-slider article .venue-details {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    padding-bottom: 15px !important;
}

/* Remove any ::before or ::after elements that might create curves */
.greater-zion-listing-map-slider article .venue-details::after,
.greater-zion-listing-map-slider article .venue-details::before {
    display: none !important;
}

/* Add a subtle shadow and hover effect */
.greater-zion-listing-map-slider article {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
    transition: transform 0.3s, box-shadow 0.3s !important;
}

.greater-zion-listing-map-slider article:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1) !important;
}

/* Style the venue details section */
.greater-zion-listing-map-slider article .venue-details {
    background-color: #f5f5f5 !important;
    border-top: 3px solid #eb6b40 !important;
    padding: 15px !important;
}

/* Style the venue name */
.greater-zion-listing-map-slider article h3 {
    color: #364b54 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    margin: 0 0 5px 0 !important;
    text-transform: uppercase !important;
}

/* Style the venue location */
.greater-zion-listing-map-slider article .location {
    color: #7b7c7f !important;
    font-size: 14px !important;
    margin: 0 0 5px 0 !important;
}

/* Style capacity text */
.greater-zion-listing-map-slider article .capacity {
    color: #364b54 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    margin: 0 !important;
}

/* Style the LEARN MORE button */
.greater-zion-listing-map-slider article .learn-more {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    background-color: #eb6b40 !important;
    color: white !important;
    padding: 8px 15px !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    letter-spacing: 1px !important;
    opacity: 0 !important;
    transition: opacity 0.3s !important;
    border: none !important;
    text-decoration: none !important;
    display: inline-block !important;
}

/* Show LEARN MORE on hover */
.greater-zion-listing-map-slider article:hover .learn-more {
    opacity: 1 !important;
}

/* Style the image container and overlay */
.greater-zion-listing-map-slider article .image-container {
    position: relative !important;
    height: 200px !important;
    overflow: hidden !important;
}

.greater-zion-listing-map-slider article img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.5s !important;
}

.greater-zion-listing-map-slider article:hover img {
    transform: scale(1.05) !important;
}

/* Add a dark overlay on hover */
.greater-zion-listing-map-slider article .image-container::after {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-color: rgba(54, 75, 84, 0.6) !important;
    opacity: 0 !important;
    transition: opacity 0.3s !important;
}

.greater-zion-listing-map-slider article:hover .image-container::after {
    opacity: 1 !important;
}

/* Style the navigation arrows */
.greater-zion-listing-map-slider .slider-nav button,
.greater-zion-listing-map-slider .title-box ~ .slider-nav button {
    width: 40px !important;
    height: 40px !important;
    border-radius: 0 !important;
    background-color: #eb6b40 !important;
    color: white !important;
    border: none !important;
    cursor: pointer !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    font-size: 1.2rem !important;
}

/* Search form styling */
.greater-zion-listing-map-slider .listing-form {
    background-color: #364b54 !important;
    padding: 25px 20px !important;
    margin-bottom: 30px !important;
}

.greater-zion-listing-map-slider .filter-select {
    border: none !important;
    padding: 12px 15px !important;
    background-color: white !important;
}

.greater-zion-listing-map-slider button[type="submit"] {
    background-color: #eb6b40 !important;
    color: white !important;
    border: none !important;
    padding: 12px 25px !important;
    font-weight: bold !important;
    cursor: pointer !important;
}

/* Make the cards container appear as a grid */
.greater-zion-listing-map-slider .posts-box {
    display: flex !important;
    overflow-x: auto !important;
    scroll-behavior: smooth !important;
    padding: 10px 20px 30px 20px !important;
    gap: 20px !important;
    -ms-overflow-style: none !important; /* Hide scrollbar in IE and Edge */
    scrollbar-width: none !important; /* Hide scrollbar in Firefox */
}

.greater-zion-listing-map-slider .posts-box::-webkit-scrollbar {
    display: none !important; /* Hide scrollbar in Chrome/Safari/Opera */
}

/* Map styling */
.greater-zion-listing-map-slider #map {
    height: 450px !important;
    margin-bottom: 30px !important;
    position: relative !important;
}

/* Map toggle controls */
.map-type-toggle {
    position: absolute !important;
    top: 10px !important;
    left: 10px !important;
    z-index: 999 !important;
    background: white !important;
    display: flex !important;
}

.map-type-toggle button {
    padding: 8px 12px !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
}

.map-type-toggle button.active {
    background-color: #364b54 !important;
    color: white !important;
}</pre></body></html>