.property-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.property-card {
    background: #fff;
    color: #111;
    overflow: hidden;
}

.property-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.property-info {
    padding: 24px;
}

.property-info span {
    display: inline-block;
    margin-bottom: 10px;
    color: #b99665;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
}

.property-info h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.property-info small {
    display: block;
    margin-top: 12px;
    color: #666;
}