.examples {
  margin: 40px auto;
}
@media screen and (min-width: 1024px) {
  .examples {
    margin: 64px auto;
  }
}
.examples--container {
  max-width: 1358px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.examples {
  /* =========================================================
     HEADING
     ========================================================= */
}
.examples--heading {
  text-align: center;
}
.examples--heading .uptitle {
  margin-bottom: 16px;
  color: var(--rouge-clair);
  letter-spacing: 2.1px;
}
.examples--heading h2 {
  color: var(--rouge);
  text-align: center;
}
.examples {
  /* =========================================================
     SLIDER
     ========================================================= */
}
.examples--slider {
  width: 100%;
  overflow: hidden;
}
.examples--wrapper {
  align-items: stretch;
}
.examples {
  /* =========================================================
     ITEM
     ========================================================= */
}
.examples--item {
  height: auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-color: var(--orange-clair);
  border-radius: 30px;
}
.examples {
  /* =========================================================
     IMAGE
     ========================================================= */
}
.examples--img {
  width: 100%;
  height: 234px;
  overflow: hidden;
  border-radius: 30px;
}
.examples--img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.examples {
  /* =========================================================
     CONTENT
     ========================================================= */
}
.examples--content {
  padding: 24px 24px 32px 24px;
}
.examples--content h3 {
  margin-bottom: 16px;
  color: var(--rouge);
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}
.examples--content p {
  color: var(--rouge);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.examples {
  /* =========================================================
     NAVIGATION
     ========================================================= */
}
.examples--navigation {
  margin: auto;
}
.examples {
  /* =========================================================
     DESKTOP
     ========================================================= */
}
@media screen and (min-width: 1024px) {
  .examples--container {
    gap: 40px;
  }
  .examples--heading .uptitle {
    margin-bottom: 24px;
  }
  .examples--wrapper {
    align-items: stretch;
  }
  .examples--item {
    flex-direction: row;
    border-radius: 30px;
    overflow: hidden;
    gap: 40px;
  }
  .examples--img {
    flex: 0 1 392px;
    width: 392px;
    height: auto;
    min-height: 280px;
    border-radius: 30px;
  }
  .examples--content {
    flex: 1 0 206px;
    padding: 32px 16px 32px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .examples--content h3 {
    margin-bottom: 24px;
  }
}
