/* Grille des résultats */
.fiftys-search-results {
    width: 100%;
    margin: 0 auto;
    padding: 20px 0;
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

/* Carte de bien */
.property-card {
    background-color: #F9F4ED;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Image */
.property-image {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Titre */
.property-title {
    font-family: "Gotham Medium", sans-serif;
    color: #010037;
    font-size: 1.2rem;
    padding: 20px;
    margin: 0;
}

/* Détails */
.property-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0 20px;
}

.property-detail {
    display: flex;
    align-items: center;
    gap: 10px;
}

.property-detail img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.property-detail span {
    font-family: "Gotham Medium", sans-serif;
    color: #010037;
    font-size: 1rem;
}

/* Bouton */
.property-button {
    padding: 20px;
    margin-top: auto;
}

.discover-button {
    display: inline-block;
    width: 100%;
    height: 42px;
    padding: 0 20px;
    background-color: #010037;
    color: #F9F4ED;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    font-family: "Gotham Medium", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.discover-button:hover {
    background-color: #F9F4ED;
    text-decoration: none;
    color: #010037;
}

/* Message pas de résultats */
.no-results {
    font-family: "Gotham Medium", sans-serif;
    color: #010037;
    text-align: center;
    grid-column: 1 / -1;
    padding: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .property-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .property-grid {
        grid-template-columns: 1fr;
    }
}