.etapes {
  .section__title {
    text-align: left;
  }

  /* nb_cols_4 configuré en admin mais seulement 3 étapes → force 3 colonnes pour rester centré */
  .etapes__list.nb_cols_4:has(.etapes__step:nth-child(3):last-child) {
    @media (min-width: 992px) {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  .etapes__list {
    text-align: center;
    position: relative;
    margin-top: 100px;

    @media (max-width: 991px) {
      gap: 60px 20px;
    }

    @media (min-width: 992px) {
      &:before {
        content: '';
        position: absolute;
        top: 10px;
        left: -50vw;
        width: 200vw;
        transform: translateX(-50vw);
        background: var(--white);
        height: 2px;
      }
    }

    .etapes__step {
      margin-top: 12px;
      padding: 30px 25px 0;
      position: relative;
      text-align: center;

      &:before {
        background: var(--white);
        border-radius: 100%;
        content: "";
        height: 16px;
        left: calc(50% - 8px);
        position: absolute;
        top: -10px;
        width: 16px;
      }

      @media (max-width: 991px) {
        &:after {
          content: '';
          position: absolute;
          top: -3px;
          left: -50vw;
          width: 200vw;
          transform: translateX(-50vw);
          background: var(--white);
          height: 2px;
        }
      }

      span {
        position: absolute;
        top: -65px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--red);
        width: 40px;
        height: 40px;
        border-radius: 50px;
        display: grid;
        place-items: center;
        font-weight: var(--medium);
      }
    }
  }
}