.properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 30px 0;
}

.property-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.property-card:hover {
    transform: translateY(-5px);
}

.property-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.property-image:hover img {
    transform: scale(1.05);
}

.property-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    border-radius: 4px;
    color: #fff;
    font-weight: 700;
    font-size: 0.9em;
    text-transform: uppercase;
    z-index: 1;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.property-badge.satilik {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.property-badge.kiralik {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
}

.property-content {
    padding: 20px;
}

.property-title {
    font-size: 1.2em;
    margin-bottom: 15px;
}

.property-title a {
    color: #2c3e50;
    text-decoration: none;
}

.property-title a:hover {
    color: #3498db;
}

.property-meta {
    margin-bottom: 15px;
}

.price {
    font-size: 1.3em;
    font-weight: 700;
    color: #2c3e50;
}

@media (max-width: 992px) {
    .properties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .properties-grid {
        grid-template-columns: 1fr;
    }
} 