/* ZONE LANDING PAGE HEADING (/annonces/{type}/{zone-slug}) */
.search-zone-heading {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* PROPERTY CARDS - SEARCH RESULTS */
.property-card {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08) !important;
    transition: box-shadow 0.3s ease;
}

.property-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16) !important;
}

/* SORT CONTROLS */
.sort-controls {
    display: flex;
    align-items: center;
}

/* Bouton CTA de l'encart promo de la sidebar (fond dégradé orange) : pill
   outline blanc, se remplit de blanc au survol (texte orange). */
.search-promo-cta {
    display: inline-block;
    width: 100%;
    padding: 0.75rem 1rem;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.search-promo-cta:hover {
    background: #fff;
    color: var(--secondary-orange);
}
