.parcours-card {
  display: flex;
	justify-content: center;
}
.parcours-filters{
  display: flex; flex-wrap: wrap;
  justify-content: center; align-items:center;
  gap: 1rem; margin: 0 2rem 2rem 2rem;
}
.parcours-filters form { 
    display: flex; flex-wrap: wrap;
    justify-content: center; align-items:center;
    gap: 1rem; margin: 0 2rem 2rem 2rem;
}
.clear-button {
  background: none;
  border: none;
  padding: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  cursor: pointer;
  min-width: 0;
  min-height: 0;
}
.clear-button .icon-reset {
  width: 24px;  /* or whatever looks best */
  height: 24px;
  display: block;
}
.clear-button:hover .icon-reset {
  filter: brightness(0.7);
}
.parcours-grid {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 2rem; padding: 0 2rem 2rem 2rem;
}
/*.parcours-card-link {
  display: flex;
  width: 100%; height: 100%;
  text-decoration: none;
  color: inherit;
}
.parcours-card-textbox {
  display: flex; flex-direction: column;
  justify-content: center;
  width: 60%;
  background-color: rgba(255, 255, 255, 0.9);
  margin-left: auto; padding: 1.5rem;
  z-index: 1;
}
.parcours-title {
  font-size: 1.5rem; font-weight: bold;
  color: #18988b;
  margin-bottom: 0.5rem;
}
.parcours-subtitle {
  font-style: italic; color: #444;
  margin-bottom: 0.5rem;
}
.parcours-duration {
  font-size: 0.95rem; color: #333;
  opacity: 0.8;
}*/

/*---------------------------------------------------------------------------------------------------------*/
/* Parcours slider  >>> So far exactly the same of Home */
.parcours-carousel .swiper-slide {
  display: flex; justify-content: center;
  min-height: 300px;
}
.parcours-wide-card {
  display: flex; overflow: hidden;
  position: relative;
  /*width: 100%;*/ max-width: 1100px; height: 300px;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}
.parcours-slide-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  filter: contrast(3) grayscale(100%);
  z-index: 0;
}
.parcours-wide-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #063230; /* darker corporate turquoise */
  opacity: 0.8;
  z-index: 1;
}
.parcours-info-wrapper {
  display: flex; flex-direction: column;
  position: relative; justify-content: center;
  z-index: 1; align-items: center;
  width: 100%; height: 100%;
	/*background: linear-gradient(to right,
  rgba(217, 216, 214, 0),
  rgba(217, 216, 214, .9) 30%, 
  rgba(217, 216, 214, .9) 70%, 
  rgba(217, 216, 214, 0)
  );*/
}
.parcours-title{
  color: white; font-weight: 900;
  text-transform: uppercase; font-size: 1.4rem;
}
.parcours-type {
  position: absolute; top: 1rem; text-align:center; text-transform: uppercase;
  color: #FF8D6B; font-weight: normal; font-size: 1rem;
}
.parcours-text-block {
  text-align: center;
}
.parcours-details {
  margin-top: 0.75rem; text-transform: uppercase;
  color: #D9D8D6; font-weight: normal; font-size: .8rem;
}
.parcours-button {
  margin: auto;
  width: 30px;
  height: 30px;
  display:block;
}
.parcours-button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.parcours-decoration {
  position: absolute;
  z-index: 0;
  top: -10px; right: -10px; width: 120px; height: 120px;
  background-image: repeating-conic-gradient(from 0deg, #18988b 0deg 10deg, transparent 10deg 20deg);
  opacity: 0.15;
  pointer-events: none;
  border-radius: 50%;
}