/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Sep 03 2025 | 01:05:57 */
.property-listings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.property-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.property-card:hover {
    transform: translateY(-5px);
}

.property-image {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.property-details {
    padding: 1rem;
}

.property-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
    margin: 0.5rem 0;
}

.property-meta {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin: 0.5rem 0;
}

.property-address {
    font-size: 1rem;
    color: #34495e;
    margin: 0.5rem 0;
}

.property-subdivision {
    font-size: 0.85rem;
    color: #95a5a6;
    margin: 0.5rem 0;
}

.see-more-button-container {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.see-more-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #2c3e50;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.see-more-button:hover {
    background-color: #34495e;
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .property-listings-grid {
        grid-template-columns: 1fr;
    }

    .see-more-button {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
}
