/*
Theme Name: Hello Elementor Child - Immonest
Theme URI: https://immonest.be
Description: Thème enfant Hello Elementor pour le site immonest.be (agence immobilière Didrick Lagasse - Bruxelles & Brabant Wallon).
Author: Cédric / Life on Web
Author URI: https://lifeonweb.be
Template: hello-elementor
Version: 0.1.0
Text Domain: hello-elementor-child
*/

/* ==========================================================================
   Styles custom
   ========================================================================== */

/* Grille des biens (shortcode [immonest_biens]) */
.immonest-biens-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 2rem auto;
}

.immonest-bien {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.immonest-bien:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.immonest-bien__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.immonest-bien__no-image {
    width: 100%;
    height: 200px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.9rem;
}

.immonest-bien__body {
    padding: 1rem 1.25rem;
}

.immonest-bien__title {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
    line-height: 1.3;
}

.immonest-bien__price {
    font-weight: bold;
    font-size: 1.15rem;
    margin: 0 0 0.75rem;
    color: #1a1a1a;
}

.immonest-bien__infos {
    font-size: 0.9rem;
    color: #666;
    margin: 0 0 0.5rem;
}

.immonest-bien__description {
    font-size: 0.85rem;
    color: #777;
    margin: 0.5rem 0 0;
    line-height: 1.4;
}

.immonest-bien__reference {
    font-size: 0.75rem;
    color: #aaa;
    margin: 0.5rem 0 0;
}