.moment-collectif--container {
  position: relative;
  max-width: 1124px;
  margin: auto;
  border-radius: 30px;
  overflow: hidden;
  padding: 32PX 24px;
  background-color: var(--orange-clair);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.moment-collectif--container::before {
  content: "";
  position: absolute;
  top: -150px;
  left: -16px;
  width: 176px;
  height: 346px;
  rotate: 236deg;
  background: url("../images/boucle-haut.svg") center/contain no-repeat;
  pointer-events: none;
  z-index: 2;
}
.moment-collectif--container::after {
  content: "";
  position: absolute;
  right: -170px;
  bottom: -81px;
  width: 273px;
  height: 220px;
  background: url(../images/boucle-bas.svg) center/contain no-repeat;
  pointer-events: none;
  z-index: 2;
  rotate: 267deg;
}
.moment-collectif--img {
  width: 100%;
  height: clamp(241px, 30vw, 504px);
  overflow: hidden;
  border-radius: 18px;
}
.moment-collectif--img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.moment-collectif--content {
  position: relative;
  z-index: 3;
}
.moment-collectif--content h2 {
  color: var(--rouge);
  margin-bottom: 16px;
}
.moment-collectif--content p {
  color: var(--violet);
  font-size: clamp(13px, 3.4vw, 16px);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.moment-collectif--content p strong {
  font-weight: 700;
}
.moment-collectif--content p + p {
  margin-top: 16px;
}
.moment-collectif--content .btn {
  margin-top: 16px;
  display: flex;
}
.moment-collectif {
  /* =========================================================
  DESKTOP
  ========================================================= */
}
@media screen and (min-width: 768px) {
  .moment-collectif--container {
    display: grid;
    grid-template-columns: minmax(0, 585px) minmax(0, 371px);
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 56px;
  }
  .moment-collectif--container::before {
    top: auto;
    bottom: -209px;
    left: -186px;
    width: 427px;
    height: 745px;
    rotate: 140deg;
  }
  .moment-collectif--container::after {
    right: -173px;
    top: -131px;
    bottom: auto;
    width: 334px;
    height: 288px;
    rotate: 232deg;
  }
}
