/*
 Theme Name: GeneratePress Child
 Template: generatepress
*/

/* Property Grid Styles */
.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.property-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.property-card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}

.property-card h2 {
    font-size: 20px;
    margin: 10px 0;
    color: #333;
}

.property-card p {
    margin: 5px 0;
    font-size: 14px;
    color: #555;
}

.property-details {
    margin: 15px 0;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 8px;
}

.property-details p {
    margin: 5px 0;
    font-size: 15px;
}

.property-gallery img {
    max-width: 100%;
    border-radius: 10px;
}
