/* Notre approche en 3 étapes */
.approche-3-etapes {
  width: 100%;
  max-width: var(--max-content-width);
  margin-inline: auto;
  margin-top: 96px;
  margin-bottom: 0;
}

.approche-3-etapes__inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 141px;
  max-width: 1248px;
  margin-inline: auto;
}

.approche-3-etapes__header {
  width: 482px;
  max-width: 100%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.approche-3-etapes__title {
  margin: 0;
  font-family: 'Satoshi', sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2;
  color: #262627;
}

.approche-3-etapes__subtitle {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
  color: #262627;
  opacity: 0.8;
}

.approche-3-etapes__cards {
  width: 625px;
  max-width: 100%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.approche-3-etapes__card {
  border-radius: 32px;
  padding: 32px;
  min-height: 160px;
  display: flex;
  align-items: center;
}

.approche-3-etapes__card--cream {
  background-color: #f8f6f2;
  transition: background-color 0.2s;
}

.approche-3-etapes__card--cream:hover {
  background-color: #019255;
}

.approche-3-etapes__card--cream:hover .approche-3-etapes__card-title,
.approche-3-etapes__card--cream:hover .approche-3-etapes__card-desc {
  color: #f8f6f2;
}

.approche-3-etapes__card--cream:hover .approche-3-etapes__badge--green {
  background-color: #f8f6f2;
  color: #019255;
}

.approche-3-etapes__card-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}

.approche-3-etapes__badge {
  width: 48px;
  height: 48px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Satoshi', sans-serif;
  font-size: 18px;
  font-weight: 600;
  flex-shrink: 0;
}

.approche-3-etapes__badge--cream {
  background-color: #f8f6f2;
  color: #019255;
}

.approche-3-etapes__badge--green {
  background-color: #019255;
  color: #ffffff;
  transition: background-color 0.2s, color 0.2s;
}

.approche-3-etapes__card-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  min-width: 0;
}

.approche-3-etapes__card--cream .approche-3-etapes__card-title,
.approche-3-etapes__card--cream .approche-3-etapes__card-desc {
  color: #262627;
  transition: color 0.2s;
}

.approche-3-etapes__card-title {
  margin: 0;
  font-family: 'Satoshi', sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
}

.approche-3-etapes__card-desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 300;
}

.approche-3-etapes__card--cream .approche-3-etapes__card-desc {
  opacity: 1;
}

@media (max-width: 1279px) {
  .approche-3-etapes__inner {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .approche-3-etapes__header {
    width: 100%;
    max-width: 482px;
    text-align: center;
  }

  .approche-3-etapes__cards {
    width: 100%;
    max-width: 625px;
  }
}

@media (max-width: 639px) {
  .approche-3-etapes {
    margin-top: 32px;
    margin-bottom: 32px;
  }

  .approche-3-etapes__inner {
    gap: 32px;
  }

  .approche-3-etapes__title {
    font-size: 32px;
  }

  .approche-3-etapes__subtitle {
    font-size: 15px;
  }

  .approche-3-etapes__card {
    padding: 24px;
    min-height: 0;
    border-radius: 24px;
  }

  .approche-3-etapes__card-row {
    gap: 16px;
  }

  .approche-3-etapes__badge {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    font-size: 16px;
  }

  .approche-3-etapes__card-title {
    font-size: 18px;
  }

  .approche-3-etapes__card-desc {
    font-size: 15px;
  }
}
