.elementor-72325 .elementor-element.elementor-element-ace22be{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-size:var( --e-global-typography-text-font-size );font-weight:var( --e-global-typography-text-font-weight );text-transform:var( --e-global-typography-text-text-transform );font-style:var( --e-global-typography-text-font-style );text-decoration:var( --e-global-typography-text-text-decoration );line-height:var( --e-global-typography-text-line-height );letter-spacing:var( --e-global-typography-text-letter-spacing );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}@media(max-width:1024px){.elementor-widget-text-editor{font-size:var( --e-global-typography-text-font-size );line-height:var( --e-global-typography-text-line-height );letter-spacing:var( --e-global-typography-text-letter-spacing );}}@media(max-width:767px){.elementor-widget-text-editor{font-size:var( --e-global-typography-text-font-size );line-height:var( --e-global-typography-text-line-height );letter-spacing:var( --e-global-typography-text-letter-spacing );}}/* Start custom CSS *//* État normal */
.elementor-sticky {
    transition: background-color 0.4s ease;
}

/* État actif : fond noir */
.elementor-sticky--active {
    background-color: #000000;
}


.annonces-wrapper {
    width: 1450px;
    
    max-width: 100%;
    margin: 0 auto;
    margin-top:-200px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.annonce-item {
    flex: 1 1 calc(50% - 20px);
    box-sizing: border-box;

    max-width:705px;
    position: relative;
}

.annonce-item:hover {
 
}

/* Image carrée centrée */
.annonce-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
    background: #ffffff;
    border: 4px solid white;
    border-radius: 10px;

    
}
.annonce-img img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease; /* animation fluide */
}

/* Zoom doux au survol */
.annonce-item:hover .annonce-img img {
    transform: scale(1.05); /* léger agrandissement */
}

/* Contenu */
.annonce-contenu {
    text-align: center;
    padding: 25px 15px 35px;
    background-color: white;
    margin-top: -100px;
    z-index: 10 !important;
    position: relative;
    width: 85%;
    margin: -100px auto 0 auto;
    border-radius: 10px;
}

.annonce-contenu h3 {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin: 10px 0 5px;
}

.annonce-contenu p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 5px 0 10px;
}

.annonce-contenu .prix {
    display: block;
    font-size: 18px;
    font-weight: bold;
    color: #b92323;
    margin-top: 8px;
}

.annonce-meta {
    font-size: 16px;
    color: #555;
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 1000px) {
    .annonce-item {
        flex: 3 4 100%;
    }
}/* End custom CSS */