.cta-section {
  position: relative;
}
.cta-section__wrapper {
  max-width: 110rem;
  margin-left: auto;
  margin-right: auto;
}
.cta-section__article:nth-child(1) {
  background-color: var(--background-3);
}
.cta-section__article:nth-child(2) {
  background-color: var(--background-2);
}
.cta-section__article:nth-child(3) {
  background-color: var(--primary);
  color: var(--white);
  padding-bottom: 4rem;
}
.cta-section__article > *:not(:last-child) {
  margin-bottom: 1.6rem;
}

.cta-section__article {
  position: relative;
  padding: 4rem 1.6rem 6.4rem;
}

.cta-section__illustration {
  position: relative;
  margin-top: -8rem;
  width: 19.8rem;
  height: 19.8rem;
}
.cta-section__illustration img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 20rem;
  width: auto;
}

/* Lien */
.cta-section__link {
  display: inline-block;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 2.4rem;
  color: var(--primary-dark);
  text-decoration: none;
}
.cta-section__link  .prodject-icon {
  vertical-align: bottom;
}
.cta-section__link:hover,
.cta-section__link:focus {
  text-decoration: underline;
}
.cta-section__article:nth-child(3) .cta-section__link {
  color: var(--white);
}

@media screen and (min-width: 760px) {
  .cta-section__wrapper {
    display: flex;
    justify-content: center;
    flex-basis: 0;
  }
  .cta-section__article {
    flex-basis: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .cta-section__content {
    flex-grow: 1;
  }
  .cta-section__article:nth-child(2) {
    min-width: 32rem;
  }
  .cta-section__article:nth-child(3) {
    padding-bottom: 6.4rem;
  }
}

@media screen and (min-width: 1440px) {
  .cta-section__wrapper {
    column-gap: 16rem;
  }
  .cta-section::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    max-width: 144rem;
    background-image: url('../img/cta-section/cta-section_background.png');
    background-repeat: repeat-y;
    background-size: contain;
  }
  .cta-section__article {
    padding-left: 0;
    padding-right: 0;
    background-color: transparent !important;
  }
  .cta-section__illustration {
    width: 26.4rem;
    height: 26.4rem;
  }
  .cta-section__illustration img {
    height: 28rem;
    margin-left: -2rem;
  }
}