/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
/*#header{
  display: none;
 }*/
.text-blue {
  color: #245ea9;
}
.text-punch strong {
  color: #ffdc00;
}
.text-highlight {
  background: linear-gradient(120deg, #ffdc00 0%, #ffdc00 100%);
  background-size: 100% 32%;
  background-repeat: no-repeat;
  background-position: 0 90%;
  padding: 0 2px;
}
.title-tag .et_pb_text_inner p::before {
  content: '';
  width: 28px;
  height: 3px;
  background: #ffdc00;
  border-radius: 2px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
/*
.et_pb_sticky {
  backdrop-filter: blur(20px) brightness(1.2);
}*/
.glass-effect {
  backdrop-filter: blur(20px) brightness(1.2);
}
#inasoft-page-loader {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(2px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  pointer-events: all;
}
#inasoft-page-loader .inasoft-page-loader__spinner {
  width: 56px;
  height: 56px;
  border: 4px solid rgba(0, 106, 191, 0.2);
  border-top-color: #245ea9;
  border-radius: 50%;
  animation: inasoft-loader-spin 0.8s linear infinite;
}
body.inasoft-search-loading {
  overflow: hidden;
}
body.inasoft-search-loading #inasoft-page-loader {
  display: flex;
}
@keyframes inasoft-loader-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.home #vacancies #job-list,
.page-id-1520 #vacancies #job-list,
.page-id-1720 #vacancies #job-list {
  display: flex;
  flex-wrap: wrap;
}
.home #vacancies #job-list a,
.page-id-1520 #vacancies #job-list a,
.page-id-1720 #vacancies #job-list a {
  width: 48%;
  margin: 1%;
}
@media screen and (max-width: 768px) {
  .home #vacancies #job-list a,
  .page-id-1520 #vacancies #job-list a,
  .page-id-1720 #vacancies #job-list a {
    width: 100%;
    margin: 0 0 15px 0;
  }
}
.autocomplete-suggestions {
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  max-height: 200px;
  overflow-y: auto;
  position: absolute;
  background: #FFF;
  z-index: 30;
  top: 100%;
  /* Positionne juste en dessous de l'input */
  left: 0;
  right: 0;
  margin: 0 10px;
}
.autocomplete-suggestion {
  padding: 10px;
  cursor: pointer;
}
.autocomplete-suggestion:hover {
  background-color: #f0f0f0;
}
.yellow-smartlink h2::after {
  content: "";
  display: block;
  width: 25px;
  height: 13px;
  background-color: #ffdc00;
  border-radius: 10px;
  position: absolute;
  left: -30px;
  top: 15%;
  transform: translateY(-50%);
  z-index: -1;
}
.text-transparent {
  color: transparent;
  /* rend le texte lui-même invisible */
  -webkit-text-stroke-width: 2px;
  /* largeur du contour */
  -webkit-text-stroke-color: white;
  /* couleur du contour */
  font-style: italic;
}
.text-transparent-black {
  color: transparent;
  /* rend le texte lui-même invisible */
  -webkit-text-stroke-width: 2px;
  /* largeur du contour */
  -webkit-text-stroke-color: #000;
  /* couleur du contour */
  font-style: italic;
}
#search-wrapper {
  background: #FFF;
  padding: 20px 30px;
  position: sticky;
  top: 65px;
  z-index: 999;
  border-bottom: 1px solid #e5e5e5;
}
#search-wrapper #JobSearch {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
#search-wrapper .search-bar {
  display: flex;
  align-items: center;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  overflow: visible;
  background: #FFF;
  transition: border-color 0.2s;
}
#search-wrapper .search-bar:focus-within {
  border-color: #245ea9;
}
@media screen and (max-width: 768px) {
  #search-wrapper .search-bar {
    flex-direction: column;
    border-radius: 16px;
  }
}
#search-wrapper .search-bar .search-field {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 20px;
  position: relative;
}
#search-wrapper .search-bar .search-field i.fa-solid {
  color: #999;
  font-size: 16px;
  margin-right: 12px;
}
#search-wrapper .search-bar .search-field input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  font-size: 0.95rem;
  padding: 16px 0;
  color: #333;
}
#search-wrapper .search-bar .search-field input::placeholder {
  color: #999;
  font-size: 0.95rem;
}
#search-wrapper .search-bar .search-field.search-field-location {
  border-left: 1px solid #e0e0e0;
  z-index: 20;
}
#search-wrapper .search-bar .search-field.search-field-location:focus-within {
  z-index: 25;
}
@media screen and (max-width: 768px) {
  #search-wrapper .search-bar .search-field.search-field-location {
    border-left: none;
    border-top: 1px solid #e0e0e0;
  }
}
@media screen and (max-width: 768px) {
  #search-wrapper .search-bar .search-field {
    width: 100%;
    padding: 0 15px;
  }
}
#search-wrapper .search-bar .btn-search {
  background: #ffdc00;
  color: #323c41;
  border: none;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 28px;
  cursor: pointer;
  border-radius: 0 50px 50px 0;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}
#search-wrapper .search-bar .btn-search:hover {
  background: #d6b900;
}
#search-wrapper .search-bar .btn-search i {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  #search-wrapper .search-bar .btn-search {
    width: 100%;
    justify-content: center;
    border-radius: 0 0 14px 14px;
    padding: 14px;
  }
}
#search-wrapper .mobile-search-summary {
  display: none;
}
#search-wrapper .filters-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
#search-wrapper .filters-row .filter-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1.5px solid #d0d5dd;
  border-radius: 50px;
  background: #FFF;
  font-size: 0.9rem;
  color: #333;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s;
  font-family: inherit;
}
#search-wrapper .filters-row .filter-pill:hover {
  border-color: #245ea9;
}
#search-wrapper .filters-row .filter-pill.active {
  border-color: #245ea9;
  background: #245ea9;
  color: #FFF;
}
#search-wrapper .filters-row .filter-pill.active .pill-count {
  background: #FFF;
  color: #245ea9;
}
#search-wrapper .filters-row .filter-pill .pill-count {
  background: #245ea9;
  color: #FFF;
  border-radius: 50%;
  min-width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}
#search-wrapper .filters-row .filter-pill .fa-chevron-down {
  font-size: 10px;
  transition: transform 0.2s;
}
#search-wrapper .filters-row .filter-pill.open .fa-chevron-down {
  transform: rotate(180deg);
}
#search-wrapper .filters-row .filter-pill .filter-panel {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 260px;
  background: #FFF;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 100;
  padding: 8px 0;
  max-height: 300px;
  overflow-y: auto;
}
#search-wrapper .filters-row .filter-pill .filter-panel label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  cursor: pointer;
  font-size: 0.9rem;
  color: #333;
  transition: background 0.1s;
}
#search-wrapper .filters-row .filter-pill .filter-panel label:hover {
  background: #f5f7fa;
}
#search-wrapper .filters-row .filter-pill .filter-panel label .lp-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
#search-wrapper .filters-row .filter-pill .filter-panel label .lp-left input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #245ea9;
  cursor: pointer;
}
#search-wrapper .filters-row .filter-pill .filter-panel label .lp-count {
  color: #999;
  font-size: 0.85rem;
}
#search-wrapper .filters-row .filter-pill.open .filter-panel {
  display: block;
}
#search-wrapper .filters-row .filter-clear {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: none;
  background: transparent;
  color: #666;
  font-size: 0.9rem;
  cursor: pointer;
  font-family: inherit;
}
#search-wrapper .filters-row .filter-clear:hover {
  color: #333;
}
#search-wrapper .active-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
#search-wrapper .active-chips:empty {
  display: none;
}
#search-wrapper .active-chips .active-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e8f0fe;
  color: #245ea9;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
}
#search-wrapper .active-chips .active-chip button {
  background: none;
  border: none;
  color: #245ea9;
  cursor: pointer;
  padding: 0;
  font-size: 12px;
  display: flex;
  align-items: center;
}
#search-wrapper .active-chips .active-chip button:hover {
  color: #173b6a;
}
#search-wrapper .active-chips-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
#search-wrapper .active-chips-wrapper .active-chips {
  margin-top: 12px;
  flex: 1;
  min-width: 0;
}
#search-wrapper .active-chips-wrapper .active-chips-clear {
  margin-top: 12px;
  display: none;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #d0d5dd;
  background: #FFF;
  color: #666;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.15s;
  flex-shrink: 0;
}
#search-wrapper .active-chips-wrapper .active-chips-clear:hover {
  border-color: #245ea9;
  color: #245ea9;
}
#search-wrapper .active-chips-wrapper.has-chips .active-chips-clear,
#search-wrapper .active-chips-wrapper:has(.active-chips:not(:empty)) .active-chips-clear {
  display: inline-flex;
}
#job-search-home {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 980px) {
  #job-search-home {
    width: 100%;
  }
}
#job-search-home .search-bar {
  display: flex;
  align-items: center;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  overflow: visible;
  background: #FFF;
  transition: border-color 0.2s;
  width: 100%;
}
#job-search-home .search-bar:focus-within {
  border-color: #245ea9;
}
@media screen and (max-width: 768px) {
  #job-search-home .search-bar {
    flex-direction: column;
    border-radius: 16px;
  }
}
#job-search-home .search-bar .search-field {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 20px;
  position: relative;
}
#job-search-home .search-bar .search-field i.fa-solid {
  color: #999;
  font-size: 16px;
  margin-right: 12px;
}
#job-search-home .search-bar .search-field input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  font-size: 0.95rem;
  padding: 16px 0;
  color: #333;
}
#job-search-home .search-bar .search-field input::placeholder {
  color: #999;
  font-size: 0.95rem;
}
#job-search-home .search-bar .search-field.search-field-location {
  border-left: 1px solid #e0e0e0;
  z-index: 20;
}
#job-search-home .search-bar .search-field.search-field-location:focus-within {
  z-index: 25;
}
@media screen and (max-width: 768px) {
  #job-search-home .search-bar .search-field.search-field-location {
    border-left: none;
    border-top: 1px solid #e0e0e0;
  }
}
@media screen and (max-width: 768px) {
  #job-search-home .search-bar .search-field {
    width: 100%;
    padding: 0 15px;
  }
}
#job-search-home .search-bar .btn-search {
  background: #ffdc00;
  color: #323c41;
  border: none;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 28px;
  cursor: pointer;
  border-radius: 0 50px 50px 0;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}
#job-search-home .search-bar .btn-search:hover {
  background: #d6b900;
}
#job-search-home .search-bar .btn-search i {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  #job-search-home .search-bar .btn-search {
    width: 100%;
    justify-content: center;
    border-radius: 0 0 14px 14px;
    padding: 14px;
  }
}
#job-map {
  width: 100%;
  height: 400px;
}
#vacancies-wrapper {
  display: flex;
}
#vacancies-wrapper #vacancies {
  width: 50%;
  padding: 0 15px 0 15px;
}
@media screen and (max-width: 1400px) {
  #vacancies-wrapper #vacancies {
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  #vacancies-wrapper #vacancies {
    width: 100%;
    padding: 0 16px;
  }
}
#vacancies-wrapper #vacancies #job-count {
  margin: 20px 0 15px 0;
}
#vacancies-wrapper #vacancies #pagination-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  padding: 16px 0;
}
#vacancies-wrapper #vacancies #pagination-controls .pagination-info {
  font-size: 0.9rem;
  color: #666;
}
#vacancies-wrapper #vacancies #pagination-controls .pagination-info strong {
  color: #245ea9;
}
#vacancies-wrapper #vacancies #pagination-controls .pagination-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
#vacancies-wrapper #vacancies #pagination-controls .pagination-nav .page-arrow {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid #d0d5dd;
  background: #FFF;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.15s;
}
#vacancies-wrapper #vacancies #pagination-controls .pagination-nav .page-arrow:hover:not(.disabled) {
  border-color: #245ea9;
  color: #245ea9;
}
#vacancies-wrapper #vacancies #pagination-controls .pagination-nav .page-arrow.disabled {
  opacity: 0.35;
  cursor: default;
}
#vacancies-wrapper #vacancies #pagination-controls .pagination-nav .page-num {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid #d0d5dd;
  background: #FFF;
  color: #333;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s;
  font-family: inherit;
}
#vacancies-wrapper #vacancies #pagination-controls .pagination-nav .page-num:hover:not(.active) {
  border-color: #245ea9;
  color: #245ea9;
}
#vacancies-wrapper #vacancies #pagination-controls .pagination-nav .page-num.active {
  background: #245ea9;
  border-color: #245ea9;
  color: #FFF;
}
#vacancies-wrapper #vacancies #pagination-controls .pagination-nav .page-dots {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  #vacancies-wrapper #vacancies #pagination-controls {
    justify-content: center;
  }
  #vacancies-wrapper #vacancies #pagination-controls .pagination-info {
    width: 100%;
    text-align: center;
  }
}
#vacancies-wrapper #vacancies a:hover {
  text-decoration: none;
}
#vacancies-wrapper #vacancies a .vacancy {
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  width: 100%;
  background: #FFF;
  margin-bottom: 15px;
  display: flex;
  gap: 0;
  align-items: stretch;
  transition: border-color 0.2s, box-shadow 0.2s;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #vacancies-wrapper #vacancies a .vacancy {
    flex-wrap: wrap;
  }
}
#vacancies-wrapper #vacancies a .vacancy:hover {
  border-color: #245ea9;
  box-shadow: 0 4px 16px rgba(0, 106, 191, 0.12);
  text-decoration: none !important;
}
#vacancies-wrapper #vacancies a .vacancy .vacancy-badge {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 12px;
  width: 140px;
  min-width: 140px;
  min-height: 120px;
  background-color: #e8f0f6;
  background-size: cover;
  background-position: center;
  border-radius: 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  #vacancies-wrapper #vacancies a .vacancy .vacancy-badge {
    width: 100%;
    min-height: 180px;
    margin: 0;
  }
}
#vacancies-wrapper #vacancies a .vacancy .vacancy-fields {
  flex: 1;
  padding: 20px;
}
#vacancies-wrapper #vacancies a .vacancy .vacancy-fields .vacancy-category {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #245ea9;
  letter-spacing: 0.5px;
}
#vacancies-wrapper #vacancies a .vacancy .vacancy-fields .vacancy-title {
  color: #323c41;
  display: block;
  font-size: 1.1em;
  font-weight: 700;
  margin: 6px 0 12px 0;
}
#vacancies-wrapper #vacancies a .vacancy .vacancy-fields .vacancy-tags {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
#vacancies-wrapper #vacancies a .vacancy .vacancy-fields .vacancy-tags li {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: #f2f2f2;
  border-radius: 20px;
  font-size: 0.8em;
  color: #555;
}
#vacancies-wrapper #vacancies a .vacancy .vacancy-fields .vacancy-tags li::before {
  content: '';
}
#vacancies-wrapper #vacancies a .vacancy .vacancy-fields .vacancy-tags li i {
  font-size: 11px;
  color: #245ea9;
}
#vacancies-wrapper #vacancies a .vacancy .vacancy-fields .vacancy-tags li.badge-type {
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
  gap: 0;
}
#vacancies-wrapper #vacancies a .vacancy .vacancy-fields .vacancy-tags li.badge-type.badge-cdi {
  background: #e6f4ea;
  color: #1a7f37;
}
#vacancies-wrapper #vacancies a .vacancy .vacancy-fields .vacancy-tags li.badge-type.badge-cdd {
  background: #e8f0fe;
  color: #245ea9;
}
#vacancies-wrapper #vacancies a .vacancy .vacancy-fields .vacancy-tags li.badge-type.badge-alternance {
  background: #fef3e0;
  color: #c77700;
}
#vacancies-wrapper #vacancies a .vacancy .vacancy-fields .vacancy-tags li.badge-type.badge-stage {
  background: #f3e8fd;
  color: #7c3aed;
}
#vacancies-wrapper #vacancies a .vacancy .vacancy-fields .vacancy-tags li.badge-type.badge-default {
  background: #f2f2f2;
  color: #555;
}
#map-wrapper {
  width: 50%;
  position: sticky;
  top: 240px;
  align-self: flex-start;
}
@media screen and (max-width: 768px) {
  #map-wrapper {
    width: 100%;
    position: relative;
    top: 0;
  }
}
#map {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #map {
    width: 100%;
    position: relative;
    top: 0;
  }
}
/* Boutons flottants de la carte: mobile uniquement */
.map-back-to-list,
.map-search-here {
  display: none;
}
/* --- Mobile: toggle Liste/Carte, feuille de filtres, boutons carte --- */
.mobile-actions {
  display: none;
}
@media screen and (max-width: 768px) {
  .mobile-actions {
    display: flex;
    align-items: stretch;
    gap: 8px;
    margin-top: 12px;
  }
  .mobile-actions .mobile-filters-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    height: 40px;
    border: 1px solid #d0d5dd;
    background: #FFF;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #323c41;
    cursor: pointer;
    font-family: inherit;
    position: relative;
  }
  .mobile-actions .mobile-filters-btn .filters-badge {
    background: #245ea9;
    color: #FFF;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 999px;
    padding: 2px 7px;
  }
  .mobile-actions .view-toggle {
    margin-left: auto;
    display: flex;
    background: #f2f2f2;
    border-radius: 999px;
    padding: 3px;
    gap: 2px;
    height: 40px;
  }
  .mobile-actions .view-toggle .view-toggle-btn {
    border: 0;
    background: transparent;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    color: #666;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: inherit;
  }
  .mobile-actions .view-toggle .view-toggle-btn.active {
    background: #FFF;
    color: #245ea9;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }
}
/* Sheet header/footer masques sur desktop */
.filters-sheet-header,
.filters-sheet-footer {
  display: none;
}
/* Basculement liste / carte en mobile */
@media screen and (max-width: 768px) {
  #search-wrapper {
    padding: 12px 16px;
    top: 0;
  }
  #search-wrapper .mobile-search-summary {
    width: 100%;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    margin-bottom: 12px;
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    background: #FFF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    font-family: inherit;
    text-align: left;
    cursor: pointer;
  }
  #search-wrapper .mobile-search-summary .mobile-search-summary-text {
    min-width: 0;
    flex: 1;
    font-size: 0.9rem;
    font-weight: 600;
    color: #323c41;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  #search-wrapper .mobile-search-summary .mobile-search-summary-action {
    color: #245ea9;
    font-size: 0.82rem;
    font-weight: 700;
    white-space: nowrap;
  }
  #search-wrapper.mobile-search-collapsed .mobile-search-summary {
    display: flex;
  }
  #search-wrapper.mobile-search-collapsed .search-bar {
    display: none;
  }
  body.inasoft-view-list #map-wrapper {
    display: none;
  }
  body.inasoft-view-map #vacancies {
    display: none;
  }
  body.inasoft-view-map #pagination-controls {
    display: none;
  }
  #map-wrapper {
    position: relative;
    width: 100%;
  }
  #map-wrapper #map {
    width: 100%;
    height: calc(100vh - 220px);
    min-height: 400px;
    position: relative;
    top: 0;
    display: block;
  }
  .map-back-to-list {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 500;
    background: #FFF;
    border: 0;
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #323c41;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
  }
  .map-back-to-list i {
    color: #245ea9;
  }
  .map-search-here {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 500;
    background: #245ea9;
    color: #FFF;
    border: 0;
    border-radius: 999px;
    padding: 9px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 106, 191, 0.3);
    cursor: pointer;
    display: none;
    align-items: center;
    gap: 6px;
    font-family: inherit;
  }
  .map-search-here.visible {
    display: inline-flex;
  }
  /* Feuille de filtres en bottom-sheet */
  #search-wrapper .filters-row {
    display: none;
  }
  body.inasoft-filters-open {
    overflow: hidden;
    /* Chaque pill devient une section avec pills d'options */
    /* Ancien bouton reset masque en mobile, remplace par celui du footer */
  }
  body.inasoft-filters-open #search-wrapper .filters-row {
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 12vh;
    background: #FFF;
    border-radius: 20px 20px 0 0;
    z-index: 1001;
    margin: 0;
    padding: 0;
    gap: 0;
    overflow: hidden;
    /* Chaque pill devient une section avec pills d'options */
    /* Ancien bouton reset masque en mobile, remplace par celui du footer */
  }
  body.inasoft-filters-open #search-wrapper .filters-row .filters-scroll-body {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 0;
    padding: 0 16px;
    -webkit-overflow-scrolling: touch;
  }
  body.inasoft-filters-open #search-wrapper .filters-row .filter-pill {
    display: block;
    width: 100%;
    text-align: left;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-weight: 700;
    color: #323c41;
    font-size: 0.95rem;
    cursor: default;
    position: static;
    padding: 10px 0 6px;
    white-space: normal;
  }
  body.inasoft-filters-open #search-wrapper .filters-row .filter-pill + .filter-pill {
    border-top: 1px solid #f0f0f0;
  }
  body.inasoft-filters-open #search-wrapper .filters-row .filter-pill.active,
  body.inasoft-filters-open #search-wrapper .filters-row .filter-pill:hover {
    background: transparent;
    color: #323c41;
    border-color: transparent;
  }
  body.inasoft-filters-open #search-wrapper .filters-row .filter-pill > i.fa-chevron-down,
  body.inasoft-filters-open #search-wrapper .filters-row .filter-pill > .pill-count {
    display: none !important;
  }
  body.inasoft-filters-open #search-wrapper .filters-row .filter-pill .filter-panel {
    display: flex !important;
    flex-wrap: wrap;
    gap: 8px;
    position: static;
    box-shadow: none;
    border: 0;
  }
  body.inasoft-filters-open #search-wrapper .filters-row .filter-pill .filter-panel label {
    display: inline-flex;
    padding: 0;
    margin: 0;
    cursor: pointer;
  }
  body.inasoft-filters-open #search-wrapper .filters-row .filter-pill .filter-panel label:hover {
    background: transparent;
  }
  body.inasoft-filters-open #search-wrapper .filters-row .filter-pill .filter-panel label .lp-left {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: #FFF;
    font-weight: 500;
    color: #323c41;
    transition: all 0.15s;
  }
  body.inasoft-filters-open #search-wrapper .filters-row .filter-pill .filter-panel label .lp-left input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
  }
  body.inasoft-filters-open #search-wrapper .filters-row .filter-pill .filter-panel label:has(input:checked) .lp-left {
    background: #245ea9;
    border-color: #245ea9;
    color: #FFF;
  }
  body.inasoft-filters-open #search-wrapper .filters-row .filter-pill .filter-panel label .lp-count {
    display: none;
  }
  body.inasoft-filters-open #search-wrapper .filters-row .filter-pill > i.fa-solid:first-child {
    color: #245ea9;
    margin-right: 8px;
  }
  body.inasoft-filters-open #search-wrapper .filters-row .filter-pill .filter-panel {
    padding: 6px 0 4px;
    min-width: 0;
    max-height: none;
    overflow: visible;
    background: transparent;
  }
  body.inasoft-filters-open #search-wrapper .filters-row .filter-pill .filter-panel label {
    justify-content: flex-start;
  }
  body.inasoft-filters-open #search-wrapper .filters-row .filter-pill .filter-panel label .lp-left {
    padding: 2px 14px;
    border: 1px solid #d0d5dd;
    border-radius: 999px;
    font-size: 0.85rem;
    white-space: nowrap;
  }
  body.inasoft-filters-open #search-wrapper .filters-row .filter-pill .filter-panel label .lp-left input[type="checkbox"] {
    margin: 0;
  }
  body.inasoft-filters-open #search-wrapper .filters-row .filter-clear {
    display: none;
  }
  body.inasoft-filters-open .filters-sheet-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px 6px;
    border-bottom: 1px solid #eee;
    flex-shrink: 0;
    background: #FFF;
    z-index: 2;
    width: 100%;
  }
  body.inasoft-filters-open .filters-sheet-header .filters-sheet-handle {
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 4px;
    background: #d0d5dd;
    border-radius: 2px;
  }
  body.inasoft-filters-open .filters-sheet-header h3 {
    margin: 2px 0 0;
    font-size: 1rem;
    flex: 1;
  }
  body.inasoft-filters-open .filters-sheet-header .filters-sheet-close {
    background: none;
    border: 0;
    font-size: 1.1rem;
    color: #888;
    cursor: pointer;
    padding: 2px 6px;
  }
  body.inasoft-filters-open .filters-sheet-footer {
    display: flex;
    gap: 10px;
    padding: 8px 16px;
    border-top: 1px solid #eee;
    flex-shrink: 0;
    background: #FFF;
    width: 100%;
  }
  body.inasoft-filters-open .filters-sheet-footer .filters-sheet-clear {
    flex: 1;
    padding: 10px 20px;
    border: 1px solid #d0d5dd;
    background: #FFF;
    color: #323c41;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95rem;
  }
  body.inasoft-filters-open .filters-sheet-footer .filters-sheet-apply {
    flex: 2;
    padding: 10px 20px;
    border: 0;
    background: #245ea9;
    color: #FFF;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95rem;
  }
  body.inasoft-filters-open .filter-pill {
    display: block;
    width: 100%;
    text-align: left;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-weight: 700;
    color: #323c41;
    font-size: 0.95rem;
    cursor: default;
    position: static;
    padding: 18px 0 8px;
  }
  body.inasoft-filters-open .filter-pill + .filter-pill {
    border-top: 1px solid #f0f0f0;
  }
  body.inasoft-filters-open .filter-pill.active,
  body.inasoft-filters-open .filter-pill:hover {
    background: transparent;
    color: #323c41;
    border-color: transparent;
  }
  body.inasoft-filters-open .filter-pill > i.fa-chevron-down,
  body.inasoft-filters-open .filter-pill > .pill-count {
    display: none !important;
  }
  body.inasoft-filters-open .filter-pill .filter-panel {
    display: flex !important;
    flex-wrap: wrap;
    gap: 8px;
    position: static;
    box-shadow: none;
    border: 0;
  }
  body.inasoft-filters-open .filter-pill .filter-panel label {
    display: inline-flex;
    padding: 0;
    margin: 0;
    cursor: pointer;
  }
  body.inasoft-filters-open .filter-pill .filter-panel label:hover {
    background: transparent;
  }
  body.inasoft-filters-open .filter-pill .filter-panel label .lp-left {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: #FFF;
    font-weight: 500;
    color: #323c41;
    transition: all 0.15s;
  }
  body.inasoft-filters-open .filter-pill .filter-panel label .lp-left input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
  }
  body.inasoft-filters-open .filter-pill .filter-panel label:has(input:checked) .lp-left {
    background: #245ea9;
    border-color: #245ea9;
    color: #FFF;
  }
  body.inasoft-filters-open .filter-pill .filter-panel label .lp-count {
    display: none;
  }
  body.inasoft-filters-open .filter-pill > i.fa-solid:first-child {
    color: #245ea9;
    margin-right: 6px;
  }
  body.inasoft-filters-open .filter-pill .filter-panel {
    padding: 10px 0 6px;
    min-width: 0;
    max-height: none;
    overflow: visible;
    background: transparent;
  }
  body.inasoft-filters-open .filter-pill .filter-panel label .lp-left {
    padding: 8px 16px;
    border: 1.5px solid #d0d5dd;
    border-radius: 50px;
    font-size: 0.9rem;
  }
  body.inasoft-filters-open .filter-clear {
    display: none;
  }
}
.page-id-111 #page-container {
  overflow-y: visible !important;
}
.job-content-description,
.job-content-profil {
  border: 1px solid #E2E5EB;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 28px 32px;
}
.job-content-description strong,
.job-content-profil strong {
  color: #245ea9;
}
.job-content-accroche {
  background: linear-gradient(135deg, #E6F1FA 0%, #FFF 100%);
  border-radius: 16px;
  border-left: 4px solid #245ea9;
  position: relative;
  overflow: hidden;
  padding: 26px 32px;
}
.job-content-accroche p:first-child {
  font-weight: 800;
  color: #245ea9;
  text-transform: uppercase;
  letter-spacing: 1px;
}
