/*==================================================
=            RESULTS GRID
==================================================*/

.lca-cherche-results-grid{

    display:grid;

    grid-template-columns:repeat(4,minmax(250px,1fr));

    gap:24px;

    margin-top:35px;

}


/*==================================================
=            CARD
==================================================*/

.lca-cherche-card{

    position:relative;

    background:#DDEFCB;

    border:1px solid #D3E4BE;

    border-radius:12px;

    overflow:hidden;

    transition:.30s;

}

.lca-cherche-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:4px;

    background:#6AA84F;

}

.lca-cherche-card:hover{

    transform:translateY(-6px);

    border-color:#6AA84F;

    box-shadow:

    0 16px 35px rgba(0,0,0,.10);

}


/*==================================================
=            LINK
==================================================*/

.lca-cherche-card__link{

    display:flex;

    flex-direction:column;

    gap:16px;

    padding:22px;

    text-decoration:none;

    color:#222;

    min-height:210px;

}


/*==================================================
=            BADGE
==================================================*/

.lca-cherche-card__badge{

    align-self:flex-start;

    padding:7px 14px;

    background:#6AA84F;

    color:#FFF;

    font-size:12px;

    font-weight:600;

    border-radius:999px;

    letter-spacing:.3px;

}


/*==================================================
=            TYPE
==================================================*/

.lca-cherche-card__type{

    margin:0;

    font-size:23px;

    font-weight:700;

    line-height:1.25;

    color:#222;

}


/*==================================================
=            LOCATION
==================================================*/

.lca-cherche-card__location{

    display:flex;

    align-items:center;

    gap:8px;

    margin:0;

    color:#555;

    font-size:15px;

    line-height:1.5;

}

.lca-cherche-card__icon{

    width:17px;

    height:17px;

    color:#6AA84F;

    flex-shrink:0;

}


/*==================================================
=            BUDGET
==================================================*/

.lca-cherche-card__budget{

    margin-top:auto;

    margin-bottom:0;

    font-size:18px;

    font-weight:700;

    color:#202020;

}


/*==================================================
=            RESPONSIVE
==================================================*/

@media(max-width:1200px){

.lca-cherche-results-grid{

grid-template-columns:repeat(2,minmax(250px,1fr));

}

}


@media(max-width:768px){

.lca-cherche-results-grid{

grid-template-columns:1fr;

}

.lca-cherche-card__link{

min-height:auto;

}

}