.results-search{
    display: flex;
    flex-direction: column;
    padding:0 0 41px 0!important;
    max-width: 1136px;
    margin:34px auto 50px; !important;
}

.results-search > p{
    margin: 0;
}

.results-search > .result-label{
    text-align: center;
    color: #005B56;
    font-size: 18px;
}

.results-search > .result-label br{
    display: none;
}

.results-search .wrapper h2{
    font-size:30px;
    margin: 0;
    position: relative;
}

.results-search .wrapper h2.nos-conseils,
.results-search .wrapper .centres h2{
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.results-search .wrapper h2.nos-conseils span,
.results-search .wrapper .centres h2 span{
    color:#005B56;
    font-size: 16px;
    font-weight: 500;
}

.results-search .wrapper h2::after{
    left: 0;
    transform:unset;
}

.results-search .wrapper .results ul{
    margin-bottom: 0;
    list-style: none;
    padding-left: 0;
    display: flex;
    gap: 16px;
    flex-direction: column;
}

.results-search .wrapper .results ul.post-list{
    flex-wrap: wrap;
    flex-direction: row;
    gap:46px;
    align-items: stretch;
    justify-content: center;
}

.results-search .wrapper .results ul li{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.results-search .wrapper .results ul.post-list li{
    max-width: 348px;
    background: #fff;
    border-radius: 10px;
    padding-bottom: 33px;
    height: 100%;
}

.results-search .wrapper .results ul li a.card-post{
    display: flex;
    flex-direction: column;
    height: 100%;
}

.results-search .wrapper .results ul li a.card-post figure{
    margin:0;
}

.results-search .wrapper .results ul li a.card-post figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 348/223;
    border-radius: 10px 10px 0 0;
}

.results-search .wrapper .results ul li a.card-post .content-card{
    padding:20px;
}

.results-search .wrapper .results ul li a.card-post .content-card .tag{
    margin-bottom: 10px;
    background: #005B56;
    border-radius: 16px;
    font-size: 12px;
    color:#fff;
    padding:7px 25px;
    width: fit-content;
}

.results-search .wrapper .results ul li a.card-post .content-card .excerpt{
    margin-top: 10px;
}

.results-search .wrapper .results ul li h3{
    margin:0 !important;
    font-size: 20px;
    color:#00312D;
    cursor: pointer;
}

.results-search .wrapper .results ul li h3:hover{
    color:#00AC45;
}

.results-search .wrapper .results ul li .excerpt{
    position: relative;
}

.results-search .wrapper .results ul li .excerpt,
.results-search .wrapper .results ul li .excerpt *{
    font-size: 14px;
    color:#00312D;
    font-weight: 400;
}

.results-search .custom-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top:30px;
}

.results-search .custom-pagination a.prev,
.results-search .custom-pagination a.next{
    border-radius: 50%;
    background-color: #fff;
    width: 32px;
    height: 32px;
}

.results-search .custom-pagination a.prev::before,
.results-search .custom-pagination a.next::before{
    content:url("../../assets/svg/chevron-vert.svg");
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 27px;
}

.results-search .custom-pagination a.prev::before{
    transform: translate(-50%, -50%) rotate(180deg);
}

.results-search .custom-pagination a{
    position: relative;
}

.results-search .custom-pagination a:hover{
    font-weight: 600;
    color: #000;
}

.results-search .custom-pagination a,
.results-search .custom-pagination span {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 14px;
    color: #00312D;
}

.results-search .custom-pagination .pagination-arrow {
    font-size: 20px;
    font-weight: normal;
}

.results-search .wrapper .centres .centre{
    background: #F2F7F7;
    border-radius: 3px;
    padding:12px 20px;
}

.results-search .wrapper .centres .centre:hover{
    background: #DEEBEB;
}

.results-search .wrapper .centres .centre-list{
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 45px;
}

.results-search .wrapper .centres .centre-list a{
    width: fit-content;
}

.results-search .wrapper .centres .centre-list h3{
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 800;
    margin:0;
}

.results-search .wrapper .centres .centre-list .adresse,
.results-search .wrapper .centres .centre-list .adresse *{
    font-size: 14px;
    color:#00312D;
    margin:0;
}

@media screen and (min-width: 992px){

    .results-search{
        margin: 64px 0 100px !important;
        padding-bottom: 74px !important;
    }

    .results-search .wrapper h2{
        font-size:40px;
    }

    .results-search .wrapper h2.nos-conseils span{
        font-size: 18px;
    }

    .results-search .wrapper .results .wrapper-posts{
        grid-column: 1;
    }

    .results-search .wrapper .results .wrapper-posts:has(.post-list){
        grid-column: 1 / 3;
    }
    .results-search .wrapper .results ul.post-list{
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap:64px 46px;
    }

    .results-search .wrapper .results ul{
        gap: 32px;
    }

    .results-search .custom-pagination {
        margin-top:65px;
    }

    .results-search .wrapper .results ul li:hover h3{
        margin-top: -30px !important;
    }

}