.eb-properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.eb-property-card {
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 15px;
    background: #fff;
    box-shadow: 0px 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.eb-property-card:hover {
    transform: translateY(-5px);
}

.eb-property-gallery {
    display: flex;
    gap: 5px;
    overflow-x: auto;
    padding: 10px 0;
}

.eb-property-gallery img {
    max-height: 150px;
    border-radius: 8px;
}

.eb-property-price {
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
}

.eb-property-features {
    margin-top: 10px;
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: #444;
}

.eb-property-features i {
    margin-right: 5px;
    color: #0073aa;
}

.eb-property-link {
    text-decoration: none;
    color: inherit;
    display: block;
}
