.jobs-page-title {
    font-size: 48px;
    font-weight: bold;
    font-family: 'Playfair Display', serif;
    color: #EC6854;
    margin: 0 0 15px 0;
}

.job-offers-wrapper {
    align-items: center;
    border-radius: 8px;
}

.job-filters-wrapper {
    display: flex;
    align-items: center;
    text-align: center;
}

.job_filters {
    background: #FFF;
    display: inline;
    width: 100%;
    gap: 0;
}

.job-filters-wrapper .search-actions {
    margin: 15px 0 15px 0;
    width: 90%;
    display: inline-flex;
}

.job-filters-wrapper .search-actions .search_jobs {
    display: flex;
    width: 100%;
    position: relative;
    box-sizing: border-box;
    background: #FFFFFF;
    border: 1px solid #E1DFDF;
    border-radius: 8px;
    padding: 0 0 0 14px;
    height: 50px;
    align-items: center;
    overflow: hidden;      
}

.job-filters-wrapper .search_keywords,
.job-filters-wrapper .search_location {
    display: flex;
    align-items: center;
    flex: 1 1 0;
    min-width: 0;
    margin: 0;
    padding: 0 14px 0 0;
    position: relative;
    font-family: 'Source Sans Pro', 'Arial', sans-serif;
    font-size: 16px;
    line-height: 1.2;
    height: 100%;
}


.job-filters-wrapper .search_keywords {
    border-right: 1px solid #E4E4E4;
}

.job-filters-wrapper .search_location {
    padding-right: 0;
    border-right: none;
}

.job-filters-wrapper .search_keywords::before,
.job-filters-wrapper .search_location::before {
    content: "";
    width: 18px;
    height: 18px;
    margin-right: 10px;
    flex: 0 0 18px;
    background-size: 18px 18px;
    background-repeat: no-repeat;
    opacity: .75;
}

.job-filters-wrapper .search_keywords::before {
    background-image: url("data:image/svg+xml;utf8,<svg fill='%23353536' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M10.5 3a7.5 7.5 0 0 1 5.915 12.21l4.187 4.186-1.414 1.415-4.186-4.187A7.5 7.5 0 1 1 10.5 3Zm0 2a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11Z'/></svg>");
}

.job-filters-wrapper .search_location::before {
    background-image: url("data:image/svg+xml;utf8,<svg fill='%23353536' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7Zm0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5Z'/></svg>");
}

/* Inputs */
.job-filters-wrapper .search_keywords input,
.job-filters-wrapper .search_location input {
    border: none;
    background: transparent;
    width: 100%;
    height: 100%;
    padding: 0;
    outline: none;
    font: inherit;
    color: #353536;
    display: block;
    line-height: 1;
}

.job-filters-wrapper .search_keywords input::placeholder,
.job-filters-wrapper .search_location input::placeholder {
    color: #6E6E6E;
}

/* Bouton */
.job-filters-wrapper .search_submit {
    flex: 0 0 auto;
    margin: 0;
    height: 100%;
    display: flex;
}

.job-filters-wrapper .search_submit input {
    position: relative;
    top: -7px; 
    border: 1px solid #EC6854;             
    height: 100%;
    line-height: 1.2;
    height: 53px;
    padding: 0 30px !important;
    border: none;
    background: #EC6854 !important;
    color: #FFF;
    font-family: 'Poppins', 'Source Sans Pro', 'Arial', sans-serif;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 8px 8px 0 !important; /* pas d’arrondi gauche */
    cursor: pointer;
    position: relative;
}

.job-filters-wrapper .search_submit input::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #E4E4E4;
}

.job-filters-wrapper .search_submit input:hover {
    background: #d95b4a !important;
}

.job-filters-wrapper .search_submit input:focus {
    outline: 2px solid #f3b1a7;
    outline-offset: 2px;
}

.job-filters-wrapper .search_keywords > label,
.job-filters-wrapper .search_location > label {
    position: absolute;
    left: -9999px;
    top: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.job-filters-wrapper .search_jobs input {
    border-radius: 0;
    margin: 0;
    padding: 0;
}

.job-filters-wrapper .showing_jobs {
    background: #F7F8F9;
    border: 1px solid #E1E4E8;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 14px;
    margin: 0 0 10px 0;
}

.job-filters-wrapper .showing_jobs .reset {
    color: #EC6854;
    font-weight: 700;
}

.job-filters-wrapper .showing_jobs .reset:hover {
    color: #d95b4a;
}

.job-listing-wrapper {
    margin: 40px 0 0 0;
}

/* Responsive */
@media (max-width: 820px) {
    .job-filters-wrapper .search-actions .search_jobs {
        flex-wrap: wrap;
        height: auto;
        padding: 8px 10px 10px 10px;
        border-radius: 12px;
    }
    .job-filters-wrapper .search_keywords,
    .job-filters-wrapper .search_location {
        padding: 0;
        border-right: none;
        width: 100%;
        height: 46px;
    }
    .job-filters-wrapper .search_submit {
        width: 100%;
        margin-top: 6px;
        justify-content: flex-end;
        height: 46px;
    }
    .job-filters-wrapper .search_submit input {
        border-radius: 8px !important;
        height: 100%;
    }
}


